QRelu6 Class — pytorch Architecture
Architecture documentation for the QRelu6 class in qrelu.cpp from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/native/quantized/cpu/qrelu.cpp lines 191–200
class QRelu6 final {
public:
static Tensor run(Tensor qx, bool inplace) {
if (inplace) {
return quantized_relu6_(qx);
} else {
return quantized_relu6(qx);
}
}
};
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free