Searched refs:imag_num (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/framework/ |
D | meta_graph_test.py | 177 imag_num = constant_op.constant(2.0, dtype=dtypes.float32, name="imag") 178 math_ops.complex(real_num, imag_num, name="complex") 205 imag_num = constant_op.constant(2.0, dtype=dtypes.float64, name="imag") 206 math_ops.complex(real_num, imag_num, name="complex")
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | saved_model_test.py | 1436 imag_num = variables.VariableV1(2.0, dtype=dtypes.float32, name="imag") 1437 math_ops.complex(real_num, imag_num, name="complex") 1446 imag_num = variables.VariableV1(2.0, dtype=dtypes.float32, name="imag") 1447 math_ops.complex(real_num, imag_num, name="complex")
|
/external/tensorflow/tensorflow/python/training/ |
D | saver_test.py | 2166 imag_num = variables.VariableV1(2.0, dtype=dtypes.float32, name="imag") 2167 math_ops.complex(real_num, imag_num, name="complex") 2169 save = saver_module.Saver({"real_num": real_num, "imag_num": imag_num}) 2183 imag_num = variables.VariableV1(2.0, dtype=dtypes.float32, name="imag") 2184 math_ops.complex(real_num, imag_num, name="complex") 2186 save = saver_module.Saver({"real_num": real_num, "imag_num": imag_num})
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | elemental_ir_emitter.cc | 629 auto imag_num = FMul( in EmitComplexUnaryOp() local 634 FDiv(imag_num, denom)); in EmitComplexUnaryOp()
|