FK20 CUDA
|
Go to the source code of this file.
Functions | |
__global__ void | FpTestCommutativeMul (testval_t *testval) |
Test for the commutative property of addition. More... | |
__global__ void | FpTestAssociativeMul (testval_t *testval) |
Test for the associative property of multiplication. More... | |
__global__ void | FpTestMul (testval_t *testval) |
Multiplication test, comparing with the native uint64_t multiplication. More... | |
__global__ void FpTestAssociativeMul | ( | testval_t * | testval | ) |
Test for the associative property of multiplication.
(x*y)*z == x*(y*z)
testval |
Definition at line 60 of file fptest_mul.cu.
__global__ void FpTestCommutativeMul | ( | testval_t * | testval | ) |
Test for the commutative property of addition.
x*y == y*x
testval |
Definition at line 16 of file fptest_mul.cu.
__global__ void FpTestMul | ( | testval_t * | testval | ) |
Multiplication test, comparing with the native uint64_t multiplication.
(x*y)*z == x*(y*z)
testval |
Definition at line 109 of file fptest_mul.cu.