(a: Tensor, b: Tensor)
| 1309 | * It is exported to be available in tape tests. |
| 1310 | */ |
| 1311 | export function add(a: Tensor, b: Tensor): Tensor { |
| 1312 | // We duplicate Add here to avoid a circular dependency with add.ts. |
| 1313 | const inputs = {a, b}; |
| 1314 | return ENGINE.runKernel(Add, inputs as unknown as NamedTensorMap); |
| 1315 | } |
no test coverage detected