summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/simd/avx.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'dev/lib/simd/avx.hpp')
-rw-r--r--dev/lib/simd/avx.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/dev/lib/simd/avx.hpp b/dev/lib/simd/avx.hpp
index e69de29..16e495e 100644
--- a/dev/lib/simd/avx.hpp
+++ b/dev/lib/simd/avx.hpp
@@ -0,0 +1,21 @@
+/*
+ * File: simd/avx.hpp
+ * Purpose: AVX C++ library.
+ * Author: Amlal El Mahrouss (founder@snu.systems)
+ * Copyright 2025, Amlal El Mahrouss, and SNU Systems, Corp, licensed under the BSL 1.0 license.
+ */
+
+#pragma once
+
+#include <lib/core/includes.hpp>
+
+namespace ocl::snu::simd
+{
+ struct avx_256_backend final
+ {
+ std::basic_string<char> isa()
+ {
+ return "AVX-256";
+ }
+ };
+} // namespace ocl::snu::simd