This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I have a problem withe the float type: I used the program :
#include <stdio.h>
#include <math.h>
#include <float.h>
void main ()
{
float eps,lead_eps,val1;
eps = 1.0f;
lead_eps = 0.0f;
val1 = 0.0f;
printf("val1 != 1.0? \n");
while( val1 != 1.0f )
{
printf("yes: val1=%.17f...........lead_eps=%.17f.....eps=%.17f\n",val1, lead_eps,eps);
eps/=2.0f;
lead_eps = eps/2.0f;
val1 = (1.0f + lead_eps);
}
printf("\nno : val1=%.17f...........lead_eps=%.17f.....eps=%.17f\n",val1,lead_eps,eps);
printf("one plus eps: %.17f\none plus lead_eps=%.17f",1.0f+eps,1.0f+lead_eps);
printf("\n\neps=%.17f",eps);
}
The simulation result:
val1 != 1.0?
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
yes: val1=17f...........lead_eps=17f.....eps=17f
no : val1=17f...........lead_eps=17f.....eps=17f
one plus eps: 17f
one plus lead_eps=17f
eps=17f
How Can I get the real result of float variables?
You must not use --printf_support=nofloat or --printf_support=minimal.
You must use --printf_support=full, or simply do not use the option at all; the default is "full."
[ Edit: the actual option is --printf_support, not --float_support -- Archaeologist ]
Hi,
Thank you for your response,
I used :
--float_support : fpu32
Allow reassociation of FP arithmetic (FP_reassoc) : ON
But I have the same problem..
I'm sorry, I told you to use the wrong option. The option I meant is --printf_support. You must use --printf_support=full. I will go back and edit my post.
Thank you,
When I used --printf_support = full.. I have a error message:
warning: creating output section ".cio" without a SECTIONS specification
warning: creating ".sysmem" section with default size of 0x400; use the -heap
option to change the default size
"../28335_RAM_lnk.cmd", line 125: error: placement fails for object ".text",
size 0x1970 (page 0). Available ranges:
RAML1 size: 0x1000 unused: 0x1000 max hole: 0x1000
error: errors encountered during linking; "test_float.out" not built
That message says that RAML1 is not big enough to hold the .text section. The .text section is much larger when you use --printf_support=full, which is the reason the option exists: the extra code size to handle floating-point values is significant. You need to move .text to a larger memory or split it across several smaller ones.