Describe the bug
arm_compute::NEDepthwiseConvolutionLayer3x3> is used in onnxruntime\onnxruntime\core\providers\acl\nn\conv.cc line 211:
auto layer = std::make_shared<arm_compute::NEDepthwiseConvolutionLayer3x3>();
but I searched the definition of NEDepthwiseConvolutionLayer3x3 in the repository ARM-software/ComputeLibrary and got nothing.
System information
- ONNX Runtime version: 1.3.0
To Reproduce
When building onnxruntime with option --use_acl, I got the error below:
/home/test/code/onnxruntime/onnxruntime/core/providers/acl/nn/conv.cc:211:52: error: ‘NEDepthwiseConvolutionLayer3x3’ is not a member of ‘arm_compute’
auto layer = std::make_shared<arm_compute::NEDepthwiseConvolutionLayer3x3>();
Expected behavior
Is this a bug or i had done something wrong?
Describe the bug
arm_compute::NEDepthwiseConvolutionLayer3x3> is used in onnxruntime\onnxruntime\core\providers\acl\nn\conv.cc line 211:
auto layer = std::make_shared<arm_compute::NEDepthwiseConvolutionLayer3x3>();
but I searched the definition of NEDepthwiseConvolutionLayer3x3 in the repository ARM-software/ComputeLibrary and got nothing.
System information
To Reproduce
When building onnxruntime with option --use_acl, I got the error below:
/home/test/code/onnxruntime/onnxruntime/core/providers/acl/nn/conv.cc:211:52: error: ‘NEDepthwiseConvolutionLayer3x3’ is not a member of ‘arm_compute’
auto layer = std::make_shared<arm_compute::NEDepthwiseConvolutionLayer3x3>();
Expected behavior
Is this a bug or i had done something wrong?