Caffe2 - C++ API
A deep learning, cross platform ML framework
int8_dequantize_op.cc
1 #include "caffe2/operators/quantized/int8_dequantize_op.h"
2 
3 namespace caffe2 {
4 
5 REGISTER_CPU_OPERATOR(Int8Dequantize, int8::Int8DequantizeOp);
6 
7 OPERATOR_SCHEMA(Int8Dequantize)
8  .IdenticalTypeAndShape()
9  .NumInputs(1)
10  .NumOutputs(1)
11  .Input(0, "qX", "Int8 Tensor qX.")
12  .Output(0, "Y", "FP32 Tensor that represents mapped real value of qX.");
13 
14 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13