spoa_rs 0.1.0

Rust bindings for SPOA (SIMD POA)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2020 Mario Brcic, Robert Vaser

#ifndef SPOA_ARCHITECTURES_HPP_
#define SPOA_ARCHITECTURES_HPP_

namespace spoa {

enum class Architecture {
  kAVX2,
  kSSE4_1,
  kSSE2,
  kAutomatic
};

}  // namespace spoa

#endif  // SPOA_ARCHITECTURES_HPP_