diff --git a/.clang-format b/.clang-format index 0f17b31..4a5cff1 100644 --- a/.clang-format +++ b/.clang-format @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 742e2d7..f648ed4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause name: "CI" diff --git a/.gitignore b/.gitignore index 3541eaf..a1e6811 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause scripts diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3c51596..b750526 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause repos: diff --git a/CMakeLists.txt b/CMakeLists.txt index fd9c6fd..5ad2478 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause cmake_minimum_required(VERSION 3.5) diff --git a/README.md b/README.md index ce480c0..a806025 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index c61323b..7e5bbd1 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause function(add_example example_name) diff --git a/examples/benchmark_read.c b/examples/benchmark_read.c index 862c3c6..c1ef342 100644 --- a/examples/benchmark_read.c +++ b/examples/benchmark_read.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/benchmark_read_parallel.c b/examples/benchmark_read_parallel.c index 1c208fb..b485938 100644 --- a/examples/benchmark_read_parallel.c +++ b/examples/benchmark_read_parallel.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/benchmark_write.c b/examples/benchmark_write.c index 61d6ad8..8af5881 100644 --- a/examples/benchmark_write.c +++ b/examples/benchmark_write.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/bsp-ls.c b/examples/bsp-ls.c index fd49ea2..8ecdd94 100644 --- a/examples/bsp-ls.c +++ b/examples/bsp-ls.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/bsp2mtx.c b/examples/bsp2mtx.c index 09d9929..44116b2 100644 --- a/examples/bsp2mtx.c +++ b/examples/bsp2mtx.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/check_equivalence.c b/examples/check_equivalence.c index 00dec03..0acea42 100644 --- a/examples/check_equivalence.c +++ b/examples/check_equivalence.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/check_equivalence_parallel.c b/examples/check_equivalence_parallel.c index abcf824..b773cf8 100644 --- a/examples/check_equivalence_parallel.c +++ b/examples/check_equivalence_parallel.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/cpp/CMakeLists.txt b/examples/cpp/CMakeLists.txt index 9783f3d..2b8dcdf 100644 --- a/examples/cpp/CMakeLists.txt +++ b/examples/cpp/CMakeLists.txt @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause function(add_example example_name) diff --git a/examples/cpp/benchmark_read.cpp b/examples/cpp/benchmark_read.cpp index 7f41550..9c20b48 100644 --- a/examples/cpp/benchmark_read.cpp +++ b/examples/cpp/benchmark_read.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/benchmark_write.cpp b/examples/cpp/benchmark_write.cpp index fe950d9..2bd5895 100644 --- a/examples/cpp/benchmark_write.cpp +++ b/examples/cpp/benchmark_write.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/bsp-ls.cpp b/examples/cpp/bsp-ls.cpp index 9337af3..1143563 100644 --- a/examples/cpp/bsp-ls.cpp +++ b/examples/cpp/bsp-ls.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/bsp2mtx.cpp b/examples/cpp/bsp2mtx.cpp index 7f8ebde..bc59692 100644 --- a/examples/cpp/bsp2mtx.cpp +++ b/examples/cpp/bsp2mtx.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/check_equivalence.cpp b/examples/cpp/check_equivalence.cpp index 84cb421..2d3ef85 100644 --- a/examples/cpp/check_equivalence.cpp +++ b/examples/cpp/check_equivalence.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/mtx2bsp.cpp b/examples/cpp/mtx2bsp.cpp index bc13c03..61e0496 100644 --- a/examples/cpp/mtx2bsp.cpp +++ b/examples/cpp/mtx2bsp.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/simple_matrix_read.cpp b/examples/cpp/simple_matrix_read.cpp index e0fcac9..586955c 100644 --- a/examples/cpp/simple_matrix_read.cpp +++ b/examples/cpp/simple_matrix_read.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/simple_matrix_write.cpp b/examples/cpp/simple_matrix_write.cpp index cb1b236..a12965e 100644 --- a/examples/cpp/simple_matrix_write.cpp +++ b/examples/cpp/simple_matrix_write.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/simple_read.cpp b/examples/cpp/simple_read.cpp index a84d96d..2ab552f 100644 --- a/examples/cpp/simple_read.cpp +++ b/examples/cpp/simple_read.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/cpp/simple_write.cpp b/examples/cpp/simple_write.cpp index 46cd650..e016073 100644 --- a/examples/cpp/simple_write.cpp +++ b/examples/cpp/simple_write.cpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #include diff --git a/examples/mtx2bsp.c b/examples/mtx2bsp.c index 617bf62..07db200 100644 --- a/examples/mtx2bsp.c +++ b/examples/mtx2bsp.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/simple_matrix_read.c b/examples/simple_matrix_read.c index 042adc1..acbdabc 100644 --- a/examples/simple_matrix_read.c +++ b/examples/simple_matrix_read.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/simple_matrix_write.c b/examples/simple_matrix_write.c index edbd601..5ee6f3f 100644 --- a/examples/simple_matrix_write.c +++ b/examples/simple_matrix_write.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/simple_read.c b/examples/simple_read.c index c1dd544..f2a1184 100644 --- a/examples/simple_read.c +++ b/examples/simple_read.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/examples/simple_write.c b/examples/simple_write.c index 3225a45..deb47d8 100644 --- a/examples/simple_write.c +++ b/examples/simple_write.c @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 6f3c932..a423da1 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause add_library(binsparse-rc INTERFACE) diff --git a/include/binsparse/array.h b/include/binsparse/array.h index 73d9fbc..090dc5d 100644 --- a/include/binsparse/array.h +++ b/include/binsparse/array.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/binsparse.h b/include/binsparse/binsparse.h index 718ccc7..bb6eecd 100644 --- a/include/binsparse/binsparse.h +++ b/include/binsparse/binsparse.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/convert_matrix.h b/include/binsparse/convert_matrix.h index cd6eefd..d7b2e6f 100644 --- a/include/binsparse/convert_matrix.h +++ b/include/binsparse/convert_matrix.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/detail/cpp/array.hpp b/include/binsparse/detail/cpp/array.hpp index 8e2da04..1b5ff7d 100644 --- a/include/binsparse/detail/cpp/array.hpp +++ b/include/binsparse/detail/cpp/array.hpp @@ -1,3 +1,5 @@ +// SPDX-FileCopyrightText: 2024 Binsparse Developers +// // SPDX-License-Identifier: BSD-3-Clause #pragma once diff --git a/include/binsparse/detail/declamp_values.h b/include/binsparse/detail/declamp_values.h index fdac775..fad2ce3 100644 --- a/include/binsparse/detail/declamp_values.h +++ b/include/binsparse/detail/declamp_values.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/detail/detail.h b/include/binsparse/detail/detail.h index 98ded9b..f98990f 100644 --- a/include/binsparse/detail/detail.h +++ b/include/binsparse/detail/detail.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/detail/parse_dataset.h b/include/binsparse/detail/parse_dataset.h index cefd60d..c40f6cd 100644 --- a/include/binsparse/detail/parse_dataset.h +++ b/include/binsparse/detail/parse_dataset.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/detail/shm_tools.h b/include/binsparse/detail/shm_tools.h index 9b3316a..77ca5c8 100644 --- a/include/binsparse/detail/shm_tools.h +++ b/include/binsparse/detail/shm_tools.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/generate.h b/include/binsparse/generate.h index abe1c40..2ea8fd8 100644 --- a/include/binsparse/generate.h +++ b/include/binsparse/generate.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/hdf5_wrapper.h b/include/binsparse/hdf5_wrapper.h index a32a31f..9e023e8 100644 --- a/include/binsparse/hdf5_wrapper.h +++ b/include/binsparse/hdf5_wrapper.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/matrix.h b/include/binsparse/matrix.h index 1d4336e..fcfc6e5 100644 --- a/include/binsparse/matrix.h +++ b/include/binsparse/matrix.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/matrix_formats.h b/include/binsparse/matrix_formats.h index cb8c522..691097a 100644 --- a/include/binsparse/matrix_formats.h +++ b/include/binsparse/matrix_formats.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/matrix_market/coo_sort_tools.h b/include/binsparse/matrix_market/coo_sort_tools.h index 8113424..8d3b485 100644 --- a/include/binsparse/matrix_market/coo_sort_tools.h +++ b/include/binsparse/matrix_market/coo_sort_tools.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/matrix_market/matrix_market_inspector.h b/include/binsparse/matrix_market/matrix_market_inspector.h index 276b2d9..3bae696 100644 --- a/include/binsparse/matrix_market/matrix_market_inspector.h +++ b/include/binsparse/matrix_market/matrix_market_inspector.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/matrix_market/matrix_market_read.h b/include/binsparse/matrix_market/matrix_market_read.h index e4e9799..5013ab9 100644 --- a/include/binsparse/matrix_market/matrix_market_read.h +++ b/include/binsparse/matrix_market/matrix_market_read.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/matrix_market/matrix_market_type_t.h b/include/binsparse/matrix_market/matrix_market_type_t.h index 79062e4..e670041 100644 --- a/include/binsparse/matrix_market/matrix_market_type_t.h +++ b/include/binsparse/matrix_market/matrix_market_type_t.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/matrix_market/matrix_market_write.h b/include/binsparse/matrix_market/matrix_market_write.h index bc906cc..1a4a5e2 100644 --- a/include/binsparse/matrix_market/matrix_market_write.h +++ b/include/binsparse/matrix_market/matrix_market_write.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/minimize_values.h b/include/binsparse/minimize_values.h index 0ccac9c..8764e91 100644 --- a/include/binsparse/minimize_values.h +++ b/include/binsparse/minimize_values.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/read_matrix.h b/include/binsparse/read_matrix.h index cf89fa7..ac41e48 100644 --- a/include/binsparse/read_matrix.h +++ b/include/binsparse/read_matrix.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/structure.h b/include/binsparse/structure.h index 71ec17a..62e2ddd 100644 --- a/include/binsparse/structure.h +++ b/include/binsparse/structure.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/types.h b/include/binsparse/types.h index 0e44775..9ce6dea 100644 --- a/include/binsparse/types.h +++ b/include/binsparse/types.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/include/binsparse/write_matrix.h b/include/binsparse/write_matrix.h index 35ce649..e07cedd 100644 --- a/include/binsparse/write_matrix.h +++ b/include/binsparse/write_matrix.h @@ -1,4 +1,6 @@ /* + * SPDX-FileCopyrightText: 2024 Binsparse Developers + * * SPDX-License-Identifier: BSD-3-Clause */ diff --git a/requirements.txt b/requirements.txt index bdf5129..0de24c7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause pre-commit diff --git a/scripts/read_cold_benchmarks.sh b/scripts/read_cold_benchmarks.sh index 99252b8..0888502 100755 --- a/scripts/read_cold_benchmarks.sh +++ b/scripts/read_cold_benchmarks.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # COO No Compression diff --git a/scripts/read_warm_benchmarks.sh b/scripts/read_warm_benchmarks.sh index be43095..9d71a72 100755 --- a/scripts/read_warm_benchmarks.sh +++ b/scripts/read_warm_benchmarks.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # COO No Compression diff --git a/scripts/test.sh b/scripts/test.sh index 1b49870..f4b2774 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # Usage: ./test.sh [/path/to/benchmark_read,/path/to/benchmark_write/] [/path/to/binsparse/matrices/] [optional: /path/to/filesystem/for/experiments] diff --git a/scripts/test_fastmm.sh b/scripts/test_fastmm.sh index 02dd5cd..633904e 100755 --- a/scripts/test_fastmm.sh +++ b/scripts/test_fastmm.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # Usage: ./test_fastmm.sh [/path/to/benchmark_read,/path/to/benchmark_write/] [/path/to/matrix_market/matrices/] [/path/to/binsparse/matrices] [optional: /path/to/filesystem/for/experiments] diff --git a/scripts/test_fastmm_warm.sh b/scripts/test_fastmm_warm.sh index c4bcaf4..6bd512d 100755 --- a/scripts/test_fastmm_warm.sh +++ b/scripts/test_fastmm_warm.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # Usage: ./test_fastmm.sh [/path/to/benchmark_read,/path/to/benchmark_write/] [/path/to/matrix_market/matrices/] [/path/to/binsparse/matrices] [optional: /path/to/filesystem/for/experiments] diff --git a/scripts/test_warm.sh b/scripts/test_warm.sh index 4646c7f..3b31c88 100755 --- a/scripts/test_warm.sh +++ b/scripts/test_warm.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # Usage: ./test.sh [/path/to/benchmark_read,/path/to/benchmark_write/] [/path/to/binsparse/matrices/] [optional: /path/to/filesystem/for/experiments] diff --git a/scripts/test_write.sh b/scripts/test_write.sh index 7fc7229..3d8c3be 100755 --- a/scripts/test_write.sh +++ b/scripts/test_write.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # Usage: ./test.sh [/path/to/benchmark_read,/path/to/benchmark_write/] [/path/to/binsparse/matrices/] [/path/to/filesystem/for/experiments] [compression level: [0-9] ...] diff --git a/scripts/write_cold_benchmarks.sh b/scripts/write_cold_benchmarks.sh index bafec08..a08d17f 100755 --- a/scripts/write_cold_benchmarks.sh +++ b/scripts/write_cold_benchmarks.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # COO No Compression diff --git a/scripts/write_fastmm.sh b/scripts/write_fastmm.sh index 0528a55..b0e9058 100755 --- a/scripts/write_fastmm.sh +++ b/scripts/write_fastmm.sh @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause # Usage: ./test_fastmm.sh [/path/to/benchmark_read,/path/to/benchmark_write/] [/path/to/binsparse/matrices/] [/path/to/filesystem/for/experiments] diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 5fe2be3..0dd7ef0 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause add_subdirectory(bash) diff --git a/test/bash/CMakeLists.txt b/test/bash/CMakeLists.txt index a8d65a4..3810df0 100644 --- a/test/bash/CMakeLists.txt +++ b/test/bash/CMakeLists.txt @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause function(download_data url file_name) diff --git a/test/bash/test-cpp.sh b/test/bash/test-cpp.sh index 41f053a..828e18d 100644 --- a/test/bash/test-cpp.sh +++ b/test/bash/test-cpp.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause set -e diff --git a/test/bash/test.sh b/test/bash/test.sh index 8675fd6..2167e45 100644 --- a/test/bash/test.sh +++ b/test/bash/test.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash +# SPDX-FileCopyrightText: 2024 Binsparse Developers +# # SPDX-License-Identifier: BSD-3-Clause set -e