The floating-point-exceptions tag has no wiki summary.
1
vote
0answers
25 views
MCH1206 floating point overflow condition
IBM OS400 C ILE program
Does anyone know when MCH1206 is issued in a C program? The C program does not have any error handling defined.
In my environment, whenever there is an overflow, - e.g. ...
0
votes
1answer
85 views
ghdl floating point exception 8
I am trying to code a SRAM with 32 bit address, with a Byte lane write enable. But when I try to access (read or write) address greater than x1F, I get "Floating point exception 8" when compiling with ...
0
votes
2answers
96 views
Mysterious Floating Point Exception [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
My friend and I were messing round trying to come up with the worst for loops we could ...
0
votes
1answer
81 views
Trouble with Floating Point Exception [closed]
I've tried a debugger and Catch and throw, though I confess I'm not comfortable with either. But I'm not able to find the cause of Floating Point Exception in my program. The weird thing is it runs ...
0
votes
0answers
96 views
Flash ActiveX control throws floating point exceptions in x64
I have an MFC dialogue which uses a flash player active x control. I have no problems in x86 program but when built for x64 I start getting floating point exceptions thrown in the message loop for the ...
0
votes
2answers
132 views
Setting up GCC for soft-fp with exceptions on ARM?
According to this page on the GCC Wiki:
http://gcc.gnu.org/wiki/Software_floating_point
the "soft-fp" soft float implementation gcc provides has optional support for exceptions and rounding modes. ...
0
votes
1answer
140 views
What part of this causes a floating point exception?
I would be most grateful if people could have a look over this snippet of code and let me know what could a possible cause for the floating point exception.
Info:
branches is an int array size ...
0
votes
1answer
109 views
Which is the best approach to handle floating point exceptions in embedded code?
I'm working on a safety critical, embedded program (in C) where I'd like to use IEEE 754 floating-point arithmetics (with NaN and Infs) for engineering calculations. Here I have two approach (afaik) ...
2
votes
2answers
129 views
Why am I getting a floating point exception error?
I am a novice programmer, so please deal with me. I'm writing a program to analyze data. When I execute the program, I receive a "floating point exception" and I have no clue why. Here is the section ...
0
votes
2answers
72 views
Floating Point Exception AND too large constant warning?
I am hesitant to post my code because this is for a school assignment, but basically I need to iterate through a uint64_t that can be very large.
So, I have a value that is basically going to be ...
2
votes
1answer
181 views
Floating point trap with C program using valgrind
I'm trying to figure out how I can find the exact position where my simulation code written in C generates NaNs.
I'm using plain C89 (but I can move to C99/C11) and gcc 4.4.5 on Debian squeeze.
...
1
vote
1answer
206 views
Python time.sleep() running into Floating Point exception
I am using the Python time.sleep() function in a GNURadio program. However, in spite of me having provided a floating point argument, the code runs into an unexpected Floating Point Exception. Please ...
2
votes
1answer
353 views
“Floating-point invalid operation” when inputting float to a stringstream
I have a simple piece of code that extracts a float from a FORTRAN-generated REAL array, and then inserts it into a stream for logging. Although this works for the first 30 cases, on the 31st it ...
3
votes
2answers
130 views
Do doubles suffer from overflow?
Is it possible to have an overflow (wrap around) with a double or a float? What will happen if the maximum (or minimum) value is reached on x86 or x64 hardware?
0
votes
0answers
126 views
Floating point exception without traceback in python GTK
I have a GTK python program I am developing. I need to change the look of the window based on the type of activity the user is doing. I'm using a Gtk.Grid() object that I was planning on just calling ...
4
votes
1answer
1k views
Delphi XE2, TWebBrowser, float divide by zero
In Delphi 2010 and Delphi 2007 I am using Set8087CW on WebBrowserBeforeNavigate / WebBrowserDocumentComplete to prevent FPU errors inside ActiveX to cripple my application.
But somehow this is not ...
5
votes
1answer
1k views
An invalid floating point operation occurred. SQL Server 2008
I have weird problem with this code: if I run it like shown below I get error:
An invalid floating point operation occurred.
But if I change parameter @Longitude to -98.508730 (notice only last ...
2
votes
3answers
169 views
Why is this generating Floating point exception?
This is the second example of wikipedia SIGFPE
page.
#include <limits.h>
int main(void)
{
volatile int x=INT_MIN;
volatile int y=-1;
x=x/y;
return 0;
}
It is inverting the ...
0
votes
7answers
297 views
Simple question about 'floating point exception' in C
I have the following C program:
#include <stdio.h>
int main()
{
double x=0;
double y=0/x;
if (y==1)
printf("y=1\n");
else
printf("y=%f\n",y);
if (y!=1)
printf("y!=1\n");
else
...
2
votes
2answers
421 views
Subtracting close together numbers in php
Why does
<?php echo 194.95-194.94; ?>
output
0.0099999999999909
What am i missing here? This is php 5.2.
2
votes
1answer
202 views
strange floating point exception
I've got a floating point exception in huge application after some changes. I tried to comment my changes and found that FPE happens when I enable one simple function call.
api::getMaxSize();
which ...
3
votes
2answers
1k views
Causes for NaN in C++ application that do no raise a floating point exception
To find the cause of floating point variables beeing set to NaN in my C++ program I enabled floating point exceptions like this:
#include <fenv.h>
feenableexcept(FE_INVALID | FE_OVERFLOW);
I ...
1
vote
2answers
244 views
Are floating-point numbers used without an epsilon always a code-smell?
This question is very simple. It is related to but definitely not a dupe of:
Most unpatched Tomcat webservers are vulnerable, who's at fault?
Seen the amazing amount of things that can go wrong ...
7
votes
1answer
526 views
Force all QNaN to instead be normal NaN (SNaN) so exceptions are thrown
I've configured Visual Studio to throw floating point exceptions via the _controlfp function. This works for NAN and INF, but not QNAN. I.e. Quiet NaNs don't cause an exception to be raised. Is ...
12
votes
4answers
2k views
Visual Studio C++ 2008 / 2010 - break on float NaN
Is there any way to set up Visual Studio (just upgraded from 2008 to 2010) to break, as if an assertion failed, whenever any floating point number becomes NaN, QNAN, INF, etc?
Up until now I have ...
0
votes
4answers
690 views
floating exception using icc compiler
I'm compiling my code via the following command:
icc -ltbb test.cxx -o test
Then when I run the program:
time ./mp6 100 > output.modified
Floating exception
4.871u 0.405s 0:05.28 99.8% 0+0k ...
4
votes
2answers
1k views
Floating Point Exception Caused By rand() In c++
I have an issue that I can't seem to solve. I am randomly generating numbers in order to determine if my numbers are relativity prime.
Here is the function that gives me a Floating Point Exception:
...
-1
votes
2answers
4k views
Floating point exception on a int Array - C
int check_row;
for (n=0; n<9; n++) {
used_numbers[n] = n+1;
}
for (row=0; row<3; row++) {
for (check_row=0; check_row<3; check_row++) {
...
9
votes
3answers
1k views
what languages expose IEEE 754 traps to the developer?
I'd like to play with those traps for educational purpose.
A common problem with the default behavior in numerical calculus is that we "miss" the Nan (or +-inf) that appeared in a wrong operation. ...
3
votes
2answers
2k views
Enabling floating point interrupts on Mac OS X Intel
On Linux, feenableexcept and fedisableexcept can be used to control the generation of SIGFPE interrupts on floating point exceptions. How can I do this on Mac OS X Intel?
Inline assembly for ...
