(length = 12)
| 14 | import {describeMathCPU} from './utils/test_utils'; |
| 15 | |
| 16 | function getRandomLayerOrModelName(length = 12) { |
| 17 | return 'L' + Math.random().toFixed(length - 1).slice(2); |
| 18 | } |
| 19 | |
| 20 | describeMathCPU('LayersModel.summary', () => { |
| 21 | let consoleLogHistory: string[]; |
no test coverage detected
searching dependent graphs…