1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00
Grid/lib/Grid.h

101 lines
2.3 KiB
C
Raw Normal View History

2015-03-04 03:12:19 +00:00
//
2015-04-18 20:44:19 +01:00
// Grid.h
2015-03-04 03:12:19 +00:00
// simd
//
// Created by Peter Boyle on 09/05/2014.
// Copyright (c) 2014 University of Edinburgh. All rights reserved.
//
2015-04-18 18:36:48 +01:00
#ifndef GRID_H
#define GRID_H
2015-03-04 03:12:19 +00:00
#include <cassert>
2015-03-04 03:12:19 +00:00
#include <complex>
#include <vector>
2015-03-04 03:12:19 +00:00
#include <iostream>
#include <iomanip>
2015-03-04 03:12:19 +00:00
#include <random>
#include <functional>
#include <stdio.h>
2015-03-04 03:12:19 +00:00
#include <stdlib.h>
2015-03-04 04:13:07 +00:00
#include <sys/time.h>
#include <stdio.h>
2015-03-04 13:25:23 +00:00
#include <signal.h>
2015-03-04 03:12:19 +00:00
#ifndef MAX
#define MAX(x,y) ((x)>(y)?(x):(y))
#define MIN(x,y) ((x)>(y)?(y):(x))
#endif
2015-05-15 11:31:41 +01:00
#define strong_inline __attribute__((always_inline)) inline
2015-06-03 12:47:05 +01:00
#include <GridConfig.h>
2015-03-04 04:13:07 +00:00
#include <GridTime.h>
#include <GridLog.h>
2015-03-04 04:13:07 +00:00
////////////////////////////////////////////////////////////
// Tunable header includes
////////////////////////////////////////////////////////////
2015-03-04 13:44:33 +00:00
2015-03-04 04:13:07 +00:00
#ifdef HAVE_MALLOC_MALLOC_H
2015-03-04 03:12:19 +00:00
#include <malloc/malloc.h>
2015-03-04 04:13:07 +00:00
#endif
#ifdef HAVE_MALLOC_H
2015-03-04 03:12:19 +00:00
#include <malloc.h>
#endif
2015-06-03 12:47:05 +01:00
#include <AlignedAllocator.h>
2015-06-03 12:47:05 +01:00
#include <Simd.h>
#include <Threads.h>
2015-06-03 12:47:05 +01:00
#include <Communicator.h> // subdir aggregate
#include <Cartesian.h> // subdir aggregate
#include <Tensors.h> // subdir aggregate
#include <Lattice.h> // subdir aggregate
#include <Cshift.h> // subdir aggregate
#include <Stencil.h> // subdir aggregate
#include <Algorithms.h>// subdir aggregate
#include <qcd/QCD.h>
2015-06-03 12:47:05 +01:00
#include <parallelIO/NerscIO.h>
2015-03-04 03:12:19 +00:00
2015-04-03 05:29:54 +01:00
namespace Grid {
2015-03-04 03:12:19 +00:00
void Grid_init(int *argc,char ***argv);
2015-04-10 04:22:36 +01:00
void Grid_finalize(void);
// internal, controled with --handle
2015-03-04 05:31:44 +00:00
void Grid_sa_signal_handler(int sig,siginfo_t *si,void * ptr);
void Grid_debug_handler_init(void);
2015-04-23 20:42:09 +01:00
void Grid_quiesce_nodes(void);
void Grid_unquiesce_nodes(void);
// C++11 time facilities better?
double usecond(void);
2015-05-12 20:41:44 +01:00
const std::vector<int> GridDefaultSimd(int dims,int nsimd);
const std::vector<int> &GridDefaultLatt(void);
const std::vector<int> &GridDefaultMpi(void);
const int &GridThreads(void) ;
void GridSetThreads(int t) ;
2015-03-04 03:12:19 +00:00
// Common parsing chores
std::string GridCmdOptionPayload(char ** begin, char ** end, const std::string & option);
bool GridCmdOptionExists(char** begin, char** end, const std::string& option);
std::string GridCmdVectorIntToString(const std::vector<int> & vec);
2015-05-11 14:36:48 +01:00
void GridParseLayout(char **argv,int argc,
std::vector<int> &latt,
std::vector<int> &simd,
2015-05-11 14:36:48 +01:00
std::vector<int> &mpi);
2015-03-04 03:12:19 +00:00
};
#endif