Skip to content

Bump mace-torch from 0.3.12 to 0.3.13#385

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/mace-torch-0.3.13
Closed

Bump mace-torch from 0.3.12 to 0.3.13#385
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/mace-torch-0.3.13

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 5, 2025

Bumps mace-torch from 0.3.12 to 0.3.13.

Release notes

Sourced from mace-torch's releases.

v0.3.13

MACE 0.3.13 Release Notes

🚀 LAMMPS Integration Enhancements

  • Added new MLIAP interface for LAMMPS, enabling significantly improved performance and flexibility. (Documentation)
  • Implemented CuEquivariance support in LAMMPS models for GPU acceleration.
  • Added multi-GPU inference support for large-scale molecular dynamics simulations using MPI message passing of intermediate tensors for effecient scaling.
  • Improved timing and profiling capabilities via environment variable controls.
  • New command-line option in create_lammps_model.py to select between libtorch (legacy) and MLIAP formats:
# Convert model to MLIAP format
python -m mace.cli.create_lammps_model model.pt --format=mliap

🧮 Atomic Stresses Computation

  • Added support for computing atomic stresses and atomic virials.
  • Useful for analyzing local stress distributions in materials simulations.
from mace.calculators import mace_mp
from ase import build
Create structure with 10 atoms
atoms = build.bulk("Al", "fcc", a=4.05, cubic=True)
atoms = atoms.repeat((2, 2, 2))
calc = mace_mp(device="cpu", compute_atomic_stresses=True)
atoms.set_calculator(calc)
atoms.get_potential_energy()
stress = atoms.get_stress()
stresses = atoms.get_stresses()
print("Stress tensor:\n", stress.shape)
print("Stresses tensor:\n", stresses.shape)


🗝️ Property Keys System Redesign

  • Reworked the property keys system for improved flexibility and maintainability.
  • Introduced KeySpecification class to manage mappings between data formats.
  • Added DefaultKeys enum to standardize access patterns.
  • Enhanced error reporting when keys are missing.

... (truncated)

Commits
  • b5faaa0 Merge pull request #942 from ACEsuit/develop
  • c75078f Merge pull request #941 from ACEsuit/select_head_device
  • cd11e64 Merge pull request #926 from ACEsuit/develop
  • 5646a98 skip first test foundation on CI
  • 2c0813e try medium model for test foundation
  • 33c0a26 Update test_foundations.py
  • 298e4e5 Merge pull request #931 from ACEsuit/search_head_default
  • 7112c26 Pass map_location=device to select_head.py torch.load
  • 9417f32 Merge pull request #937 from ACEsuit/933-hotfix
  • 6dc0427 fix keyspec being modified inplace
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels May 5, 2025
Bumps [mace-torch](https://github.com/ACEsuit/mace) from 0.3.12 to 0.3.13.
- [Release notes](https://github.com/ACEsuit/mace/releases)
- [Commits](ACEsuit/mace@v0.3.12...v0.3.13)

---
updated-dependencies:
- dependency-name: mace-torch
  dependency-version: 0.3.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/pip/mace-torch-0.3.13 branch from 3765469 to 54c8c9c Compare May 6, 2025 06:46
@naik-aakash
Copy link
Copy Markdown
Collaborator

Closing this as it is addressed via #414

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Jul 12, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/pip/mace-torch-0.3.13 branch July 12, 2025 08:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant