Searched refs:GetBoolAttr (Results 1 – 2 of 2) sorted by relevance
/external/tensorflow/tensorflow/lite/toco/ |
D | import_tensorflow.cc | 103 bool GetBoolAttr(const NodeDef& node, const string& attr_name) { in GetBoolAttr() function 874 op->narrow_range = GetBoolAttr(node, "narrow_range"); in ConvertFakeQuantWithMinMaxArgs() 896 op->narrow_range = GetBoolAttr(node, "narrow_range"); in ConvertFakeQuantWithMinMaxVars() 1098 batch_matmul->adj_x = GetBoolAttr(node, "adj_x"); in ConvertBatchMatMulOperator() 1101 batch_matmul->adj_y = GetBoolAttr(node, "adj_y"); in ConvertBatchMatMulOperator() 1119 (GetBoolAttr(node, "adjoint_a") == false)); in ConvertMatMulOperator() 1121 (GetBoolAttr(node, "adjoint_b") == false)); in ConvertMatMulOperator() 1125 matmul->transpose_a = GetBoolAttr(node, "transpose_a"); in ConvertMatMulOperator() 1128 matmul->transpose_b = GetBoolAttr(node, "transpose_b"); in ConvertMatMulOperator() 1362 op->quantized = GetBoolAttr(node, kAttrOutputQuantized); in ConvertUnsupportedOperator() [all …]
|
/external/tensorflow/tensorflow/core/grappler/ |
D | op_types.cc | 573 bool GetBoolAttr(const NodeDef& node, const string& name) { in GetBoolAttr() function 673 return GetBoolAttr(node, "in_place") || GetBoolAttr(node, "inplace"); in ModifiesInputsInPlace()
|