From 7644b912128e64078e4bf852ef5b17111e5e4012 Mon Sep 17 00:00:00 2001 From: Viet-Hoa Do Date: Thu, 29 Jun 2023 13:56:17 +0100 Subject: Fix CKW test failure * TileInfo constructor no longer takes width and height. It now takes height then width. Partially resolves: COMPMID-6283 Signed-off-by: Viet-Hoa Do Change-Id: I6284de98ecaf53c1013a90bf0b71f60bb36b7c48 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9844 Reviewed-by: Jakub Sujak Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins Tested-by: Arm Jenkins --- compute_kernel_writer/validation/Validation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compute_kernel_writer/validation/Validation.cpp') diff --git a/compute_kernel_writer/validation/Validation.cpp b/compute_kernel_writer/validation/Validation.cpp index da0ce8ad15..0a288837d8 100644 --- a/compute_kernel_writer/validation/Validation.cpp +++ b/compute_kernel_writer/validation/Validation.cpp @@ -88,7 +88,7 @@ int32_t main() } else { - std::runtime_error("One or more tests failed"); + throw std::runtime_error("One or more tests failed"); } return 0; -- cgit v1.2.1