(&self, a: &Tensor, b: &Tensor, c: &Tensor)
| 250 | } |
| 251 | |
| 252 | fn add3(&self, a: &Tensor, b: &Tensor, c: &Tensor) -> Result<Tensor> { |
| 253 | (a + b)? + c |
| 254 | } |
| 255 | |
| 256 | fn exp_mul(&self, x: &Tensor, y: &Tensor) -> Result<Tensor> { |
| 257 | x * y.exp()? |
no outgoing calls