"...resnet50_tensorflow.git" did not exist on "f739ec8de1c82525ef4bcb9c0d8f5b46b08bbf2f"
Commit d93e6486 authored by rocking's avatar rocking
Browse files

Add missing parameter

parent 2a69b39d
...@@ -246,7 +246,10 @@ struct Add_Mul_Activation_Mul_Clamp ...@@ -246,7 +246,10 @@ struct Add_Mul_Activation_Mul_Clamp
template <typename Activation> template <typename Activation>
struct Add_Mul2_Activation_Mul_Clamp struct Add_Mul2_Activation_Mul_Clamp
{ {
Add_Mul2_Activation_Mul_Clamp(Activation activationOp) : activationOp_(activationOp) {} Add_Mul2_Activation_Mul_Clamp(float scale_z_inv, Activation activationOp)
: scale_z_inv_(scale_z_inv), activationOp_(activationOp)
{
}
__host__ __device__ constexpr void __host__ __device__ constexpr void
operator()(int8_t& y, const int32_t& x, const int32_t& bias, const float& scaleAcc) const operator()(int8_t& y, const int32_t& x, const int32_t& bias, const float& scaleAcc) const
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment