Page MenuHomec4science

timer.h
No OneTemporary

File Metadata

Created
Wed, Oct 16, 15:58
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#ifndef TIMER_H
#define TIMER_H
#include "pointers.h"
#define TIME_N 8
#define TIME_TOTAL 0
#define TIME_LOOP 1
#define TIME_PAIR 2
#define TIME_BOND 3
#define TIME_KSPACE 4
#define TIME_NEIGHBOR 5
#define TIME_COMM 6
#define TIME_OUTPUT 7
namespace LAMMPS_NS {
class Timer : protected Pointers {
public:
double *array;
Timer(class LAMMPS *);
~Timer();
void init();
void stamp();
void stamp(int);
void barrier_start(int);
void barrier_stop(int);
double elapsed(int);
private:
double previous_time;
};
}
#endif

Event Timeline