(a: Tensor, b: Tensor)
| 314 | } |
| 315 | |
| 316 | divNoNan(a: Tensor, b: Tensor): Tensor { |
| 317 | const opAttrs = [createTensorsTypeOpAttr( |
| 318 | 'T', backend_util.upcastType(a.dtype, b.dtype))]; |
| 319 | return this.executeSingleOutput('DivNoNan', opAttrs, [a, b]); |
| 320 | } |
| 321 | |
| 322 | where(condition: Tensor): Tensor2D { |
| 323 | return this.executeSingleOutput('Where', [], [condition]) as Tensor2D; |
nothing calls this directly
no test coverage detected