Skip to content

Commit 58b623c

Browse files
committed
Updated permissions
1 parent c269081 commit 58b623c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+28
-251
lines changed

.github/pull_request_template/dev-merge_template.md

100644100755
File mode changed.

.github/pull_request_template/main-merge_template.md

100644100755
File mode changed.

.github/workflows/pylint.yml

100644100755
File mode changed.

.gitignore

100644100755
File mode changed.

CONTRIBUTING.md

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

code/.ipynb_checkpoints/csv_preprocessing-checkpoint.ipynb

100644100755
File mode changed.

code/bootstrap_func.py

Lines changed: 0 additions & 130 deletions
This file was deleted.

code/bootstrapping/bootstrap_curve_batch.sub

100644100755
Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,26 @@
11
#!/bin/bash
22
#SBATCH --job-name=wme-bootstrap # create a short name for your job
33
#SBATCH --nodes=1 # node count
4-
#SBATCH --ntasks=5 # total number of tasks across all nodes
5-
#SBATCH --cpus-per-task=1
6-
#SBATCH --time=24:00:00 # total run time limit (HH:MM:SS)
7-
#SBATCH --mem=20G
4+
#SBATCH --ntasks=16 # total number of tasks across all nodes
5+
#SBATCH --cpus-per-task=2
6+
#SBATCH --time=100:00:00 # total run time limit (HH:MM:SS)
7+
#SBATCH --mem=40G
88
#SBATCH --partition=highmem1
99
#SBATCH --qos=highmem1
1010
#SBATCH --account=iacc_gbuzzell
1111
#SBATCH --output=%x-%j.out
1212
#SBATCH --mail-type=end # send email when job ends
1313
1414

15-
16-
####conda init
17-
conda activate /home/fzaki001/.conda/envs/wme-env
18-
conda run -n wme-env python para_bootstr_curve.py
15+
export PYTHONUNBUFFERED=TRUE
1916

2017
pwd; hostname; date
2118
echo "flurm cpus per task: $SLURM_CPUS_PER_TASK"
22-
printenv
2319

20+
source activate base
21+
conda activate /home/fzaki001/.conda/envs/wme-env
22+
conda run -n wme-env python -u para_bootstr_curve_s5.py
2423

25-
#errors=$(cat ${SLURM_JOB_NAME}-${SLURM_JOB_ID}.out | grep "Error")
2624
errors=$(cat ${SLURM_JOB_NAME}-${SLURM_JOB_ID}.out | grep "Error")
2725
if [[ -z ${errors} ]]; then
2826
echo "Behavior processing complete."

0 commit comments

Comments
 (0)