(a: Tensor, b: Tensor)
| 308 | } |
| 309 | |
| 310 | divide(a: Tensor, b: Tensor): Tensor { |
| 311 | const opAttrs = [createTensorsTypeOpAttr( |
| 312 | 'T', backend_util.upcastType(a.dtype, b.dtype))]; |
| 313 | return this.executeSingleOutput('Div', opAttrs, [a, b]); |
| 314 | } |
| 315 | |
| 316 | divNoNan(a: Tensor, b: Tensor): Tensor { |
| 317 | const opAttrs = [createTensorsTypeOpAttr( |
nothing calls this directly
no test coverage detected