зеркало из https://github.com/microsoft/LightGBM.git
24 строки
614 B
OpenEdge ABL
24 строки
614 B
OpenEdge ABL
|
/**
|
||
|
* Wrap chunked_array.hpp class for SWIG usage.
|
||
|
*
|
||
|
* Author: Alberto Ferreira
|
||
|
*/
|
||
|
|
||
|
%{
|
||
|
#include "../include/LightGBM/utils/chunked_array.hpp"
|
||
|
%}
|
||
|
|
||
|
%include "../include/LightGBM/utils/chunked_array.hpp"
|
||
|
|
||
|
using LightGBM::ChunkedArray;
|
||
|
|
||
|
%template(int32ChunkedArray) ChunkedArray<int32_t>;
|
||
|
/* Unfortunately, for the time being,
|
||
|
* SWIG has issues generating the overloads to coalesce_to()
|
||
|
* for larger integral types
|
||
|
* so we won't support that for now:
|
||
|
*/
|
||
|
//%template(int64ChunkedArray) ChunkedArray<int64_t>;
|
||
|
%template(floatChunkedArray) ChunkedArray<float>;
|
||
|
%template(doubleChunkedArray) ChunkedArray<double>;
|