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 :) |
Eric DriverSend message Joined: 8 Jul 11 Posts: 1434 Credit: 805,060,269 RAC: 898,641 |
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? :) |
Eric DriverSend message Joined: 8 Jul 11 Posts: 1434 Credit: 805,060,269 RAC: 898,641 |
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 |