Skip to content

Commit 7e64f3f

Browse files
committed
Change conda environment to python_for_hpc
1 parent 4820118 commit 7e64f3f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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)