(testName: string, tests: () => void)
| 113 | * @param tests |
| 114 | */ |
| 115 | export function describeMathCPU(testName: string, tests: () => void) { |
| 116 | describeWithFlags( |
| 117 | testName, {predicate: testEnv => testEnv.backendName === 'cpu'}, () => { |
| 118 | tests(); |
| 119 | }); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Describe tests to be run on GPU only. |
no test coverage detected
searching dependent graphs…