diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-18 14:13:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-18 14:13:02 +0100 |
| commit | c9fd682f3662e0eec09de49a36a4ea199656da34 (patch) | |
| tree | f6e0c4c52724cd2af4cc6f469506b5552db13c3d /dev/lib/simd/simd.hpp | |
| parent | 4fd646501b75cb1d94a6e17d2387372d72ce797b (diff) | |
| parent | 54940e80e0a259f748d483291e0e7aef7dd98353 (diff) | |
Merge pull request #11 from amlel-el-mahrouss/develop
develop->stable: fixes and improvements.
Diffstat (limited to 'dev/lib/simd/simd.hpp')
| -rw-r--r-- | dev/lib/simd/simd.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/lib/simd/simd.hpp b/dev/lib/simd/simd.hpp index e571b23..22650bb 100644 --- a/dev/lib/simd/simd.hpp +++ b/dev/lib/simd/simd.hpp @@ -22,10 +22,11 @@ namespace ocl::snu::simd enum opcode { - bad, + bad = 0, add, mul, div, + invalid = 0xfff, }; public: |
