-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
125 lines (107 loc) · 1.72 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
thirdparty/*.tar*
CMakeFiles/
CMakeCache.txt
CTestTestfile.cmake
Makefile
!include/zstd/Makefile
cmake_install.cmake
build/
*-build/
Testing/
build-support/boost_*
raw_binaries/
test_*.cmake
*_tests.cmake
*_include.cmake
bench_*.cmake
bench_*.hpp
libzstd.pc
__pycache__
bench_alp_cutter_decode
bench_alp_cutter_encode
bench_alp_encode
bench_alp_without_sampling
bench_chimp
bench_chimp128
bench_gorillas
bench_patas
bench_zstd
bench_zstd_compression_ratio
bench_alp_compression_ratio
bench_alp32_compression_ratio
bench_chimp_compression_ratio
bench_chimp128_compression_ratio
bench_gorillas_compression_ratio
bench_patas_compression_ratio
test_alp_vectorized
test_alp_sample
test_alp32_vectorized
test_chimp
test_chimp128
test_gorillas
test_patas
test_zstd
arm64v8_neon_intrinsic_1024_uf1_falp_test
arm64v8_sve_intrinsic_1024_uf1_falp_test
fallback_scalar_aav_1024_uf1_falp_test
fallback_scalar_nav_1024_uf1_falp_test
simple_compress
simple_compress32
rd_compress
rd_compress32
adaptive_compress
benchmarks/fcbench/fcbench
DartConfiguration.tcl
.idea/
.cmake/
_deps/
# Build directories created by Clion
cmake-build-*/
#########################################
# Editor temporary/working/backup files #
.#*
*\#*\#
[#]*#
*~
*$
*.bak
*flymake*
*.kdev4
*.log
*.swp
#########################################
# ignore tmp directory
tmp
######################################### from the fls_benchamrks integration
.vagrant/
compile_commands.json
*.pdf
plot/*.log
plot/*.tex
.Rhistory
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app