9#define _USE_MATH_DEFINES
25#include "hilapp_mpi.h"
45#include "plumbing/memalloc.h"
46#include "plumbing/timing.h"
51#define RESTRICT __restrict__
99extern std::ostream
out;
102extern std::ostream
out0;
109extern bool about_to_finish;
113extern bool is_initialized;
117extern bool check_input;
118extern int check_with_nodes;
120enum sort { unsorted, ascending, descending };
125void error(
const std::string &msg);
126void error(
const char *msg);
135void synchronize_partitions();
137void initialize_communications(
int &argc,
char ***argv);
139bool is_comm_initialized(
void);
140void finish_communications();
141void abort_communications(
int status);
144void print_dashed_line(
const std::string &txt = {});
149#include "plumbing/logger.h"
168constexpr inline void swap(T &a, T &b) {
178#if defined(CUDA) || defined(HIP)
179#include "plumbing/backend_gpu/defs.h"
181#include "plumbing/backend_vector/defs.h"
183#include "plumbing/backend_cpu/defs.h"
187#include "plumbing/random.h"
190#include "plumbing/type_tools.h"
192#include "plumbing/has_unary_minus.h"
194#if defined(CUDA) || defined(HIP)
195#include "plumbing/backend_gpu/gpu_templated_ops.h"
200#include "plumbing/real_var_ops.h"
203#define MAX_GATHERS 1000
207#if __has_include(<filesystem>)
209namespace filesys_ns = std::filesystem;
211#elif __has_include(<experimental/filesystem>)
212#include <experimental/filesystem>
213namespace filesys_ns = std::experimental::filesystem;
216static_assert(0,
"Neither <filesystem> nor <experimental/filesystem> found!");
Define the logger class here.
T arg(const Complex< T > &a)
Return argument of Complex number.
fft_direction
define a class for FFT direction
constexpr T sqr(const T &arg)
Define convenience function sqr(), returning square of argument.
Implement hila::swap for gauge fields.
logger_class log
Now declare the logger.
int myrank()
rank of this node
int number_of_nodes()
how many nodes there are
void synchronize()
synchronize mpi
std::ostream out
this is our default output file stream
std::ostream out0
This writes output only from main process (node 0)
std::ofstream output_file
this is just a hook to store output file, if it is in use
void initialize(int argc, char **argv)
Initial setup routines.
void split_into_partitions(int rank)
void finishrun()
Normal, controlled exit - all nodes must call this. Prints timing information and information about c...
void terminate(int status)
This file contains #defined constants.