diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-05 18:14:40 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-05 18:18:27 +0200 |
| commit | 45c17f712b6a0424970bcac3405efca824615dcd (patch) | |
| tree | 15a0492aa604d9d0199eb98beebae97b04d6fa5f /dev/lib/simd | |
| parent | 6789dd7d88a192e3f55b95798cb393e7d12f368a (diff) | |
feat: `lib/simd`: alternative SIMD library — a work in progress library
to manipulate SIMD data.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/simd')
| -rw-r--r-- | dev/lib/simd/simd.hpp | 18 |
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; +} |
