Searched refs:GetBoolAttr (Results 1 – 2 of 2) sorted by relevance
/external/tensorflow/tensorflow/lite/toco/ |
D | import_tensorflow.cc | 105 bool GetBoolAttr(const NodeDef& node, const std::string& attr_name) { in GetBoolAttr() function 722 op->quantized = GetBoolAttr(node, kAttrOutputQuantized); in ConvertUnsupportedOperator() 727 GetBoolAttr(node, kAttrSupportOutputTypeFloatInQuantizedOp); in ConvertUnsupportedOperator() 1125 op->narrow_range = GetBoolAttr(node, "narrow_range"); in ConvertFakeQuantWithMinMaxArgs() 1147 op->narrow_range = GetBoolAttr(node, "narrow_range"); in ConvertFakeQuantWithMinMaxVars() 1353 batch_matmul->adj_x = GetBoolAttr(node, "adj_x"); in ConvertBatchMatMulOperator() 1356 batch_matmul->adj_y = GetBoolAttr(node, "adj_y"); in ConvertBatchMatMulOperator() 1374 (GetBoolAttr(node, "adjoint_a") == false)); in ConvertMatMulOperator() 1376 (GetBoolAttr(node, "adjoint_b") == false)); in ConvertMatMulOperator() 1380 matmul->transpose_a = GetBoolAttr(node, "transpose_a"); in ConvertMatMulOperator() [all …]
|
/external/tensorflow/tensorflow/core/grappler/ |
D | op_types.cc | 662 bool GetBoolAttr(const NodeDef& node, const string& name) { in GetBoolAttr() function 764 return GetBoolAttr(node, "in_place") || GetBoolAttr(node, "inplace"); in ModifiesInputsInPlace()
|