Message boards :
Number crunching :
application precision
Message board moderation
Author | Message |
---|---|
Send message Joined: 27 Jan 24 Posts: 3 Credit: 64,400 RAC: 0 |
What is the calculation precision used by the project application? I would say FP32, but not... Thanks :) |
Send message Joined: 8 Jul 11 Posts: 1344 Credit: 540,532,290 RAC: 583,851 |
What is the calculation precision used by the project application? It's integer, arbitrary precision. |
Send message Joined: 27 Jan 24 Posts: 3 Credit: 64,400 RAC: 0 |
INT32 or INT64? :) |
Send message Joined: 8 Jul 11 Posts: 1344 Credit: 540,532,290 RAC: 583,851 |
INT32 or INT64? :) Arbitrary, sometimes called multi-precision. It uses the gmp library which allows variables to grow arbitrary large. For the GPU app I had to hard code a size so I used 15 64bit longs which gives 960 bits. |
Send message Joined: 27 Jan 24 Posts: 3 Credit: 64,400 RAC: 0 |
Ok, i see: a mixed precision INT32/64 This makes Nvidia more suitable, due to their SIMD16 INT32 partitions |