mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
f4c74e34d8
MacroMagic.h is central. Guido and I plan to move over to generating virtual (XML, JSON, YAML, text, binary) encoding from macro based system.
54 lines
982 B
C++
54 lines
982 B
C++
//
|
|
// Grid.h
|
|
// simd
|
|
//
|
|
// Created by Peter Boyle on 09/05/2014.
|
|
// Copyright (c) 2014 University of Edinburgh. All rights reserved.
|
|
//
|
|
|
|
#ifndef GRID_H
|
|
#define GRID_H
|
|
|
|
///////////////////
|
|
// Std C++ dependencies
|
|
///////////////////
|
|
#include <cassert>
|
|
#include <complex>
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <iomanip>
|
|
#include <random>
|
|
#include <functional>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <ctime>
|
|
#include <sys/time.h>
|
|
#include <chrono>
|
|
|
|
///////////////////
|
|
// Grid headers
|
|
///////////////////
|
|
#include <MacroMagic.h>
|
|
#include <Config.h>
|
|
#include <Timer.h>
|
|
#include <Log.h>
|
|
#include <AlignedAllocator.h>
|
|
#include <Simd.h>
|
|
#include <Threads.h>
|
|
#include <Communicator.h>
|
|
#include <Cartesian.h>
|
|
#include <Tensors.h>
|
|
#include <Lattice.h>
|
|
#include <Cshift.h>
|
|
#include <Stencil.h>
|
|
#include <Algorithms.h>
|
|
#include <qcd/QCD.h>
|
|
#include <parallelIO/NerscIO.h>
|
|
|
|
#include <Init.h>
|
|
|
|
|
|
#endif
|