Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
aoymt committed Sep 10, 2024
2 parents 24450b4 + 80acde8 commit b2366e3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 25 deletions.
4 changes: 2 additions & 2 deletions docs/en/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0'
version = '1.1-dev'
# The full version, including alpha/beta/rc tags
release = '1.0.0'
release = '1.1-dev'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/ja/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0'
version = '1.1-dev'
# The full version, including alpha/beta/rc tags
release = '1.0.0'
release = '1.1-dev'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "HTP-tools-moller"
version = "1.0"
version = "1.1-dev"
description = "High-ThroughtPut calculation tools"
authors = ["HTP-tools developers <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down
6 changes: 0 additions & 6 deletions sample/moller/dsqss/AFH-chain/input.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ prologue:
code: |
module purge
module load oneapi_compiler/2023.0.0 openmpi/4.1.5-oneapi-2023.0.0-classic
ulimit -s unlimited
source ~/env/conda.sh
conda activate htptools
source /home/issp/materiapps/oneapi_compiler_classic-2023.0.0--openmpi-4.1.5/parallel/parallelvars-20210622-1.sh
source /home/issp/materiapps/oneapi_compiler_classic-2023.0.0--openmpi-4.1.5/dsqss/dsqssvars.sh
Expand Down
7 changes: 1 addition & 6 deletions sample/moller/hphi/AFH-chain/2S_1/input.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,9 @@ prologue:
code: |
echo "start"
date
module purge
module load oneapi_compiler/2023.0.0 openmpi/4.1.5-oneapi-2023.0.0-classic
ulimit -s unlimited
source ~/env/conda.sh
conda activate htptools
source /home/issp/materiapps/oneapi_compiler_classic-2023.0.0--openmpi-4.1.5/parallel/parallelvars-20210622-1.sh
source /home/issp/materiapps/oneapi_compiler_classic-2023.0.0--openmpi-4.1.5/hphi/hphivars.sh
Expand Down
7 changes: 1 addition & 6 deletions sample/moller/hphi/AFH-chain/2S_2/input.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,9 @@ prologue:
code: |
echo "start"
date
module purge
module load oneapi_compiler/2023.0.0 openmpi/4.1.5-oneapi-2023.0.0-classic
ulimit -s unlimited
source ~/env/conda.sh
conda activate htptools
source /home/issp/materiapps/oneapi_compiler_classic-2023.0.0--openmpi-4.1.5/parallel/parallelvars-20210622-1.sh
source /home/issp/materiapps/oneapi_compiler_classic-2023.0.0--openmpi-4.1.5/hphi/hphivars.sh
Expand Down
2 changes: 1 addition & 1 deletion src/moller/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '1.1-dev'
2 changes: 1 addition & 1 deletion src/moller/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def generate(self, fp):
lines = self.code.splitlines()
lines_new = []
for line in lines:
if re.match(r'(srun|mpirun|mpiexec)', line):
if re.search(r'\b(srun|mpirun|mpiexec)\b', line):
line = re.sub(r'(srun|mpirun|mpiexec)', srun_str, line)

lines_new.append(r' DEBUG "$_work_item: ' + line + '"')
Expand Down

0 comments on commit b2366e3

Please sign in to comment.