cyqlone develop
Fast, parallel and vectorized solver for linear systems with optimal control structure.
Loading...
Searching...
No Matches
config.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <batmat/config.hpp>
4
5#if defined(__AVX512F__)
6#define CYQLONE_NS(ns) ns::inline avx512
7#elif defined(__AVX2__)
8#define CYQLONE_NS(ns) ns::inline avx2
9#else
10#define CYQLONE_NS(ns) ns
11#endif
12
13namespace cyqlone {
14using batmat::index_t;
15using batmat::real_t;
16} // namespace cyqlone