xref: /libCEED/rust/libceed-sys/c-src/include/ceed/jit-tools.h (revision 3d3250a08f026bd5a3ff436a992143d30c7d6e16)
1*3d3250a0SJeremy L Thompson /// Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at
2*3d3250a0SJeremy L Thompson /// the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights
3*3d3250a0SJeremy L Thompson /// reserved. See files LICENSE and NOTICE for details.
4*3d3250a0SJeremy L Thompson ///
5*3d3250a0SJeremy L Thompson /// This file is part of CEED, a collection of benchmarks, miniapps, software
6*3d3250a0SJeremy L Thompson /// libraries and APIs for efficient high-order finite element and spectral
7*3d3250a0SJeremy L Thompson /// element discretizations for exascale applications. For more information and
8*3d3250a0SJeremy L Thompson /// source code availability see http://github.com/ceed.
9*3d3250a0SJeremy L Thompson ///
10*3d3250a0SJeremy L Thompson /// The CEED research is supported by the Exascale Computing Project 17-SC-20-SC,
11*3d3250a0SJeremy L Thompson /// a collaborative effort of two U.S. Department of Energy organizations (Office
12*3d3250a0SJeremy L Thompson /// of Science and the National Nuclear Security Administration) responsible for
13*3d3250a0SJeremy L Thompson /// the planning and preparation of a capable exascale ecosystem, including
14*3d3250a0SJeremy L Thompson /// software, applications, hardware, advanced system engineering and early
15*3d3250a0SJeremy L Thompson /// testbed platforms, in support of the nation's exascale computing imperative.
16*3d3250a0SJeremy L Thompson 
17*3d3250a0SJeremy L Thompson #ifndef _ceed_jit_h
18*3d3250a0SJeremy L Thompson #define _ceed_jit_h
19*3d3250a0SJeremy L Thompson 
20*3d3250a0SJeremy L Thompson #include <ceed/ceed.h>
21*3d3250a0SJeremy L Thompson 
22*3d3250a0SJeremy L Thompson #define CEED_MAX_PATH_LEN 1024
23*3d3250a0SJeremy L Thompson 
24*3d3250a0SJeremy L Thompson CEED_EXTERN int CeedLoadSourceToBuffer(Ceed ceed, const char *source_file_path, char **buffer);
25*3d3250a0SJeremy L Thompson 
26*3d3250a0SJeremy L Thompson #endif
27