Skip to content

Commit

Permalink
FIX: Correct variable name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeSWang committed Sep 11, 2024
1 parent d33e56e commit 649dcb6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/triumvirate/include/fftlog.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
#define FFTW_ESTIMATE (1U << 6)
#define FFTW_PLANNER_FLAG_DEFINED_
#endif // !FFTW_PLANNER_FLAG_DEFINED_
typedef double fft_complex[2];
typedef double fftw_complex[2];
using fftw_plan = hipfftHandle;
#endif // TRV_USE_HIP

Expand Down
2 changes: 1 addition & 1 deletion src/triumvirate/include/field.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#include "particles.hpp"

#ifdef TRV_USE_HIP
typedef double fft_complex[2];
typedef double fftw_complex[2];
#endif // TRV_USE_HIP

namespace trvm = trv::maths;
Expand Down
2 changes: 1 addition & 1 deletion src/triumvirate/src/threept.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "threept.hpp"

#ifdef TRV_USE_HIP
typedef double fft_complex[2];
typedef double fftw_complex[2];
#endif // TRV_USE_HIP

namespace trvs = trv::sys;
Expand Down
2 changes: 1 addition & 1 deletion src/triumvirate/src/twopt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "twopt.hpp"

#ifdef TRV_USE_HIP
typedef double fft_complex[2];
typedef double fftw_complex[2];
#endif // TRV_USE_HIP

/// @cond DOXYGEN_DOC_CONST
Expand Down

0 comments on commit 649dcb6

Please sign in to comment.