batmat 0.0.13
Batched linear algebra routines
Loading...
Searching...
No Matches
platform.hpp
Go to the documentation of this file.
1#pragma once
2
3#if defined(__AVX512F__)
4#include "avx-512.hpp"
5#elif defined(__AVX2__)
6#include "avx2.hpp"
7#elif defined(__ARM_NEON)
8#include "neon.hpp"
9#else
10#include "generic.hpp"
11#endif