1#ifndef DEQUANTIZE_LINEAR_H
2#define DEQUANTIZE_LINEAR_H
22template <
typename TT,
int B,
int INP_W,
int OUT_W>
33 ): scale(scale), zero(zero) {};
37 output_window<float>* out
40 static void registerKernelClass() {
41 REGISTER_FUNCTION(DequantizeLinearScalar::filter);
50template <
typename TT,
int B,
int INP_W,
int OUT_W>
70 output_window<float>* out
73 static void registerKernelClass() {
74 REGISTER_FUNCTION(DequantizeLinear::filter);
Scalar implementation, DequantizeLinearScalar<96,84> takes 296 cycles.
Definition dequantize_linear.h:23
Vector implementation, DequantizeLinear<96,84> takes 154 cycles.
Definition dequantize_linear.h:51