Skip to content

Commit 061098f

Browse files
committed
Merge remote-tracking branch 'origin/devel' into copilot/fix-4939
1 parent c9342d4 commit 061098f

File tree

261 files changed

+6869
-4588
lines changed

Some content is hidden

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

261 files changed

+6869
-4588
lines changed

.devcontainer/build_cxx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cmake -D ENABLE_TENSORFLOW=ON \
1313
-D ENABLE_PYTORCH=ON \
1414
-D ENABLE_PADDLE=ON \
1515
-D CMAKE_INSTALL_PREFIX=${SCRIPT_PATH}/../dp/ \
16-
-D LAMMPS_VERSION=stable_22Jul2025 \
16+
-D LAMMPS_VERSION=stable_22Jul2025_update1 \
1717
-D CMAKE_BUILD_TYPE=Debug \
1818
-D BUILD_TESTING:BOOL=TRUE \
1919
-D TENSORFLOW_ROOT=${TENSORFLOW_ROOT} \

.github/workflows/build_cc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
dp_variant: clang
3131
steps:
3232
- uses: actions/checkout@v5
33-
- uses: actions/setup-python@v5
33+
- uses: actions/setup-python@v6
3434
with:
3535
python-version: '3.11'
3636
- uses: lukka/get-cmake@latest

.github/workflows/build_wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
path: dist/packages
171171
pattern: cibw-*
172172
merge-multiple: true
173-
- uses: actions/setup-python@v5
173+
- uses: actions/setup-python@v6
174174
name: Install Python
175175
with:
176176
python-version: '3.11'

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Checkout repository
3333
uses: actions/checkout@v5
34-
- uses: actions/setup-python@v5
34+
- uses: actions/setup-python@v6
3535
with:
3636
python-version: '3.11'
3737
cache: 'pip'

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
# If you do not check out your code, Copilot will do this for you.
3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
- name: Set up Python
36-
uses: actions/setup-python@v5
36+
uses: actions/setup-python@v6
3737
with:
3838
python-version: "3.10"
3939

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
pull-requests: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/labeler@v5
12+
- uses: actions/labeler@v6
1313
with:
1414
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/test_cc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
check_memleak: [true, false]
2121
steps:
2222
- uses: actions/checkout@v5
23-
- uses: actions/setup-python@v5
23+
- uses: actions/setup-python@v6
2424
with:
2525
python-version: '3.11'
2626
cache: 'pip'

.github/workflows/test_cuda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Make sudo and git work
2727
run: apt-get update && apt-get install -y sudo git
2828
- uses: actions/checkout@v5
29-
- uses: actions/setup-python@v5
29+
- uses: actions/setup-python@v6
3030
with:
3131
python-version: '3.11'
3232
# cache: 'pip'

.github/workflows/test_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- uses: actions/checkout@v5
26-
- uses: actions/setup-python@v5
26+
- uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python }}
2929
- run: python -m pip install -U uv

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,20 @@ buildcxx/
5151
node_modules/
5252
*.bib.original
5353

54+
# Coverage files
55+
.coverage
56+
.coverage.*
57+
5458
# Test output files (temporary)
5559
test_dp_test/
5660
test_dp_test_*.out
5761
*_detail.out
62+
63+
# Training and model output files
64+
*.pth
65+
*.ckpt*
66+
checkpoint
67+
lcurve.out
68+
out.json
69+
input_v2_compat.json
70+
frozen_model.*

0 commit comments

Comments
 (0)