| 91 | } |
| 92 | |
| 93 | int main(int argc, char** argv) { |
| 94 | constexpr unsigned nfill = 6000000; |
| 95 | |
| 96 | printf("1D\n"); |
| 97 | printf("uniform distribution\n"); |
| 98 | compare_1d(nfill, 0); |
| 99 | printf("normal distribution\n"); |
| 100 | compare_1d(nfill, 1); |
| 101 | |
| 102 | printf("2D\n"); |
| 103 | printf("uniform distribution\n"); |
| 104 | compare_2d(nfill, 0); |
| 105 | printf("normal distribution\n"); |
| 106 | compare_2d(nfill, 1); |
| 107 | |
| 108 | printf("3D\n"); |
| 109 | printf("uniform distribution\n"); |
| 110 | compare_3d(nfill, 0); |
| 111 | printf("normal distribution\n"); |
| 112 | compare_3d(nfill, 1); |
| 113 | |
| 114 | printf("6D\n"); |
| 115 | printf("uniform distribution\n"); |
| 116 | compare_6d(nfill, 0); |
| 117 | printf("normal distribution\n"); |
| 118 | compare_6d(nfill, 1); |
| 119 | } |
nothing calls this directly
no test coverage detected