Feb2021 GPU Package Update - GPU Package Files

This commit is contained in:
Michael Brown
2021-02-15 08:20:50 -08:00
parent 16004e8f45
commit e7e2d2323b
345 changed files with 13424 additions and 7708 deletions

View File

@ -56,9 +56,10 @@ class Table : public BaseAtomic<numtyp, acctyp> {
double host_memory_usage() const;
// ------------------------- DEVICE KERNELS -------------------------
UCL_Kernel k_pair_linear, k_pair_linear_fast;
UCL_Kernel k_pair_spline, k_pair_spline_fast;
UCL_Kernel k_pair_bitmap, k_pair_bitmap_fast;
UCL_Kernel k_pair_linear, k_pair_linear_fast, k_pair_linear_noev;
UCL_Kernel k_pair_spline, k_pair_spline_fast, k_pair_spline_noev;
UCL_Kernel k_pair_bitmap, k_pair_bitmap_fast, k_pair_bitmap_noev;
UCL_Kernel *k_pair_linear_sel, *k_pair_spline_sel, *k_pair_bitmap_sel;
// --------------------------- TYPE DATA --------------------------
@ -90,7 +91,7 @@ class Table : public BaseAtomic<numtyp, acctyp> {
private:
bool _allocated, _compiled_styles;
void loop(const bool _eflag, const bool _vflag);
int loop(const int eflag, const int vflag);
};
}