forked from chapel-lang/chapel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Zarr IO Prototype Module (chapel-lang#24534)
This PR includes prototype implementations of a distributed reader and writer for the Zarr Store protocol. It supports user requests for IO-bound applications using data in this format. `c-blosc` is used to compress and decompress the chunks, so the included correctness tests start by building c-blosc, then link against it before running the tests.
- Loading branch information
Showing
13 changed files
with
547 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
ReindexStore | ||
Test1D | ||
Test2D | ||
Test3D | ||
c-blosc | ||
*.dylib | ||
*.so* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
*.so | ||
c-blosc | ||
ReindexStore | ||
Test1D | ||
Test2D | ||
Test3D |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-I./c-blosc/blosc -L./c-blosc/build/blosc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
LD_LIBRARY_PATH=. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
git clone https://github.com/Blosc/c-blosc.git | ||
cd c-blosc | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make -j4 | ||
cd ../.. | ||
cp c-blosc/build/blosc/*.so* . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CHPL_LIB_PIC != PIC | ||
CHPL_TARGET_PLATFORM == darwin |
Oops, something went wrong.