Ginkgo  Generated from pipelines/2837190956 branch based on develop. Ginkgo version 2.0.0
A numerical linear algebra library targeting many-core architectures
batch_dim.hpp
1 // SPDX-FileCopyrightText: 2017 - 2026 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 
15 namespace gko {
16 
17 
25 template <size_type Dimensionality = 2, typename DimensionType = size_type>
26 struct batch_dim {
27  static constexpr size_type dimensionality = Dimensionality;
28  using dimension_type = DimensionType;
29 
35  size_type get_num_batch_items() const { return num_batch_items_; }
36 
43  {
44  return common_size_;
45  }
46 
55  friend bool operator==(const batch_dim& x, const batch_dim& y)
56  {
57  return x.num_batch_items_ == y.num_batch_items_ &&
58  x.common_size_ == y.common_size_;
59  }
60 
61 
75  {
76  return !(x == y);
77  }
78 
79 
84  : num_batch_items_(0),
85  common_size_(dim<dimensionality, dimension_type>{})
86  {}
87 
97  explicit batch_dim(const size_type num_batch_items,
98  const dim<dimensionality, dimension_type>& common_size)
99  : num_batch_items_(num_batch_items), common_size_(common_size)
100  {}
101 
102 private:
103  size_type num_batch_items_{};
104  dim<dimensionality, dimension_type> common_size_{};
105 };
106 
107 
117 template <typename DimensionType>
119  const batch_dim<2, DimensionType>& input)
120 {
122  transpose(input.get_common_size()));
123 }
124 
125 
126 } // namespace gko
127 
128 
129 #endif // GKO_PUBLIC_CORE_BASE_BATCH_DIM_HPP_
gko::batch_dim::get_num_batch_items
size_type get_num_batch_items() const
Get the number of batch items stored.
Definition: batch_dim.hpp:35
gko::batch_dim::get_common_size
dim< dimensionality, dimension_type > get_common_size() const
Get the common size of the batch items.
Definition: batch_dim.hpp:42
gko::size_type
std::size_t size_type
Integral type used for allocation quantities.
Definition: types.hpp:101
gko::batch_dim::operator==
friend bool operator==(const batch_dim &x, const batch_dim &y)
Checks if two batch_dim objects are equal.
Definition: batch_dim.hpp:55
gko::batch_dim::batch_dim
batch_dim(const size_type num_batch_items, const dim< dimensionality, dimension_type > &common_size)
Creates a batch_dim object which stores a uniform size for all batch entries.
Definition: batch_dim.hpp:97
gko
The Ginkgo namespace.
Definition: abstract_factory.hpp:19
gko::dim< dimensionality, dimension_type >
gko::batch_dim
A type representing the dimensions of a multidimensional batch object.
Definition: batch_dim.hpp:26
gko::transpose
batch_dim< 2, DimensionType > transpose(const batch_dim< 2, DimensionType > &input)
Returns a batch_dim object with its dimensions swapped for batched operators.
Definition: batch_dim.hpp:118
gko::batch_dim::batch_dim
batch_dim()
The default constructor.
Definition: batch_dim.hpp:83
gko::batch_dim::operator!=
friend bool operator!=(const batch_dim< Dimensionality, DimensionType > &x, const batch_dim< Dimensionality, DimensionType > &y)
Checks if two batch_dim objects are different.
Definition: batch_dim.hpp:73