HiRep 0.1
Loading...
Searching...
No Matches
read_clover.h
1/***************************************************************************\
2* Copyright (c) 2023, Sofie Martins *
3* All rights reserved. *
4\***************************************************************************/
5
6#ifndef READ_CLOVER_H
7#define READ_CLOVER_H
8
9#ifdef __cplusplus
10
11__device__ void read_clover(hr_complex *c, const ldl_t *in, int ix, int dn, int j);
12__device__ void write_clover(hr_complex *c, ldl_t *out, int ix, int dn, int j);
13__device__ void read_force(hr_complex *c, const suNf *in, int ix, int comp, int i, int j);
14__device__ void write_force(hr_complex *c, suNf *out, int ix, int comp, int i, int j);
15__device__ void read_clover_term_comp(hr_complex *c, const suNfc *in, int ix, int comp, int i, int j);
16__device__ void write_clover_term_comp(hr_complex *c, suNfc *out, int ix, int comp, int i, int j);
17
18#endif
19#endif