FK20 CUDA
|
Go to the source code of this file.
Functions | |
__global__ void | FpTestAdd (testval_t *testval) |
Test for addition in Fp. More... | |
__global__ void | FpTestCommutativeAdd (testval_t *testval) |
Test for the commutative property of addition in Fp. More... | |
__global__ void | FpTestAssociativeAdd (testval_t *testval) |
Test for the associative property of addition in Fp. More... | |
__global__ void FpTestAdd | ( | testval_t * | testval | ) |
Test for addition in Fp.
2x + x == 3x
testval |
Definition at line 16 of file fptest_add.cu.
__global__ void FpTestAssociativeAdd | ( | testval_t * | testval | ) |
Test for the associative property of addition in Fp.
(x+y)+z == x+(y+z)
testval |
Definition at line 101 of file fptest_add.cu.
__global__ void FpTestCommutativeAdd | ( | testval_t * | testval | ) |
Test for the commutative property of addition in Fp.
x+y == y+x
testval |
Definition at line 59 of file fptest_add.cu.