由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - 老大们再帮一把吧
相关主题
let me ask a question again[转载] Re: Token pasting
有个问题drive me crazy已知SVD,如何求nullspace?
累计误差怎么怎 么 这 么 大 ?有人用过Matlab的Compiler吗?或者是否有什么工具能把Matlab程序转成C, C++?
!!! How to adjust precision in CPLEX !!!请问编译时怎么把自己的C/C++代码链接到一个库
where to down a standard Fortran90 complier?重装matlab之后的mex问题
Fortran code optimization请问用mcc产生一个可执行文件后怎么运行?
What is wrong of this Maple worksheet?matlab 做不规则 数据输入,求教
icc complier is expensive yar~~ANSI C下如何转换十进制小数为十六进制小数
相关话题的讨论汇总
话题: precision话题: 01dhcp57话题: mary015话题: double话题: printf
进入Computation版参与讨论
1 (共1页)
w****n
发帖数: 31
1
here is the program:
#include
int main()
{
long double a;
a = 1.0/3.0;
printf("%40.40Lf\n",a);
return 0;
}
mary015-01dhcp57:/home/wilson/program/PRECISION # icc -long_double long.c
mary015-01dhcp57:/home/wilson/program/PRECISION # ./a.out
0.3333333333333333148296162562473909929395
wuwuwu, 为什么还是连20个3都得不到?
w****n
发帖数: 31
2
看了一下icc的manual,也没有找到和-r16(ifc)相对应的complie option.

【在 w****n 的大作中提到】
: here is the program:
: #include
: int main()
: {
: long double a;
: a = 1.0/3.0;
: printf("%40.40Lf\n",a);
: return 0;
: }
: mary015-01dhcp57:/home/wilson/program/PRECISION # icc -long_double long.c

w****n
发帖数: 31
3
今天晚上怎么一个都不在? :(

【在 w****n 的大作中提到】
: 看了一下icc的manual,也没有找到和-r16(ifc)相对应的complie option.
w****n
发帖数: 31
4
re-run the code with the folloiwng modify but sitll not working.
#include
int main()
{
long double a;
a = 1.0/3.0;
printf("%40.40Lf\n",a);
printf("float=%d\n", sizeof(float));
printf("double=%d\n", sizeof(double));
printf("long double=%d\n", sizeof(long double));
return 0;
}
mary015-01dhcp57:/home/wilson/program/PRECISION # icc -long_double long.c
mary015-01dhcp57:/home/wilson/program/PRECISION # ./a.out
0.333333333333333314829616256

【在 w****n 的大作中提到】
: 今天晚上怎么一个都不在? :(
h***o
发帖数: 539
5
0.3333333333333333333423683514373792036167
还是跟上次一样,我很怀疑你的程序是不是一定需要用这种方法来提高精度。

a = 1.0L/3.0L;

【在 w****n 的大作中提到】
: re-run the code with the folloiwng modify but sitll not working.
: #include
: int main()
: {
: long double a;
: a = 1.0/3.0;
: printf("%40.40Lf\n",a);
: printf("float=%d\n", sizeof(float));
: printf("double=%d\n", sizeof(double));
: printf("long double=%d\n", sizeof(long double));

w****n
发帖数: 31
6
谢谢!
我也不觉得要靠这种办法来提高精度。但是老板要try,我也没有办法。
好像80bits对icc/c是到头了?
为什么ifc/fortran能够这么容易就到128bits by using real 16 plus -r16?

【在 h***o 的大作中提到】
: 0.3333333333333333333423683514373792036167
: 还是跟上次一样,我很怀疑你的程序是不是一定需要用这种方法来提高精度。
:
: a = 1.0L/3.0L;

w****n
发帖数: 31
7
i think for icc complier, if we want to get more than 20 significant digits,
then we will have to use SSE assmebly language.
use some datatype like __m128. sounds very strange since ifc is so easy to
get extra precision.
am i right?

long.c

【在 w****n 的大作中提到】
: 谢谢!
: 我也不觉得要靠这种办法来提高精度。但是老板要try,我也没有办法。
: 好像80bits对icc/c是到头了?
: 为什么ifc/fortran能够这么容易就到128bits by using real 16 plus -r16?

a******s
发帖数: 232
8
且不说有没有必要做这么多位(其实我第一篇就说了,meaningless),但是
从这些讨论第三次体会到fortran在数值计算方面强于c/c++,kaka

【在 w****n 的大作中提到】
: 谢谢!
: 我也不觉得要靠这种办法来提高精度。但是老板要try,我也没有办法。
: 好像80bits对icc/c是到头了?
: 为什么ifc/fortran能够这么容易就到128bits by using real 16 plus -r16?

w****n
发帖数: 31
9
i don't understand either why c/c++ is such stupid in terms of computation.
or maybe i am just too silly to know how to use .

【在 a******s 的大作中提到】
: 且不说有没有必要做这么多位(其实我第一篇就说了,meaningless),但是
: 从这些讨论第三次体会到fortran在数值计算方面强于c/c++,kaka

1 (共1页)
进入Computation版参与讨论
相关主题
ANSI C下如何转换十进制小数为十六进制小数where to down a standard Fortran90 complier?
[转载] Where to download SAS?Trial version?Fortran code optimization
帮我看看这个C语言错误What is wrong of this Maple worksheet?
问一个小问题icc complier is expensive yar~~
let me ask a question again[转载] Re: Token pasting
有个问题drive me crazy已知SVD,如何求nullspace?
累计误差怎么怎 么 这 么 大 ?有人用过Matlab的Compiler吗?或者是否有什么工具能把Matlab程序转成C, C++?
!!! How to adjust precision in CPLEX !!!请问编译时怎么把自己的C/C++代码链接到一个库
相关话题的讨论汇总
话题: precision话题: 01dhcp57话题: mary015话题: double话题: printf