HPCombi
High Performance Combinatorics in C++ using vector instructions v1.0.3
All Classes Namespaces Files Functions Variables Typedefs Friends Macros Pages
vect16.hpp
Go to the documentation of this file.
1//****************************************************************************//
2// Copyright (C) 2016-2024 Florent Hivert <Florent.Hivert@lisn.fr>, //
3// //
4// This file is part of HP-Combi <https://github.com/libsemigroups/HPCombi> //
5// //
6// HP-Combi is free software: you can redistribute it and/or modify it //
7// under the terms of the GNU General Public License as published by the //
8// Free Software Foundation, either version 3 of the License, or //
9// (at your option) any later version. //
10// //
11// HP-Combi is distributed in the hope that it will be useful, but WITHOUT //
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or //
13// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License //
14// for more details. //
15// //
16// You should have received a copy of the GNU General Public License along //
17// with HP-Combi. If not, see <https://www.gnu.org/licenses/>. //
18//****************************************************************************//
19
22
23#ifndef HPCOMBI_VECT16_HPP_
24#define HPCOMBI_VECT16_HPP_
25
26#include <cstddef> // for size_t
27#include <cstdint> // for uint8_t, uint64_t, int8_t
28#include <initializer_list> // for initializer_list
29#include <iosfwd> // for ostream
30#include <memory> // for hash
31#include <type_traits> // for is_trivial
32
33#include "epu8.hpp"
34
35namespace HPCombi {
36
39struct alignas(16) Vect16 {
40 static constexpr size_t size() { return 16; }
41 using array = typename decltype(Epu8)::array;
43
44 Vect16() = default;
45 constexpr Vect16(epu8 x) : v(x) {}
46 Vect16(std::initializer_list<uint8_t> il, uint8_t def = 0)
47 : v(Epu8(il, def)) {}
48 constexpr operator epu8() const { return v; }
49
51 const array &as_array() const { return HPCombi::as_array(v); }
52
53 const uint8_t &operator[](uint64_t i) const { return as_array()[i]; }
54 uint8_t &operator[](uint64_t i) { return as_array()[i]; }
55
56 size_t first_diff(const Vect16 &u, size_t bound = size()) const {
57 return HPCombi::first_diff(v, u.v, bound);
58 }
59 size_t last_diff(const Vect16 &u, size_t bound = size()) const {
60 return HPCombi::last_diff(v, u.v, bound);
61 }
62
63 size_t first_zero(size_t bound = size()) const {
64 return HPCombi::first_zero(v, bound);
65 }
66 size_t last_zero(size_t bound = size()) const {
67 return HPCombi::last_zero(v, bound);
68 }
69 size_t first_non_zero(size_t bound = size()) const {
70 return HPCombi::first_non_zero(v, bound);
71 }
72 size_t last_non_zero(size_t bound = size()) const {
73 return HPCombi::last_non_zero(v, bound);
74 }
75
76 using value_type = uint8_t;
77 using iterator = typename array::iterator;
78 using const_iterator = typename array::const_iterator;
79
80 const_iterator cbegin() const { return as_array().begin(); }
81 const_iterator cend() const { return as_array().end(); }
82
83 iterator begin() { return as_array().begin(); }
84 iterator end() { return as_array().end(); }
85
86 const_iterator begin() const { return as_array().begin(); }
87 const_iterator end() const { return as_array().end(); }
88
89 bool operator==(const Vect16 &b) const { return HPCombi::equal(v, b.v); }
90
91 bool operator!=(const Vect16 &b) const {
92 return HPCombi::not_equal(v, b.v);
93 }
94
95 bool operator<(const Vect16 &b) const { return less(v, b.v); }
96 int8_t less_partial(const Vect16 &b, int k) const {
97 return HPCombi::less_partial(v, b.v, k);
98 }
99 Vect16 permuted(const Vect16 &b) const { return HPCombi::permuted(v, b.v); }
100 uint8_t sum() const { return HPCombi::horiz_sum(v); }
102 Vect16 eval16() const { return HPCombi::eval16(v); }
103
104 bool is_permutation() const { return HPCombi::is_permutation(v); }
105 bool is_permutation(size_t k) const {
106 return HPCombi::is_permutation(v, k);
107 }
108};
109
110static_assert(std::is_trivial<Vect16>(), "Vect16 is not a trivial class !");
111
112} // namespace HPCombi
113
114namespace std {
115
116inline std::ostream &operator<<(std::ostream &stream,
117 const HPCombi::Vect16 &ar) {
118 return operator<<(stream, ar.v);
119}
120
123template <> struct hash<HPCombi::Vect16> {
124 size_t operator()(const HPCombi::Vect16 &ar) const {
125 return std::hash<HPCombi::epu8>{}(ar.v);
126 }
127};
128
129} // namespace std
130
131#endif // HPCOMBI_VECT16_HPP_
declaration of HPCombi::epu8.
Definition bmat16.hpp:39
uint64_t first_non_zero(epu8 v, int bnd) noexcept
return the index of the first non zero entry or 16 if there are none Only index smaller than bound ar...
Definition epu8_impl.hpp:127
epu8 permuted(epu8 a, epu8 b) noexcept
Same as permuted_ref but with an optimized implementation using intrinsics.
Definition epu8.hpp:103
epu8 partial_sums(epu8 v) noexcept
Horizontal partial sum of a HPCombi::epu8.
Definition epu8.hpp:294
bool is_permutation(epu8 v, const size_t k=16) noexcept
Definition epu8_impl.hpp:531
int8_t less_partial(epu8 a, epu8 b, int k) noexcept
Partial lexicographic comparison between two HPCombi::epu8.
Definition epu8_impl.hpp:114
uint64_t last_zero(epu8 v, int bnd) noexcept
return the index of the last zero entry or 16 if there are none Only index smaller than bound are tak...
Definition epu8_impl.hpp:124
bool equal(epu8 a, epu8 b) noexcept
Equality of HPCombi::epu8.
Definition epu8.hpp:91
epu8 eval16(epu8 v) noexcept
Evaluation of a HPCombi::epu8: count how many times each int of 0..15 appears in the input.
Definition epu8.hpp:488
uint8_t horiz_sum(epu8 v) noexcept
Horizontal sum of a HPCombi::epu8.
Definition epu8.hpp:260
bool less(epu8 a, epu8 b) noexcept
Lexicographic comparison between two HPCombi::epu8.
Definition epu8_impl.hpp:110
constexpr TPUBuild< epu8 > Epu8
Factory object acting as a class constructor for type HPCombi::epu8.
Definition epu8.hpp:81
uint64_t first_zero(epu8 v, int bnd) noexcept
return the index of the first zero entry or 16 if there are none Only index smaller than bound are ta...
Definition epu8_impl.hpp:121
uint64_t last_non_zero(epu8 v, int bnd) noexcept
return the index of the last non zero entry or 16 if there are none Only index smaller than bound are...
Definition epu8_impl.hpp:130
uint64_t last_diff(epu8 a, epu8 b, size_t bound=16) noexcept
The last difference between two HPCombi::epu8.
Definition epu8.hpp:576
uint8_t __attribute__((vector_size(16))) epu8
epu8 stands for Extended Packed Unsigned, grouped by 8 bits; this is the low level type chosen by Int...
Definition epu8.hpp:73
uint64_t first_diff(epu8 a, epu8 b, size_t bound=16) noexcept
The first difference between two HPCombi::epu8.
Definition epu8.hpp:531
TPUBuild< TPU >::array & as_array(TPU &v) noexcept
Cast a TPU to a c++ std::array.
Definition builder.hpp:145
bool not_equal(epu8 a, epu8 b) noexcept
Non equality of HPCombi::epu8.
Definition epu8.hpp:95
Definition bmat16_impl.hpp:362
std::ostream & operator<<(std::ostream &os, HPCombi::BMat16 const &bm)
Definition bmat16_impl.hpp:365
Vector of 16 bytes, with some optimized methods, superclass of HPCombi::Transf16.
Definition vect16.hpp:39
bool operator==(const Vect16 &b) const
Definition vect16.hpp:89
const_iterator begin() const
Definition vect16.hpp:86
iterator end()
Definition vect16.hpp:84
Vect16(std::initializer_list< uint8_t > il, uint8_t def=0)
Definition vect16.hpp:46
size_t last_diff(const Vect16 &u, size_t bound=size()) const
Definition vect16.hpp:59
size_t first_zero(size_t bound=size()) const
Definition vect16.hpp:63
typename array::const_iterator const_iterator
Definition vect16.hpp:78
const_iterator end() const
Definition vect16.hpp:87
int8_t less_partial(const Vect16 &b, int k) const
Definition vect16.hpp:96
size_t last_zero(size_t bound=size()) const
Definition vect16.hpp:66
uint8_t & operator[](uint64_t i)
Definition vect16.hpp:54
bool is_permutation() const
Definition vect16.hpp:104
bool operator<(const Vect16 &b) const
Definition vect16.hpp:95
const_iterator cbegin() const
Definition vect16.hpp:80
static constexpr size_t size()
Definition vect16.hpp:40
Vect16()=default
size_t first_non_zero(size_t bound=size()) const
Definition vect16.hpp:69
typename decltype(Epu8)::array array
Definition vect16.hpp:41
array & as_array()
Definition vect16.hpp:50
size_t first_diff(const Vect16 &u, size_t bound=size()) const
Definition vect16.hpp:56
iterator begin()
Definition vect16.hpp:83
bool is_permutation(size_t k) const
Definition vect16.hpp:105
epu8 v
Definition vect16.hpp:42
uint8_t value_type
Definition vect16.hpp:76
const uint8_t & operator[](uint64_t i) const
Definition vect16.hpp:53
const array & as_array() const
Definition vect16.hpp:51
bool operator!=(const Vect16 &b) const
Definition vect16.hpp:91
uint8_t sum() const
Definition vect16.hpp:100
size_t last_non_zero(size_t bound=size()) const
Definition vect16.hpp:72
Vect16 permuted(const Vect16 &b) const
Definition vect16.hpp:99
constexpr Vect16(epu8 x)
Definition vect16.hpp:45
Vect16 eval16() const
Definition vect16.hpp:102
Vect16 partial_sums() const
Definition vect16.hpp:101
const_iterator cend() const
Definition vect16.hpp:81
typename array::iterator iterator
Definition vect16.hpp:77
size_t operator()(const HPCombi::Vect16 &ar) const
Definition vect16.hpp:124