ttnn.conj
- ttnn.conj(input_tensor: ComplexTensor, *, memory_config: ttnn.MemoryConfig | None = None) ttnn.Tensor
-
Returns complex conjugate value of complex tensor
input_tensor
.- Parameters:
-
input_tensor (ComplexTensor) – the input tensor.
- Keyword Arguments:
-
memory_config (ttnn.MemoryConfig, optional) – Memory config for the operation. Defaults to None.
- Returns:
-
ttnn.Tensor – the output tensor.
Example
>>> tensor = ttnn.to_device(ttnn.from_torch(torch.tensor((0, 1), dtype=torch.bfloat16)), device = device) >>> output = ttnn.conj(tensor)