From f575de631ae39366d334167436a3fd540e45c068 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 22 Nov 2025 18:32:34 +0100 Subject: feat: hpptest: new 'standard_terminate' structure from hpptest.hpp feat: hpptest: new overload of must_pass for Generic, POSIX, and Win32. Signed-off-by: Amlal El Mahrouss --- dev/lib/simd/simd.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'dev/lib/simd/simd.hpp') diff --git a/dev/lib/simd/simd.hpp b/dev/lib/simd/simd.hpp index 7a40adc..239e512 100644 --- a/dev/lib/simd/simd.hpp +++ b/dev/lib/simd/simd.hpp @@ -12,10 +12,10 @@ /// @author Amlal El Mahrouss /// @brief Basic SIMD processor. -namespace ocl::snu::simd +namespace ocl::simd { template - class basic_simd_processor + class real_type { private: backend_type backend_; @@ -30,11 +30,11 @@ namespace ocl::snu::simd }; public: - basic_simd_processor() = default; - virtual ~basic_simd_processor() = default; + real_type() = default; + virtual ~real_type() = default; - basic_simd_processor& operator=(const basic_simd_processor&) = delete; - basic_simd_processor(const basic_simd_processor&) = delete; + real_type& operator=(const real_type&) = delete; + real_type(const real_type&) = delete; typename backend_type::register_type& call(const opcode& op, typename backend_type::register_type& lhs, typename backend_type::register_type& rhs) { @@ -58,4 +58,4 @@ namespace ocl::snu::simd return backend_.isa(); } }; -} // namespace ocl::snu::simd +} // namespace ocl::simd -- cgit v1.2.3