zpzim / SCAMP

The fastest way to compute matrix profiles on CPU and GPU!
http://www.cs.ucr.edu/~eamonn/MatrixProfile.html
MIT License
157 stars 36 forks source link

Update C++ standard for host code to C++17 and device code to C++14 #67

Closed zpzim closed 2 years ago

zpzim commented 2 years ago

This updates the C++ standard for host code to C++17 which is fully supported by most compilers at this point.

CUDA device code will compile with C++14 for maximum cuda/host compiler interoperability.

Also cleans up numerous style and lint issues in the codebase.