summaryrefslogtreecommitdiff
path: root/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/use_case/vww/InferenceVisualWakeWordModelTests.cc')
-rw-r--r--tests/use_case/vww/InferenceVisualWakeWordModelTests.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc b/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc
index 3a42dde..82fea9f 100644
--- a/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc
+++ b/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc
@@ -28,9 +28,9 @@ bool RunInference(arm::app::Model& model, const int8_t* imageData)
TfLiteTensor* inputTensor = model.GetInputTensor(0);
REQUIRE(inputTensor);
- const size_t copySz = inputTensor->bytes < IFM_DATA_SIZE ?
+ const size_t copySz = inputTensor->bytes < IFM_0_DATA_SIZE ?
inputTensor->bytes :
- IFM_DATA_SIZE;
+ IFM_0_DATA_SIZE;
memcpy(inputTensor->data.data, imageData, copySz);
@@ -52,7 +52,7 @@ void TestInference(int imageIdx,arm::app::Model& model) {
TfLiteTensor* outputTensor = model.GetOutputTensor(0);
REQUIRE(outputTensor);
- REQUIRE(outputTensor->bytes == OFM_DATA_SIZE);
+ REQUIRE(outputTensor->bytes == OFM_0_DATA_SIZE);
auto tensorData = tflite::GetTensorData<T>(outputTensor);
REQUIRE(tensorData);