onnxruntime
bbf28f09 - Fix a build warning: a constexpr function calls a non-constexpr function (#17363)

Commit
2 years ago
Fix a build warning: a constexpr function calls a non-constexpr function (#17363) ### Description The warning is: ``` /onnxruntime_src/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:1202:41: error: call to non-‘constexpr’ function ‘bool onnx_transpose_optimization::TransposeQuantizeDequantizeAxis(const onnx_transpose_optimization::api::GraphRef&, const std::vector<long int>&, onnx_transpose_optimization::api::NodeRef&)’ return TransposeQuantizeDequantizeAxis(graph, perm, node); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~ ``` The function TransposeQuantizeDequantizeAxis is not constexpr. \
Author
Changming Sun
Parents
Loading