aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/validation/Validation.cpp
diff options
context:
space:
mode:
authorViet-Hoa Do <viet-hoa.do@arm.com>2023-06-29 13:56:17 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2023-06-29 16:06:35 +0000
commit7644b912128e64078e4bf852ef5b17111e5e4012 (patch)
tree5e10900c353f7bd2fc95dce89d92e53cd5696c14 /compute_kernel_writer/validation/Validation.cpp
parent00474e99260da69c5abd14277d0dd0b6de209904 (diff)
downloadComputeLibrary-7644b912128e64078e4bf852ef5b17111e5e4012.tar.gz
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 <viet-hoa.do@arm.com> Change-Id: I6284de98ecaf53c1013a90bf0b71f60bb36b7c48 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9844 Reviewed-by: Jakub Sujak <jakub.sujak@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'compute_kernel_writer/validation/Validation.cpp')
-rw-r--r--compute_kernel_writer/validation/Validation.cpp2
1 files changed, 1 insertions, 1 deletions
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;