ttnn.is_imag
- ttnn.is_imag(input_tensor: ComplexTensor, *, memory_config: ttnn.MemoryConfig | None = None) ttnn.Tensor
-
Returns boolean tensor if value of
input_tensor
is imag.- Parameters:
-
input_tensor (ComplexTensor) – the input tensor.
- Keyword Arguments:
-
memory_config (ttnn.MemoryConfig, optional) – Memory configuration 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.is_imag(tensor)