Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Doptimize.cc636 DenseFPElementsAttr filter_cst, bias_cst; in matchAndRewrite() local
648 !matchPattern(bias, m_Constant(&bias_cst))) in matchAndRewrite()
674 } else if (bias_cst.getNumElements() == 1) { // scalar bias, broadcast it in matchAndRewrite()
675 new_bias_values.resize(bias_size, *bias_cst.float_value_begin()); in matchAndRewrite()
676 } else if (bias_cst.getNumElements() == bias_size) { // 1-d bias, copy it in matchAndRewrite()
678 bias_cst.float_value_begin(), in matchAndRewrite()
679 bias_cst.float_value_end()); in matchAndRewrite()