Skip to content

fix(jax): add hessian energy loss - #5607

Merged
njzjz merged 16 commits into
deepmodeling:masterfrom
njzjz:fix/dpmodel-energy-hessian-loss
Aug 1, 2026
Merged

fix(jax): add hessian energy loss#5607
njzjz merged 16 commits into
deepmodeling:masterfrom
njzjz:fix/dpmodel-energy-hessian-loss

Conversation

@njzjz

@njzjz njzjz commented Jun 29, 2026

Copy link
Copy Markdown
Member

Summary

  • add Hessian prefactors directly to dpmodel EnergyLoss instead of introducing a separate loss class
  • add Hessian label requirements, loss/RMSE reporting, and serialization fields
  • enable Hessian outputs in the JAX trainer when the Hessian loss is configured

Tests

  • source venv/bin/activate && pytest source/tests/common/dpmodel/test_loss_ener.py -q
  • source venv/bin/activate && ruff check .
  • source venv/bin/activate && ruff format .

Summary by CodeRabbit

  • New Features
    • Optional energy Hessian-loss supervision with configurable scheduled weighting and Hessian RMSE/MAE reporting.
    • Trainer and model now automatically activate Hessian outputs based on the loss/data contract, including Hessian tensor creation for mixed/padded batches.
  • Bug Fixes
    • Hessian activation is idempotent to prevent repeated reconfiguration.
    • Clearer runtime validation for unsupported Hessian + huber combinations.
  • Tests
    • Expanded Hessian loss, serialization (v4→v5 backward compatible), padding/ghost handling, and MAE/L2 dispatch coverage across NumPy and PyTorch.
  • Documentation
    • Updated Hessian training docs for JAX and clarified ener/legacy ener_hess alias behavior.

@dosubot dosubot Bot added the enhancement label Jun 29, 2026
@njzjz
njzjz force-pushed the fix/dpmodel-energy-hessian-loss branch from b56a253 to ae453b0 Compare June 29, 2026 18:24
@coderabbitai

coderabbitai Bot commented Jun 29, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

EnergyLoss and EnergyStdLoss now support optional Hessian supervision with masked reductions, metrics, serialization, and padded mixed-system data. PyTorch and JAX trainers enable Hessian outputs from declared requirements, with expanded compatibility tests and updated documentation.

Changes

Hessian Loss Feature

Layer / File(s) Summary
Hessian loss contracts and computation
deepmd/dpmodel/loss/ener.py, deepmd/pt/loss/ener.py, deepmd/pd/loss/ener.py, deepmd/dpmodel/loss/reduction.py, deepmd/*/model/.../ener_model.py
Adds scheduled Hessian loss computation, masked reductions, metrics, label requirements, serialization compatibility, legacy-loss compatibility, and idempotent Hessian enabling.
Hessian data shape propagation
deepmd/utils/data_system.py
Propagates special_shape="hessian" and pads mixed-system Hessian blocks into square per-frame arrays.
PyTorch training wiring
deepmd/pt/train/training.py
Derives Hessian model activation from loss data requirements and removes prefactor-based model detection.
JAX and legacy training wiring
deepmd/jax/train/trainer.py, deepmd/pd/train/training.py
Enables Hessian outputs from declared requirements and broadens legacy Hessian activation semantics.
Validation and documentation
source/tests/common/dpmodel/*, source/tests/common/test_data_system_hessian.py, source/tests/pt/test_loss.py, source/tests/pd/test_loss.py, doc/model/train-energy-hessian.md
Adds coverage for loss behavior, masking, padding, serialization, dispatch, mixed batches, backend compatibility, and JAX workflows.

Estimated code review effort: 4 (Complex) | ~60 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Trainer
  participant EnergyModel
  participant DataSystem
  participant EnergyLoss
  Trainer->>EnergyLoss: read Hessian data requirement
  Trainer->>EnergyModel: enable Hessian outputs
  DataSystem->>EnergyLoss: provide padded Hessian labels
  EnergyModel->>EnergyLoss: provide Hessian predictions
  EnergyLoss->>EnergyLoss: compute weighted masked loss and metrics
Loading

Possibly related PRs

Suggested reviewers: copilot, wanghan-iapcm, iprozd

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 53.70% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title is concise and accurately highlights the main JAX Hessian energy-loss addition in the changeset.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches 💡 1
🛠️ Fix failing CI checks 💡
  • Fix failing CI checks
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@deepmd/dpmodel/loss/ener.py`:
- Around line 565-574: The Hessian entry in `DPTrainer.data_requirements` is
advertising the wrong tensor shape for `label_requirement`. Update the
`DataRequirementItem("hessian", ...)` definition in `ener.py` so it matches the
real on-disk Hessian layout used by the new loss path and tests, rather than the
current atomic `ndof=1` schema. If the dataset loader cannot yet consume the
full Hessian tensor, add the loader support first and keep `has_h` gated until
the contract is consistent.

In `@deepmd/jax/train/trainer.py`:
- Around line 120-121: The Hessian enablement in Trainer setup is unguarded, so
`self.model.enable_hessian()` can break for model/loss combinations like the JAX
`zbl` path that do not implement it. Update the `Trainer` logic to check that
the model actually exposes `enable_hessian` before calling it, using the
existing `self.loss.has_h` condition as the trigger and keeping the current
hessian tensor handling unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 23778160-e75a-4d2b-be1f-2babb0b6710f

📥 Commits

Reviewing files that changed from the base of the PR and between 1550599 and b56a253.

📒 Files selected for processing (3)
  • deepmd/dpmodel/loss/ener.py
  • deepmd/jax/train/trainer.py
  • source/tests/common/dpmodel/test_loss_ener.py

Comment thread deepmd/dpmodel/loss/ener.py
Comment thread deepmd/jax/train/trainer.py Outdated
@njzjz
njzjz marked this pull request as draft June 30, 2026 05:42
@njzjz

njzjz commented Jul 18, 2026

Copy link
Copy Markdown
Member Author

Possible reviewers based on changed lines, exact file history, and exact-file review history:

  • @wanghan-iapcm — 15 commits on changed files; 26 reviews on exact changed files (deepmd/dpmodel/loss/ener.py, deepmd/jax/train/trainer.py, deepmd/utils/data.py, deepmd/utils/data_system.py, source/tests/common/dpmodel/test_loss_ener.py).
  • @OutisLi — 18 reviews on exact changed files (deepmd/dpmodel/loss/ener.py, deepmd/jax/train/trainer.py).

No review request was made automatically.

Coding agent: Codex
Codex version: codex-cli 0.144.4
Model: gpt-5.6-sol
Reasoning effort: xhigh

Adapt Hessian loss support to the multi-task JAX trainer by enabling Hessian outputs per task and exposing the transformed Hessian through the shared model-evaluation path.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.4
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
@njzjz
njzjz requested review from OutisLi and wanghan-iapcm and removed request for OutisLi and wanghan-iapcm July 18, 2026 07:24
Merge the latest master changes and retain the existing serialization and data-requirement schemas when Hessian loss is disabled.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.4
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
@codecov

codecov Bot commented Jul 20, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 94.36620% with 12 lines in your changes missing coverage. Please review.
✅ Project coverage is 79.21%. Comparing base (2e39220) to head (ac9583a).
⚠️ Report is 10 commits behind head on master.

Files with missing lines Patch % Lines
deepmd/jax/train/trainer.py 70.00% 3 Missing ⚠️
deepmd/pd/loss/ener.py 87.50% 3 Missing ⚠️
deepmd/pt/train/training.py 86.36% 3 Missing ⚠️
deepmd/pt/loss/ener.py 95.12% 2 Missing ⚠️
deepmd/utils/data.py 98.03% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #5607      +/-   ##
==========================================
- Coverage   79.31%   79.21%   -0.11%     
==========================================
  Files        1070     1072       +2     
  Lines      124601   125020     +419     
  Branches     4532     4536       +4     
==========================================
+ Hits        98831    99038     +207     
- Misses      24150    24359     +209     
- Partials     1620     1623       +3     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Exclude Hessian rows and columns associated with placeholder atoms from the training MSE and the MAE/RMSE denominators while preserving the unmasked reduction.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.4
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
Keep the energy loss as the canonical schema for Hessian prefactors, normalize the legacy ener_hess type to ener, and update documentation links to the canonical loss fields.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.4
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
@github-actions github-actions Bot added the Docs label Jul 21, 2026
Move Hessian supervision into EnergyStdLoss, keep EnergyHessianStdLoss and ener_hess as compatibility aliases, enable Hessian when either prefactor is active, and apply the shared placeholder-pair mask to PT metrics and training loss.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.4
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
Coding-Agent: Codex
Codex-Version: codex-cli 0.144.6
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
@njzjz
njzjz marked this pull request as ready for review July 24, 2026 15:40
Copilot AI review requested due to automatic review settings July 24, 2026 15:40
@dosubot dosubot Bot added the new feature label Jul 24, 2026
@njzjz
njzjz requested review from wanghan-iapcm and removed request for Copilot July 24, 2026 15:40

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@deepmd/pt/loss/ener.py`:
- Around line 789-819: Update the Hessian block in the loss computation to
branch on self.loss_func like the energy, force, virial, and atom-energy terms:
use the squared residual for "mse", absolute residual for "mae", and raise
NotImplementedError for unsupported values. Apply the selected objective to loss
+= pref_h * ... while preserving the existing display metrics and masking
behavior.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 5bc53c5d-25cd-410a-af3b-84cdcb879872

📥 Commits

Reviewing files that changed from the base of the PR and between ae453b0 and d57fe96.

📒 Files selected for processing (7)
  • deepmd/dpmodel/loss/ener.py
  • deepmd/dpmodel/loss/reduction.py
  • deepmd/dpmodel/model/ener_model.py
  • deepmd/jax/train/trainer.py
  • deepmd/pt/loss/ener.py
  • deepmd/pt/model/model/ener_model.py
  • deepmd/pt/train/training.py
🚧 Files skipped from review as they are similar to previous changes (1)
  • deepmd/dpmodel/loss/ener.py

Comment thread deepmd/pt/loss/ener.py

@wanghan-iapcm wanghan-iapcm left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Folding Hessian supervision into the shared EnergyLoss is the right call, and inverting the control flow so the loss's label_requirement drives enable_hessian() is a much better contract than the trainer sniffing start_pref_h. I checked masked_pair_mean numerically rather than by eye: the pair mask really is the outer product of the per-atom mask, the denominator is (3*n_real)**2, an all-padding frame returns a neutral 0.0, and it reduces exactly to mean under an all-ones mask. The enable_hessian() idempotency guards are correct on both backends, and with both prefs left at 0 the whole thing is inert.

Two things I'd like resolved before this goes in, both inline.

Non-blocking notes:

  1. @version stays at 4 in both serialize() implementations while two new fields are added, and check_version_compatibility(version, 4, 1) is unchanged. Because both __init__s end in **kwargs, an older deepmd-kit reading a Hessian-enabled dict passes the version gate and then silently discards start_pref_h/limit_pref_h - the model loads with no Hessian term and no error. Worth a bump plus an explicit 4-to-5 branch.

  2. has_h picks up or inference, which is consistent with how has_e/has_f/has_v/has_ae/has_pf already behave - but every one of those labels is linear in N, whereas the Hessian is 9N**2. dp change-bias builds the loss with inference=True purely to harvest label_requirement, so it now requests a Hessian it never uses, and _load_single_data zero-fills it at roughly 72 MB per frame for a 1000-atom system (vs 24 KB for force). The convention is fine; it just doesn't extend safely to a quadratic label. Excluding the Hessian item when has_h is true only because of inference would fix it.

  3. deepmd/pd is untouched, so after this lands the same input.json trains a Hessian term on pt/jax/dpmodel but not on pd, which keeps the old AND semantics. Related: alias=["ener_hess"] makes type: ener_hess a valid input for the first time, and it now normalizes to ener and reaches pd's un-audited path with no pd test.

  4. doc/model/train-energy-hessian.md still advertises PyTorch only, though this PR wires and tests JAX end-to-end.

  5. The and -> or change means an existing start_pref_h: 100, limit_pref_h: 0 config now trains with an annealed Hessian term where it previously trained with none. I think the new behaviour is right - argcheck's shared start_pref() text has always said the term is ignored only when both are zero, so the old AND was the outlier - but it changes results for existing configs silently and deserves a release note.

Comment thread deepmd/pt/loss/ener.py
Comment thread deepmd/dpmodel/loss/ener.py
Copilot AI review requested due to automatic review settings July 30, 2026 03:36

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@njzjz
njzjz requested a review from wanghan-iapcm July 30, 2026 03:41

@wanghan-iapcm wanghan-iapcm left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Both blocking items are fixed, and I verified them at a1ed51d2a rather than from the replies.

The Hessian term now dispatches on loss_func in both backends (dpmodel, pt), with has_h added to the Huber guard in both constructors. The _merge_batch_data branch is in the right place -- ahead of the atomic/non-atomic split, embedding each frame's 3N_i x 3N_i block in the top-left of the padded square (data_system.py).

The regression tests genuinely fail pre-fix, which is what I wanted to see. test_mae_loss_func_uses_l1_for_the_hessian zeroes every prefactor except pref_h and uses a constant residual of 10, so the old code contributes 100 where it asserts 10, and it cross-checks that the mse config still gives 100. test_data_system_hessian.py goes through the real loader with 2- and 3-atom systems, so the old np.concatenate hits (1, 36) against (1, 81). The unknown-loss_func and use_huber cases are covered in both backends. Good coverage of the exact intersections that were missing.

Two of my earlier non-blocking notes are still open. Neither blocks this, but flagging that they were not answered either way:

  1. @version is still 4 in both serialize() implementations (dpmodel, pt) while start_pref_h/limit_pref_h are now emitted conditionally, and check_version_compatibility(version, 4, 1) is unchanged. Since both __init__s end in **kwargs, an older deepmd-kit reading a Hessian-enabled dict passes the version gate and then silently drops both fields -- the model loads with no Hessian term and no error. This is the case the repo's serialization-version discipline is meant to catch, so a bump plus an explicit 4-to-5 branch would be worth doing before or shortly after this lands.

  2. pt/loss/ener.py#L166 still reads self.has_h = (start_pref_h != 0.0 or limit_pref_h != 0.0) or inference. dp change-bias constructs the loss with inference=True only to harvest label_requirement, so it now requests a Hessian it never uses and zero-fills roughly 9N^2 per frame -- about 72 MB per frame at 1000 atoms, against 24 KB for force. The convention matches the other has_* flags; it just does not extend safely to a quadratic label.

Thanks for the doc cleanup to the loss[ener] references as well.

Address Hessian serialization compatibility, avoid quadratic change-bias labels, align Paddle activation, and document JAX support.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.6
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
Copilot AI review requested due to automatic review settings July 30, 2026 14:04

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@deepmd/pd/loss/ener.py`:
- Around line 652-654: In the initializer after assigning `self.has_h`, reject
the unsupported combination by checking `self.use_huber` together with
`self.has_h` and raising the established `RuntimeError` used by the dpmodel and
PyTorch implementations. Keep the existing endpoint activation and inference
logic unchanged.
- Around line 706-710: Update EnergyHessianStdLoss.forward() to mask padded
Hessian atom pairs along both atom axes before flattening and reducing. Use the
Paddle equivalent of masked_pair_mean, matching the dpmodel and PyTorch
implementations, so only valid Hessian entries contribute to the loss and
rmse_h.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 6fdcf074-92d1-4643-95f6-54a66925dc31

📥 Commits

Reviewing files that changed from the base of the PR and between a663f92 and 4d667b2.

📒 Files selected for processing (8)
  • deepmd/dpmodel/loss/ener.py
  • deepmd/pd/loss/ener.py
  • deepmd/pd/train/training.py
  • deepmd/pt/loss/ener.py
  • doc/model/train-energy-hessian.md
  • source/tests/common/dpmodel/test_loss_ener.py
  • source/tests/pd/test_loss.py
  • source/tests/pt/test_loss.py
🚧 Files skipped from review as they are similar to previous changes (1)
  • doc/model/train-energy-hessian.md

Comment thread deepmd/pd/loss/ener.py
Comment thread deepmd/pd/loss/ener.py
Resolve the energy-loss argument conflict by retaining the ener_hess alias and master’s backend support documentation.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.6
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
Copilot AI review requested due to automatic review settings July 30, 2026 14:12

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@njzjz

njzjz commented Jul 30, 2026

Copy link
Copy Markdown
Member Author

@wanghan-iapcm Addressed the remaining non-blocking notes in 4d667b2 and resolved the latest master conflict in eb42bec:

  • Hessian-bearing energy-loss payloads now use serialization version 5, while ordinary energy losses remain version 4 for compatibility. Loading versions 1–4 explicitly defaults the Hessian prefactors to zero.
  • An inference-only PyTorch loss no longer requests the quadratic Hessian label, so dp change-bias avoids allocating an unused 9N² zero array.
  • Paddle now uses the same OR activation semantics for Hessian schedules, accepts the legacy ener_hess alias, and declares the full Hessian shape contract.
  • The Hessian documentation now covers JAX training, fine-tuning, testing, freezing, and the one-zero-prefactor behavior change.

Validation after merging current master: 20 focused loss, serialization, argument-schema, and JAX tests passed; the complete PyTorch change-bias scenario passed; ruff format . and ruff check . passed. A Paddle regression test is included, but Paddle is not installed in the local environment.

Coding agent: Codex
Codex version: codex-cli 0.144.6
Model: gpt-5.6-sol
Reasoning effort: xhigh

Reject unsupported Huber Hessian supervision and normalize Hessian MSE/MAE over real-real Cartesian pairs in mixed-system batches.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.6
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
Copilot AI review requested due to automatic review settings July 31, 2026 05:42

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@njzjz
njzjz enabled auto-merge July 31, 2026 07:01
@njzjz
njzjz added this pull request to the merge queue Jul 31, 2026
@njzjz
njzjz removed this pull request from the merge queue due to a manual request Jul 31, 2026
Construct PyTorch Hessian test inputs on the configured backend device so CUDA assertions compare colocated tensors.

Coding-Agent: Codex
Codex-Version: codex-cli 0.144.6
Model: gpt-5.6-sol
Reasoning-Effort: xhigh
Copilot AI review requested due to automatic review settings July 31, 2026 14:19

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

Copilot AI review requested due to automatic review settings July 31, 2026 14:19

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@njzjz njzjz added the Test CUDA Trigger test CUDA workflow label Jul 31, 2026
@github-actions github-actions Bot removed the Test CUDA Trigger test CUDA workflow label Jul 31, 2026
@njzjz
njzjz added this pull request to the merge queue Jul 31, 2026
Merged via the queue into deepmodeling:master with commit cc689a7 Aug 1, 2026
59 checks passed
@njzjz
njzjz deleted the fix/dpmodel-energy-hessian-loss branch August 1, 2026 03:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants