From 3f9c5017abf3c4279780f685580a334574e6d760 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 10 Sep 2025 03:28:35 +0200 Subject: feat:! breaking changes in the `opt` module. Fix `println` in `io` module. Signed-off-by: Amlal El Mahrouss --- dev/lib/simd/avx.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'dev/lib/simd') 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 + +namespace ocl::snu::simd +{ + struct avx_256_backend final + { + std::basic_string isa() + { + return "AVX-256"; + } + }; +} // namespace ocl::snu::simd -- cgit v1.2.3