summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/simd
diff options
context:
space:
mode:
Diffstat (limited to 'dev/lib/simd')
-rw-r--r--dev/lib/simd/simd.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/dev/lib/simd/simd.hpp b/dev/lib/simd/simd.hpp
new file mode 100644
index 0000000..6374a51
--- /dev/null
+++ b/dev/lib/simd/simd.hpp
@@ -0,0 +1,18 @@
+/*
+ * File: simd/simd.hpp
+ * Purpose: SIMD 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 simd_backend;
+
+ template <typename SimdBackend>
+ struct basic_simd;
+}