ttnn.is_real

ttnn.is_real(input_tensor: ComplexTensor, *, memory_config: ttnn.MemoryConfig | None = None) ttnn.Tensor

Returns boolean tensor if value of input_tensor is real.

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_real(tensor)