-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated instructions with example refactor
- Loading branch information
Showing
2 changed files
with
13 additions
and
6 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 |
---|---|---|
@@ -1,14 +1,20 @@ | ||
# PENNANT DSI example | ||
This is an example for creating and querying a DSI database from PENNANT output. | ||
Output from 10 runs is included in the directory. If you wish to generate your own output, you can download PENNANT: from: [https://github.com/lanl/PENNANT](https://github.com/lanl/PENNANT) and compile with make after editing the Makefile. | ||
Output from 10 runs is included in the directory. If you wish to generate your own output, you can download PENNANT: from: [https://github.com/lanl/PENNANT](https://github.com/lanl/PENNANT) and compile with make after editing the Makefile. Runs are provided in this folder ready to ingest. | ||
|
||
## Move into the PENNANT directory | ||
Assuming the DSI library is installed, move first into the root DSI directory, then: | ||
``` | ||
cd examples/pennant/ | ||
``` | ||
|
||
## Create a csv from the included outputs | ||
Create a csv file from the outputs: | ||
``` | ||
./parse_slurm_output.py --testname leblanc | ||
python3 parse_slurm_output.py --testname leblanc | ||
``` | ||
|
||
## Create a DSI db and query it | ||
``` | ||
./create_and_query_dsi_db.py --testname leblanc | ||
python3 create_and_query_dsi_db.py --testname leblanc | ||
``` |
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