Skip to content

Commit

Permalink
Improve Makefile and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
dmorrill10 committed May 13, 2021
1 parent 5221e3e commit 9973ca3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ manifest.db
*.out
runs_remaining.gen.sh
sbatch_config.sh

results/
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,16 @@ data:
results:
mkdir $@

$(EXE):
cd $(EXPERIMENT_RUNNER_DIRECTORY) && $(MAKE)

data/%.gen.ssv: | data
python3 bin/run_experiment.py --exe_dir $(EXE_DIR) -a $* > $@

runs_remaining.gen.sh: bin/list_runs_remaining.sh Makefile
$< > $@

results/efr_data.npy: $(SSV_FILES)
results/efr_data.npy: $(SSV_FILES) | results
python3 bin/save_data.py -x efr -o $@

results/cor_gap_data.npy: $(wildcard data/cor_gap.*.dat)
results/cor_gap_data.npy: $(wildcard data/cor_gap.*.dat) | results
python3 bin/save_data.py -x cor_gap -o $@

print-%:
Expand Down
5 changes: 0 additions & 5 deletions results/.gitignore

This file was deleted.

0 comments on commit 9973ca3

Please sign in to comment.