diff --git a/lite/backends/arm/math/gemm_prepacked_int8.h b/lite/backends/arm/math/gemm_prepacked_int8.h index c0c8ea6c35b905e29a52c114148a952558a6cae2..2433b5869b78ebb36619aba90e0716c4c59f68b6 100644 --- a/lite/backends/arm/math/gemm_prepacked_int8.h +++ b/lite/backends/arm/math/gemm_prepacked_int8.h @@ -16,6 +16,7 @@ #include #include "lite/core/context.h" #include "lite/core/tensor.h" +#include "lite/operators/op_params.h" namespace paddle { namespace lite { @@ -80,9 +81,9 @@ void gemm_prepack_int8(const int8_t* A_packed, int N, int K, bool is_bias, - bool is_relu, bool is_transB, const float* scale, + const operators::ActivationParam act_param, ARMContext* ctx); #define ROUNDUP(a, b) ((((a) + (b)-1) / (b)) * (b))