mindspore.ops.ger
- mindspore.ops.ger(input, vec2)[source]
Calculate the outer product of two arrays input and vec2.
Note
Currently Ascend does not support float64 data input.
- Parameters
- Returns
Tensor
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> input = mindspore.tensor([1., 2., 3., 4.]) >>> vec2 = mindspore.tensor([1., 2., 3.]) >>> output = mindspore.ops.ger(input, vec2) >>> print(output) [[ 1. 2. 3.] [ 2. 4. 6.] [ 3. 6. 9.] [ 4. 8. 12.]]