From 69b67d89c018981e1d4654ba7adfa6d4d64a813c Mon Sep 17 00:00:00 2001 From: Teresa Charlin Date: Thu, 5 Jan 2023 17:24:34 +0000 Subject: Add backend name to delegate test names that did not have it. Signed-off-by: Teresa Charlin Change-Id: If9531f74d0b503c36f1b72ef51eee7e9f65559f2 --- delegate/src/test/ControlTest.cpp | 4 ++-- delegate/src/test/Convolution2dTest.cpp | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'delegate') diff --git a/delegate/src/test/ControlTest.cpp b/delegate/src/test/ControlTest.cpp index 43491be982..18bbc5a9a8 100644 --- a/delegate/src/test/ControlTest.cpp +++ b/delegate/src/test/ControlTest.cpp @@ -1,5 +1,5 @@ // -// Copyright © 2020 Arm Ltd and Contributors. All rights reserved. +// Copyright © 2020,2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // @@ -286,7 +286,7 @@ TEST_CASE ("Concatenation_Three_Inputs_GpuAcc_Test") ConcatThreeInputsTest(backends); } -TEST_CASE ("Concatenation_Axis_CpuRef_Test") +TEST_CASE ("Concatenation_Axis_GpuAcc_Test") { std::vector backends = {armnn::Compute::GpuAcc}; ConcatAxisTest(backends); diff --git a/delegate/src/test/Convolution2dTest.cpp b/delegate/src/test/Convolution2dTest.cpp index b2e5fad8df..10510792a1 100644 --- a/delegate/src/test/Convolution2dTest.cpp +++ b/delegate/src/test/Convolution2dTest.cpp @@ -1,5 +1,5 @@ // -// Copyright © 2020 Arm Ltd and Contributors. All rights reserved. +// Copyright © 2020,2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // @@ -438,13 +438,13 @@ void TransposeConvFp32Test(std::vector& backends) TEST_SUITE("TransposeConv_CpuRef_Test") { -TEST_CASE ("TransposeConv_Fp32_Test") +TEST_CASE ("TransposeConv_CpuRef_Fp32_Test") { std::vector backends = {armnn::Compute::CpuRef}; TransposeConvFp32Test(backends); } -TEST_CASE ("TransposeConv_Int8_Test") +TEST_CASE ("TransposeConv_CpuRef_Int8_Test") { std::vector backends = {armnn::Compute::CpuRef}; TransposeConvInt8Test(backends); @@ -455,13 +455,13 @@ TEST_CASE ("TransposeConv_Int8_Test") TEST_SUITE("TransposeConv_CpuAcc_Test") { -TEST_CASE ("TransposeConv_Fp32_Test") +TEST_CASE ("TransposeConv_CpuAcc_Fp32_Test") { std::vector backends = {armnn::Compute::CpuAcc}; TransposeConvFp32Test(backends); } -TEST_CASE ("TransposeConv_Int8_Test") +TEST_CASE ("TransposeConv_CpuAcc_Int8_Test") { std::vector backends = {armnn::Compute::CpuAcc}; TransposeConvInt8Test(backends); @@ -472,13 +472,13 @@ TEST_CASE ("TransposeConv_Int8_Test") TEST_SUITE("TransposeConv_GpuAcc_Test") { -TEST_CASE ("TransposeConv_Fp32_Test") +TEST_CASE ("TransposeConv_GpuAcc_Fp32_Test") { std::vector backends = {armnn::Compute::GpuAcc}; TransposeConvFp32Test(backends); } -TEST_CASE ("TransposeConv_Int8_Test") +TEST_CASE ("TransposeConv_GpuAcc_Int8_Test") { std::vector backends = {armnn::Compute::GpuAcc}; TransposeConvInt8Test(backends); -- cgit v1.2.1