Caffe2 - C++ API
A deep learning, cross platform ML framework
int8_conv_transpose_op.cc
1 #include "caffe2/operators/quantized/int8_conv_transpose_op.h"
2 
3 namespace caffe2 {
4 
5 REGISTER_CPU_OPERATOR(Int8ConvTranspose, int8::Int8ConvTransposeOp);
6 
7 OPERATOR_SCHEMA(Int8ConvTranspose)
8  .NumInputs(2, 3)
9  .NumOutputs(1)
10  .Arg("Y_scale", "Output tensor quantization scale")
11  .Arg("Y_zero_point", "Output tensor quantization offset")
12  .SetDoc(R"DOC(
13 The transposed convolution consumes an input vector, the filter blob, and
14 the bias blob, and computes the output. Note that other parameters, such as
15 the stride and kernel size, or the pads' sizes in each direction are not
16 necessary for input because they are provided by the
17 ConvTransposeUnpoolOpBase operator. Various dimension checks are done
18 implicitly, and the sizes are specified in the Input docs for this operator.
19 As is expected, the filter is deconvolved with a subset of the
20 image and the bias is added; this is done throughout the image data and the
21 output is computed. As a side note on the implementation layout:
22 conv_transpose_op_impl.h is the templated implementation of the
23 conv_transpose_op.h file, which is why they are separate files.
24  )DOC")
25  .Input(
26  0,
27  "X",
28  "Input data blob from previous layer; has size "
29  "(N x H x W x C), where N is the batch size, C is the number of channels, and"
30  " H and W are the height and width. Note that NHWC is supported now")
31  .Input(
32  1,
33  "filter",
34  "The filter blob that will be used in the transposed "
35  "convolution; has size (M x kH x kW x C), where C is the number of channels,"
36  " and kH and kW are the height and width of the kernel.")
37  .Input(
38  2,
39  "bias",
40  "The 1D bias blob that is added through the convolution;"
41  "has size (C). Optional, if not passed, will treat it as all 0.")
42  .Output(
43  0,
44  "Y",
45  "Output data blob that contains the result of the "
46  "transposed convolution. The output dimensions are functions of the kernel"
47  " size, stride size, and pad lengths.");
48 
49 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13