Skip to content

Commit 977bec1

Browse files
committed
v4.0.0
1 parent cadc2e9 commit 977bec1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build_containers.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ while [[ $# -gt 0 ]]; do
4040
esac
4141
done
4242

43-
PSIFLOW_VERSION="v4.0.0-rc1"
44-
CCTOOLS_VERSION=7.11.1
43+
PSIFLOW_VERSION="v4.0.0"
44+
CCTOOLS_VERSION=7.14.0
4545
PLUMED_VERSION=2.9.0
46-
GPU_LIBRARIES=("rocm5.6" "cu118")
46+
GPU_LIBRARIES=("rocm6.2" "cu118")
4747

4848
# build model
4949
if [ "$psiflow" = "true" ]; then

psiflow/execution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def from_config(
514514
address=htex_address,
515515
working_dir=str(path / "default_htex"),
516516
cores_per_worker=1,
517-
max_workers=default_threads,
517+
max_workers_per_node=default_threads,
518518
cpu_affinity="none",
519519
provider=LocalProvider(launcher=launcher, init_blocks=0), # noqa: F405
520520
)

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "psiflow"
8-
version = "4.0.0-rc0"
8+
version = "4.0.0"
99
description = "Library for developing interatomic potentials"
1010
readme = "README.md"
1111
requires-python = ">=3.10"
1212
dependencies = [
1313
"ase >= 3.23.0",
1414
"pyyaml>=6.0",
1515
"numpy>=1.22.3,<2",
16-
"parsl @ git+https://github.com/parsl/parsl.git@21362b5",
16+
"parsl >= 2024.12.16",
1717
"prettytable",
1818
"psutil",
19-
"cp2k-input-tools @ git+https://github.com/cp2k/cp2k-input-tools", # need 2024.1
19+
"cp2k-input-tools @ git+https://github.com/cp2k/cp2k-input-tools.git@3b9929735dcb3c8c0620a548b1fe20efecbad077", # need 2024.1
2020
"pytimeparse",
2121
]
2222

0 commit comments

Comments
 (0)