()
| 424 | let x2: Tensor2D; |
| 425 | |
| 426 | function createData() { |
| 427 | x1 = tensor2d([1, 2, 3, 4], [2, 2]); |
| 428 | x2 = tensor2d([-1, -2, -3, -4], [2, 2]); |
| 429 | } |
| 430 | |
| 431 | const axisValues: number[] = [null, undefined, 0, 1, -1]; |
| 432 | for (const axis of axisValues) { |
no test coverage detected
searching dependent graphs…