Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
4answers
7k views

When should I use the “strictfp” keyword in java?

Ok, I've looked up what this does, but does anyone actually have an example of when you would use the "strictfp" keyword in java? Has anyone actually found a use for this? Would there be any ...
5
votes
1answer
202 views

No strictfp in Scala - Workarounds?

I searched the web for it but could not find any hint how to enforce srictfp in Scala. There are some people complaining about it but real solutions cannot be found. There is a bugtracker entry about ...
4
votes
2answers
227 views

strictfp in Java

I'm implementing some neural network library in java , and there are intensive double (not Double) matrix operations, Matrices are large and performance is required of course. So I came to read about ...
0
votes
1answer
65 views

Doubt about strictfp and StrictMath

I have a little technical question, is it the same to call: public static strictfp double myMethod(double phi){ return Math.exp(phi); } or: public static double myMethod(double ...
-1
votes
3answers
381 views

what is the use of strictfp non- access modifier?

I know this is a duplicate question. but i want know it with an example. so can anyone explain it with an example? Link to duplicate post: ...