cujson-sys 0.1.1

Raw FFI bindings to cuJSON, compiled with nvcc when the `cuda` feature is on
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// loadfile.h
#ifndef LOADFILE_H
#define LOADFILE_H

#include <string>
#include "cujson_types.h"

// load_file.cu's loadJSON/loadJSONLines_* are file-scope (static) - this
// header only brings in cuJSONInput/cuJSONLinesInput for callers that
// don't need file loading (this TU is compiled into both cujson.h's and
// cujsonlines.h's unity build, so external declarations here would
// collide with the static definitions in load_file.cu).

#endif // LOADFILE_H