Caffe2 - C++ API
A deep learning, cross platform ML framework
onnx.h
1 #pragma once
2 
3 namespace torch { namespace onnx {
4 
5 enum class OperatorExportTypes {
6  ONNX, // Strict ONNX export
7  ONNX_ATEN, // ONNX With ATen op everywhere
8  ONNX_ATEN_FALLBACK, // ONNX export with ATen fallback
9  RAW, // Raw export (no ONNX)
10 };
11 }} // namespace torch::onnx
Definition: jit_type.h:17