summaryrefslogtreecommitdiff
path: root/tests/dnn/dnn-layer-pad-test.c
diff options
context:
space:
mode:
authorGuo, Yejun <yejun.guo@intel.com>2021-01-22 19:28:29 +0800
committerGuo, Yejun <yejun.guo@intel.com>2021-01-22 19:28:29 +0800
commit07a18ff4772a374aa4d78745a9f553dadef5c4ab (patch)
treeb31ac9d23db3f228f4411bde932a4e98578b97e0 /tests/dnn/dnn-layer-pad-test.c
parentbb96824510aad2ac4cf0bff545c85af7a256ff92 (diff)
tests/dnn: fix build issue after function name changed
Diffstat (limited to 'tests/dnn/dnn-layer-pad-test.c')
-rw-r--r--tests/dnn/dnn-layer-pad-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/dnn/dnn-layer-pad-test.c b/tests/dnn/dnn-layer-pad-test.c
index 6a72adb3ae..a8443ce3be 100644
--- a/tests/dnn/dnn-layer-pad-test.c
+++ b/tests/dnn/dnn-layer-pad-test.c
@@ -79,7 +79,7 @@ static int test_with_mode_symmetric(void)
operands[1].data = NULL;
input_indexes[0] = 0;
- dnn_execute_layer_pad(operands, input_indexes, 1, &params, NULL);
+ ff_dnn_execute_layer_pad(operands, input_indexes, 1, &params, NULL);
output = operands[1].data;
for (int i = 0; i < sizeof(expected_output) / sizeof(float); i++) {
@@ -144,7 +144,7 @@ static int test_with_mode_reflect(void)
operands[1].data = NULL;
input_indexes[0] = 0;
- dnn_execute_layer_pad(operands, input_indexes, 1, &params, NULL);
+ ff_dnn_execute_layer_pad(operands, input_indexes, 1, &params, NULL);
output = operands[1].data;
for (int i = 0; i < sizeof(expected_output) / sizeof(float); i++) {
@@ -210,7 +210,7 @@ static int test_with_mode_constant(void)
operands[1].data = NULL;
input_indexes[0] = 0;
- dnn_execute_layer_pad(operands, input_indexes, 1, &params, NULL);
+ ff_dnn_execute_layer_pad(operands, input_indexes, 1, &params, NULL);
output = operands[1].data;
for (int i = 0; i < sizeof(expected_output) / sizeof(float); i++) {