Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajaysjournal/h5chpl-poc
HDF5 library for Chapel
https://github.com/ajaysjournal/h5chpl-poc
chapel chapel-language
Last synced: 10 days ago
JSON representation
HDF5 library for Chapel
- Host: GitHub
- URL: https://github.com/ajaysjournal/h5chpl-poc
- Owner: ajaysjournal
- Created: 2017-04-02T08:33:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-02T08:55:09.000Z (over 7 years ago)
- Last Synced: 2024-10-25T09:47:53.456Z (about 2 months ago)
- Topics: chapel, chapel-language
- Language: C
- Homepage: http://chapel.cray.com/
- Size: 1.78 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# HDF5 Lib for Chapel - Proof of concept
---
### Compile and link HDF5 source code.
```
chpl -o demo.good demo.chpl -I/Users/Ajay/anaconda/include -L/Users/Ajay/anaconda/lib -lhdf5 -lhdf5_hl
```### Execution
```./demo.good --n=10 --fileName=Sample.h5```### Veryfy HDF5 file
``` h5dump Sample.h5 ```## Test Results
_run.sh_ contains above comands in one place. I am executing run.sh script.### *Output*
03:14:17 macOS_ ⚡ ./run.sh
HDF5 "Sample.h5" {
GROUP "/" {
DATASET "myDataSet" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 1, 10 ) / ( 1, 10 ) }
DATA {
(0,0): 1, 4, 9, 16, 25, 36, 49, 64, 81, 100
}
}
}
}---
### 🐙 History
### Summary of codebase version-2. 🚀
![summary-v2](doc/summary-v2.png)
---
### Summary of new codebase version-1.![summary-v1](doc/summary-v1.png)