mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Call optimised version of depthwise ConvLayer (#3664)
* Call optimised version of depthwise ConvLayer * Update if statements
This commit is contained in:
parent
c23b484275
commit
d901640817
1 changed files with 1 additions and 1 deletions
|
|
@ -208,7 +208,7 @@ Status Conv<T>::Compute(OpKernelContext* context) const {
|
|||
if(optimizable) {
|
||||
//optimized depthwise convolution
|
||||
#if defined(ACL_1902) || defined(ACL_1905)
|
||||
auto layer = std::make_shared<arm_compute::NEDepthwiseConvolutionLayer>();
|
||||
auto layer = std::make_shared<arm_compute::NEDepthwiseConvolutionLayer3x3>();
|
||||
#endif
|
||||
#ifdef ACL_1908
|
||||
auto layer = std::make_shared<arm_compute::NEDepthwiseConvolutionLayerOptimized>();
|
||||
|
|
|
|||
Loading…
Reference in a new issue