(
layer: Layer, nodeData: TensorKeyWithArgsArray[])
| 1210 | // (i.e. until the input tensors to the call all exist). |
| 1211 | const unprocessedNodes: {[layer: string]: TensorKeyWithArgsArray[][]} = {}; |
| 1212 | function addUnprocessedNode( |
| 1213 | layer: Layer, nodeData: TensorKeyWithArgsArray[]) { |
| 1214 | if (!(layer.name in unprocessedNodes)) { |
| 1215 | unprocessedNodes[layer.name] = [nodeData]; |
| 1216 | } else { |
| 1217 | unprocessedNodes[layer.name].push(nodeData); |
| 1218 | } |
| 1219 | } |
| 1220 | |
| 1221 | function processNode(layer: Layer, nodeData: TensorKeyWithArgsArray[]) { |
| 1222 | const inputTensors: SymbolicTensor[] = []; |
no test coverage detected
searching dependent graphs…