updated code for groupby and windowed aggregations

This commit is contained in:
2022-02-11 02:09:38 -05:00
parent 277dad6b3e
commit 7eac7837a3
11 changed files with 137 additions and 39 deletions
+8
View File
@@ -0,0 +1,8 @@
all:
g++ mmw.cpp --std=c++1z -shared -fPIC -Ofast -march=native -g0 -s -o mmw.so
avx512:
g++ mmw.cpp --std=c++1z -shared -fPIC -Ofast -mavx512f -g0 -s -o mmw.so
debug:
g++ mmw.cpp --std=c++1z -shared -fPIC -O0 -march=native -g3 -o mmw.so
clean:
rm mmw.so -rf