aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/validation/tests/UtilsTest.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compute_kernel_writer/validation/tests/UtilsTest.hpp')
-rw-r--r--compute_kernel_writer/validation/tests/UtilsTest.hpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/compute_kernel_writer/validation/tests/UtilsTest.hpp b/compute_kernel_writer/validation/tests/UtilsTest.hpp
index 4a09d53f73..db1c8fd4ae 100644
--- a/compute_kernel_writer/validation/tests/UtilsTest.hpp
+++ b/compute_kernel_writer/validation/tests/UtilsTest.hpp
@@ -25,8 +25,8 @@
#define COMPUTE_KERNEL_WRITER_TESTS_UTILSTEST_HPP
#include "ckw/TensorInfo.h"
-#include "src/TensorUtils.h"
#include "common/Common.h"
+#include "src/TensorUtils.h"
#include <vector>
@@ -74,14 +74,15 @@ public:
bool all_tests_passed = true;
VALIDATE_ON_MSG(_layout.size() == _component.size(), "The number of layouts and components does not match");
- VALIDATE_ON_MSG(_layout.size() == _expected.size(), "The number of layouts and expected outputs does not match");
+ VALIDATE_ON_MSG(_layout.size() == _expected.size(),
+ "The number of layouts and expected outputs does not match");
const size_t num_tests = _layout.size();
for(size_t i = 0; i < num_tests; ++i)
{
const TensorDataLayout layout = _layout[i];
const TensorDataLayoutComponent component = _component[i];
const TensorComponent expected = _expected[i];
- const TensorComponent out = get_tensor_dimension(layout, component);
+ const TensorComponent out = get_tensor_dimension(layout, component);
VALIDATE_TEST(out == expected, all_tests_passed, i);
}
return all_tests_passed;
@@ -93,10 +94,10 @@ public:
}
private:
- std::vector<TensorDataLayout> _layout {};
- std::vector<TensorDataLayoutComponent> _component {};
- std::vector<TensorComponent> _expected {};
+ std::vector<TensorDataLayout> _layout{};
+ std::vector<TensorDataLayoutComponent> _component{};
+ std::vector<TensorComponent> _expected{};
};
-}
+} // namespace ckw
#endif /* COMPUTE_KERNEL_WRITER_TESTS_UTILSTEST_HPP */