"platforms/cuda-old/src/kernels/kCalculateCDLJForces.cu" did not exist on "1010df3365f3d19062153d99b8dc95c1a3deb3ad"
cputicks.h 810 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// [AsmJit]
// Complete x86/x64 JIT and Remote Assembler for C++.
//
// [License]
// Zlib - See LICENSE.md file in the package.

// [Guard]
#ifndef _ASMJIT_BASE_CPUTICKS_H
#define _ASMJIT_BASE_CPUTICKS_H

// [Dependencies - AsmJit]
#include "../base/globals.h"

// [Api-Begin]
#include "../apibegin.h"

namespace asmjit {

//! \addtogroup asmjit_base_util
//! \{

// ============================================================================
// [asmjit::CpuTicks]
// ============================================================================

//! CPU ticks utilities.
struct CpuTicks {
  //! Get the current CPU ticks for benchmarking (1ms resolution).
  static ASMJIT_API uint32_t now();
};

//! \}

} // asmjit namespace

// [Api-End]
#include "../apiend.h"

// [Guard]
#endif // _ASMJIT_BASE_CPUTICKS_H