Searched refs:variable_node (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/ |
D | force_shared_name_for_resource_ops.pbtxt | 1 …phdef-to-mlir -tf-upgrade-legacy %s -tf-output-arrays=hash_table_node,variable_node,variable_v2_no… 26 name: "variable_node" 140 # CHECK-SAME: shared_name = "variable_node"
|
D | feed-control-dep.pbtxt | 24 name: "variable_node" 48 input: "variable_node"
|
/external/tensorflow/tensorflow/python/framework/ |
D | convert_to_constants_test.py | 568 variable_node = variable_scope.get_variable( 571 output_node = math_ops.multiply(variable_node, 2.0, name="output_node") 573 self.evaluate(variable_node.initializer) 600 variable_node = variable_scope.get_variable( 605 [variable_node.assign(another_variable + variable_node)]): 606 output_node = array_ops.identity(variable_node, name="output_node") 607 initializer_name = variable_node.initializer.name 609 self.evaluate(variable_node.initializer) 626 variable_node = None 629 variable_node = node [all …]
|
/external/tensorflow/tensorflow/python/tools/ |
D | freeze_graph_test.py | 63 variable_node = variables.VariableV1(1.0, name="variable_node") 64 output_node = math_ops.multiply(variable_node, 2.0, name="output_node") 140 variable_node = variables.VariableV1(1.0, name="variable_node") 141 scores = math_ops.multiply(variable_node, feature, name="output_node") 179 variable_node = variables.VariableV1(1.0, name="variable_node") 180 output_node = math_ops.multiply(variable_node, 2.0, name="output_node")
|
/external/tensorflow/tensorflow/cc/tools/ |
D | freeze_saved_model.cc | 155 void ConvertVariableToConstant(const NodeDef& variable_node, in ConvertVariableToConstant() argument 158 const_node->set_name(variable_node.name()); in ConvertVariableToConstant() 160 (*const_node->mutable_attr())["dtype"] = variable_node.attr().at("dtype"); in ConvertVariableToConstant()
|
/external/tensorflow/tensorflow/lite/testing/model_coverage/ |
D | model_coverage_lib_test.py | 97 variable_node = constant_op.constant(1.0, name='variable_node') 98 defun_node = plus_placeholder(variable_node, placeholder)
|
/external/tensorflow/tensorflow/lite/python/ |
D | lite_test.py | 1394 variable_node = variables.Variable(1.0, name='variable_node') 1395 defun_node = plus_placeholder(variable_node, placeholder) 1400 sess.run(variables.variables_initializer([variable_node])) 1586 variable_node = variables.Variable(1.0, name='variable_node') 1587 defun_node = plus_placeholder(variable_node, placeholder) 1592 sess.run(variables.variables_initializer([variable_node]))
|
D | lite_v2_test.py | 759 variable_node = tf.Variable(1.0, name='variable_node') 760 out_tensor = in_tensor_1 + in_tensor_2 * variable_node 763 sess.run(tf.compat.v1.variables_initializer([variable_node]))
|