Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
Co-authored-by: Pratik Nayak <[email protected]>
  • Loading branch information
ginkgo-bot and pratikvn committed Aug 2, 2023
1 parent e5136e3 commit e6ff101
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions core/base/batch_utilities.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define GKO_CORE_BASE_BATCH_UTILITIES_HPP_


#include <ginkgo/core/base/batch_multi_vector.hpp>


#include <algorithm>
#include <type_traits>


#include <ginkgo/core/base/array.hpp>
#include <ginkgo/core/base/batch_multi_vector.hpp>
#include <ginkgo/core/base/exception.hpp>
#include <ginkgo/core/base/exception_helpers.hpp>
#include <ginkgo/core/base/executor.hpp>
Expand Down
4 changes: 2 additions & 2 deletions include/ginkgo/core/base/batch_multi_vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ class MultiVector
* significantly more memory efficient than the non-constant version,
* so always prefer this version.
*/
const value_type* get_const_values_for_item(size_type batch_id) const
noexcept
const value_type* get_const_values_for_item(
size_type batch_id) const noexcept
{
GKO_ASSERT(batch_id < this->get_num_batch_items());
return values_.get_const_data() +
Expand Down

0 comments on commit e6ff101

Please sign in to comment.