• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..04-Mar-2020-

READMEH A D04-Mar-20201.3 KiB3224

file_to_cstr.shH A D04-Mar-20201.1 KiB5535

nvd_device.hH A D04-Mar-202017 KiB458306

nvd_kernel.hH A D04-Mar-202013.9 KiB407282

nvd_macros.hH A D04-Mar-20202 KiB7955

nvd_mat.hH A D04-Mar-20201.7 KiB5824

nvd_memory.hH A D04-Mar-202024 KiB658554

nvd_texture.hH A D04-Mar-20203.5 KiB10153

nvd_timer.hH A D04-Mar-20203.9 KiB12258

ocl_device.hH A D04-Mar-202021.5 KiB599389

ocl_kernel.hH A D04-Mar-202013.7 KiB386266

ocl_macros.hH A D04-Mar-20201.6 KiB6546

ocl_mat.hH A D04-Mar-20201.7 KiB6026

ocl_memory.hH A D04-Mar-202027.2 KiB759640

ocl_texture.hH A D04-Mar-20202 KiB6020

ocl_timer.hH A D04-Mar-20204.3 KiB13368

ucl_arg_kludge.hH A D04-Mar-202040.4 KiB831746

ucl_basemat.hH A D04-Mar-20203.4 KiB9547

ucl_copy.hH A D04-Mar-202039.4 KiB941654

ucl_d_mat.hH A D04-Mar-202017.9 KiB479268

ucl_d_vec.hH A D04-Mar-202018.2 KiB492282

ucl_get_devices.cppH A D04-Mar-20201.6 KiB4921

ucl_h_mat.hH A D04-Mar-202017.1 KiB424218

ucl_h_vec.hH A D04-Mar-202016.3 KiB416209

ucl_matrix.hH A D04-Mar-202010.8 KiB240123

ucl_nv_kernel.hH A D04-Mar-20202 KiB6232

ucl_print.hH A D04-Mar-202010.5 KiB283204

ucl_s_obj_help.hH A D04-Mar-202012.2 KiB398341

ucl_types.hH A D04-Mar-20208.4 KiB177138

ucl_vector.hH A D04-Mar-202010.6 KiB239122

README

1NOTE: This Geryon distribution has been modified to remove files not
2      necessary for the LAMMPS implementation. The full distribution
3      is available at http://users.nccs.gov/~wb8/geryon/index.htm
4
5Geryon
6
7   Copyright (2010) Sandia Corporation.  Under the terms of Contract
8   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
9   certain rights in this software.  This software is distributed under
10   the Simplified BSD License.
11
12Geryon is intended to be a simple library for managing the CUDA Runtime,
13CUDA Driver, and OpenCL APIs with a consistent interface:
14
15    * Change from one API to another by simply changing the namespace
16    * Use multiple APIs in the same code
17    * Lightweight (only include files - no build required)
18    * Manage device query and selection
19    * Simple vector and matrix containers
20    * Simple routines for data copy and type casting
21    * Simple routines for data I/O
22    * Simple classes for managing device timing
23    * Simple classes for managing kernel compilation and execution
24
25Geryon does not require building (although a Makefile is provided for testing
26purposes). The library is a set of header files that can be included with
27your code.
28
29Documentation and examples are provided at
30
31http://users.nccs.gov/~wb8/geryon/index.htm
32