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
|
|
|
|
2015-07-27 10:32:28 +01:00
|
|
|
///////////////////
|
|
|
|
// Std C++ dependencies
|
|
|
|
///////////////////
|
2015-05-18 07:47:05 +01:00
|
|
|
#include <cassert>
|
2015-03-04 03:12:19 +00:00
|
|
|
#include <complex>
|
|
|
|
#include <vector>
|
|
|
|
#include <iostream>
|
2015-05-18 07:47:05 +01:00
|
|
|
#include <iomanip>
|
2015-03-04 03:12:19 +00:00
|
|
|
#include <random>
|
|
|
|
#include <functional>
|
2015-05-18 07:47:05 +01:00
|
|
|
#include <stdio.h>
|
2015-03-04 03:12:19 +00:00
|
|
|
#include <stdlib.h>
|
2015-03-04 04:13:07 +00:00
|
|
|
#include <stdio.h>
|
2015-03-04 13:25:23 +00:00
|
|
|
#include <signal.h>
|
2015-07-27 10:32:28 +01:00
|
|
|
#include <ctime>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
///////////////////
|
|
|
|
// Grid headers
|
|
|
|
///////////////////
|
2015-08-20 16:21:26 +01:00
|
|
|
#include <Serialisation.h>
|
2015-07-27 10:32:28 +01:00
|
|
|
#include <Config.h>
|
|
|
|
#include <Timer.h>
|
|
|
|
#include <Log.h>
|
2015-06-03 12:47:05 +01:00
|
|
|
#include <AlignedAllocator.h>
|
|
|
|
#include <Simd.h>
|
|
|
|
#include <Threads.h>
|
2015-07-27 10:32:28 +01:00
|
|
|
#include <Communicator.h>
|
|
|
|
#include <Cartesian.h>
|
|
|
|
#include <Tensors.h>
|
|
|
|
#include <Lattice.h>
|
|
|
|
#include <Cshift.h>
|
|
|
|
#include <Stencil.h>
|
|
|
|
#include <Algorithms.h>
|
2015-05-31 15:09:02 +01:00
|
|
|
#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-07-27 10:32:28 +01:00
|
|
|
#include <Init.h>
|
2015-05-11 12:43:10 +01:00
|
|
|
|
2015-03-04 03:12:19 +00:00
|
|
|
|
|
|
|
#endif
|