- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I have been working a project using Microsoft Visual Studio for 14 years now. I have come to a point where I need quadruple precision (128-bit) floating point to get the right answers. The Microsoft C++ compiler does not support this. I have seen remarks that the Intel C++ compiler does and integrates well into Visual Studio. Does the Intel C++ compiler indeed support 128-bit floating point arithmetic?
コピーされたリンク
1 返信
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Is this what you are looking for?
#include<stdio.h>
_Quad f (_Quad x, _Quad y, _Quad z) {
return x * y + z;
}
> icx t.c -c /Qoption,cpp,--extended_float_types
Intel(R) oneAPI DPC++/C++ Compiler for applications running on Intel(R) 64, Version 2024.0.2 Build 20231213
Copyright (C) 1985-2023 Intel Corporation. All rights reserved.
>