ginkgo/core/base/batch_dim.hpp Source File

ginkgo/core/base/batch_dim.hpp Source File#

Reference API: ginkgo/core/base/batch_dim.hpp Source File
Reference API
batch_dim.hpp
1// SPDX-FileCopyrightText: 2017 - 2024 The Ginkgo authors
2//
3// SPDX-License-Identifier: BSD-3-Clause
4
5#ifndef GKO_PUBLIC_CORE_BASE_BATCH_DIM_HPP_
6#define GKO_PUBLIC_CORE_BASE_BATCH_DIM_HPP_
7
8
9#include <iostream>
10
11#include <ginkgo/core/base/dim.hpp>
12#include <ginkgo/core/base/types.hpp>
13
14
15namespace gko {
16
17
26template <size_type Dimensionality = 2, typename DimensionType = size_type>
27struct batch_dim {
28 static constexpr size_type dimensionality = Dimensionality;
29 using dimension_type = DimensionType;
30
36 size_type get_num_batch_items() const { return num_batch_items_; }
37
44 {
45 return common_size_;
46 }
47
56 friend bool operator==(const batch_dim& x, const batch_dim& y)
57 {
58 return x.num_batch_items_ == y.num_batch_items_ &&
59 x.common_size_ == y.common_size_;
60 }
61
62
76 {
77 return !(x == y);
78 }
79
80
85 : num_batch_items_(0),
86 common_size_(dim<dimensionality, dimension_type>{})
87 {}
88
98 explicit batch_dim(const size_type num_batch_items,
99 const dim<dimensionality, dimension_type>& common_size)
100 : num_batch_items_(num_batch_items), common_size_(common_size)
101 {}
102
103private:
104 size_type num_batch_items_{};
105 dim<dimensionality, dimension_type> common_size_{};
106};
107
108
118template <typename DimensionType>
125
126
127} // namespace gko
128
129
130#endif // GKO_PUBLIC_CORE_BASE_BATCH_DIM_HPP_
The Ginkgo namespace.
Definition abstract_factory.hpp:20
std::size_t size_type
Definition types.hpp:89
batch_dim< 2, DimensionType > transpose(const batch_dim< 2, DimensionType > &input)
Definition batch_dim.hpp:119
Definition batch_dim.hpp:27
batch_dim(const size_type num_batch_items, const dim< dimensionality, dimension_type > &common_size)
Definition batch_dim.hpp:98
friend bool operator!=(const batch_dim< Dimensionality, DimensionType > &x, const batch_dim< Dimensionality, DimensionType > &y)
Definition batch_dim.hpp:74
dim< dimensionality, dimension_type > get_common_size() const
Definition batch_dim.hpp:43
size_type get_num_batch_items() const
Definition batch_dim.hpp:36
friend bool operator==(const batch_dim &x, const batch_dim &y)
Definition batch_dim.hpp:56
batch_dim()
Definition batch_dim.hpp:84
Definition dim.hpp:26