File su2get.h
File List > algebra > su2algebra > helpers > su2get.h
Go to the documentation of this file
#ifndef COSMOINTERFACE_SU2ALGEBRA_SU2GET_H
#define COSMOINTERFACE_SU2ALGEBRA_SU2GET_H
/* This file is part of TempLat, available at https://cosmolattice.github.io/templat .
Copyright 2021-2026 The TempLat authors, see AUTHORS.md.
Released under the MIT license, see LICENSE.md. */
// File info: Main contributor(s): Adrien Florio, Year: 2019
#include "TempLat/parallel/device.h"
#include "TempLat/util/rangeiteration/tag.h"
namespace TempLat
{
class SU2Getter
{
public:
template <typename R, int N> static auto get(R &&r, Tag<N> t) { return r.SU2Get(t); }
};
} // namespace TempLat
#endif