Skip to content

Commit 32b1215

Browse files
authored
Merge pull request #7 from gjbex/development
Consistency fix
2 parents 71b0327 + 9e9fcf6 commit 32b1215

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,9 @@ venv.bak/
107107
*~
108108
*.swp
109109
*.bak
110-
~$scientific_python.pptx
110+
111+
# Powerpoint backup files
111112
~$python_hpc.pptx
113+
114+
# direnv files
115+
.envrc

source-code/dask/julia_set/julia_set_dask.pbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
cd $PBS_O_WORKDIR
88

99
source "conda.sh"
10-
conda activate dask
10+
conda activate python_for_hpc
1111

1212
if [ $? -ne 0 ]
1313
then

source-code/dask/julia_set/launch_scheduler.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
source "conda.sh"
4-
conda activate dask 2> /dev/null
4+
conda activate python_for_hpc 2> /dev/null
55
if [ $? -ne 0 ]
66
then
77
(>&2 echo '### error: conda environment not sourced correctly' )

source-code/dask/julia_set/launch_worker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ JOBID=$3
1818
cd "${WORK_DIR}"
1919

2020
source "conda.sh"
21-
conda activate dask 2> /dev/null
21+
conda activate python_for_hpc 2> /dev/null
2222
if [ $? -ne 0 ]
2323
then
2424
(>&2 echo '### error: conda environment not sourced correctly' )

0 commit comments

Comments
 (0)