summaryrefslogtreecommitdiff
path: root/runtimes/pure_arm_compute/src/internal/op/DepthwiseConv2D.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtimes/pure_arm_compute/src/internal/op/DepthwiseConv2D.cc')
-rw-r--r--runtimes/pure_arm_compute/src/internal/op/DepthwiseConv2D.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtimes/pure_arm_compute/src/internal/op/DepthwiseConv2D.cc b/runtimes/pure_arm_compute/src/internal/op/DepthwiseConv2D.cc
index f91f834d6..f4d1ca3c5 100644
--- a/runtimes/pure_arm_compute/src/internal/op/DepthwiseConv2D.cc
+++ b/runtimes/pure_arm_compute/src/internal/op/DepthwiseConv2D.cc
@@ -74,7 +74,7 @@ Param::Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount,
// 6 -> Padding_bottom index
// 7 -> Stride (width) Index
// 8 -> Stride (height) INdex
- // 9 -> Depthwise Multipler
+ // 9 -> Depthwise Multiplier
// 10 -> Activation Index
ifm_index = inputs[0];
ker_index = inputs[1];
@@ -85,7 +85,7 @@ Param::Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount,
padding_bottom_index = inputs[6];
hstride_index = inputs[7];
vstride_index = inputs[8];
- multipler_index = inputs[9];
+ multiplier_index = inputs[9];
activation_index = inputs[10];
}
@@ -109,7 +109,7 @@ Param::Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount,
// 3 -> Padding Code (ANEURALNETWORKS_PADDING_SAME or ANEURALNETWORKS_PADDING_VALID) Index
// 4 -> Stride (width) Index
// 5 -> Stride (height) INdex
- // 6 -> Depthwise Multipler
+ // 6 -> Depthwise Multiplier
// 7 -> Activation Index
ifm_index = inputs[0];
ker_index = inputs[1];
@@ -117,7 +117,7 @@ Param::Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount,
padding_index = inputs[3];
hstride_index = inputs[4];
vstride_index = inputs[5];
- multipler_index = inputs[6];
+ multiplier_index = inputs[6];
activation_index = inputs[7];
}