Home
last modified time | relevance | path

Searched refs:min_node (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/tools/graph_transforms/
Dquantize_weights.cc108 NodeDef min_node; in QuantizeWeights() local
109 min_node.set_op("Const"); in QuantizeWeights()
110 min_node.set_name(old_const_node.name() + "_quantized_min"); in QuantizeWeights()
111 SetNodeAttr("dtype", DT_FLOAT, &min_node); in QuantizeWeights()
114 SetNodeTensorAttr<float>("value", min_tensor, &min_node); in QuantizeWeights()
115 new_nodes->push_back(min_node); in QuantizeWeights()
132 AddNodeInput(min_node.name(), &dequantize_node); in QuantizeWeights()
Dfreeze_requantization_ranges.cc180 NodeDef* min_node = frozen_graph_def.mutable_node()->Add(); in FreezeRequantizationRanges() local
181 min_node->set_op("Const"); in FreezeRequantizationRanges()
182 min_node->set_name(node.name() + "/frozen_min"); in FreezeRequantizationRanges()
183 SetNodeAttr("dtype", DT_FLOAT, min_node); in FreezeRequantizationRanges()
186 SetNodeTensorAttr<float>("value", min_tensor, min_node); in FreezeRequantizationRanges()
187 inputs_to_rename[node.name() + ":0"] = min_node->name() + ":0"; in FreezeRequantizationRanges()
Dquantize_nodes.cc339 NodeDef min_node; in QuantizePlaceholders() local
340 min_node.set_op("Const"); in QuantizePlaceholders()
341 min_node.set_name(namespace_prefix + "/min"); in QuantizePlaceholders()
342 SetNodeAttr("dtype", DT_FLOAT, &min_node); in QuantizePlaceholders()
345 SetNodeTensorAttr<float>("value", min_tensor, &min_node); in QuantizePlaceholders()
346 *(placeholder_graph_def.mutable_node()->Add()) = min_node; in QuantizePlaceholders()
364 AddNodeInput(min_node.name(), &dequantize_node); in QuantizePlaceholders()
771 NodeDef min_node; in QuantizeNodes() local
772 min_node.set_op("Min"); in QuantizeNodes()
773 min_node.set_name(unique_input_name + "/min"); in QuantizeNodes()
[all …]
/external/minigbm/cros_gralloc/
Dcros_gralloc_driver.cc43 uint32_t min_node = 128; in init() local
44 uint32_t max_node = (min_node + num_nodes); in init()
47 for (uint32_t j = min_node; j < max_node; j++) { in init()