Skip to content

Releases: Quantum-Accelerators/quacc

v0.4.5: Out With the Old; In With the New

14 Dec 05:25
c7dd41a
Compare
Choose a tag to compare

[0.4.5]

Added

  • Added ML interatomic potential recipes

Changed

  • ASE optimization log files and pickle files are written to disk by default
  • Deprecated the old Q-Chem recipes and replaced them with the updated versions

Removed

  • Officially drop support of the Prefect workflow engine

v0.4.4: The ESPRESSO release ☕

11 Dec 03:11
2d6a121
Compare
Choose a tag to compare

Summary

This release introduces core recipes for Quantum ESPRESSO, developed by @tomdemeyere!

Added

  • Added core Quantum ESPRESSO recipes and custom calculator. (@tomdemeyere)
  • Added a new function, quacc.utils.files.copy_decompress_files_from_dir

Changed

  • The copy_files kwarg in most recipes can now include a directory
  • Renamed quacc.utils.files.copy_decompress to quacc.utils.files.copy_decompress_files

Fixed

  • Quacc settings that are paths now have ~/ expanded in most cases

What's Changed

  • style: format code with Black, isort and Prettier by @deepsource-autofix in #1331
  • Move custodian tests by @Andrew-S-Rosen in #1332
  • Add espresso recipes and custom calculator by @tomdemeyere in #1238
  • style: format code with Black, isort and Prettier by @deepsource-autofix in #1333

New Contributors

Full Changelog: v0.4.3...v0.4.4

v0.4.3: The Dask release

10 Dec 07:57
Compare
Choose a tag to compare

[0.4.3]

Added

  • Added preliminary support for the Dask workflow engine via Dask Delayed and Dask Distributed.

Changed

  • Renamed CREATE_UNIQUE_WORKDIR to CREATE_UNIQUE_DIR to better reflect its utility.
  • The default for the SCRATCH_DIR setting is now None instead of ~/.quacc_scratch. In other words, the default is to not use a scratch directory. This should help with onboarding, and the ability to set it as None may be broadly of interest. Setting the SCRATCH_DIR to a given Path will still work as expected.
  • Files are no longer recursively copied from SCRATCH_DIR to RESULTS_DIR. Instead, they are recursively moved. This should speed up I/O operations.

Fixed

  • Fixed a missing phonopy_kwargs keyword argument in quacc.recipes.common.phonons

What's Changed

  • Bump prefect from 2.14.6 to 2.14.9 by @dependabot in #1302
  • Bump emmet-core from 0.74.3 to 0.74.5 by @dependabot in #1300
  • Bump phonopy from 2.20.0 to 2.21.0 by @dependabot in #1301
  • Bump parsl[monitoring] from 2023.11.20 to 2023.11.27 by @dependabot in #1304
  • style: format code with Black, isort and Prettier by @deepsource-autofix in #1314
  • style: format code with Black, isort and Prettier by @deepsource-autofix in #1316
  • style: format code with Black, isort and Prettier by @deepsource-autofix in #1315
  • mv * files from SCRATCH_DIR to RESULTS_DIR instead of cp -r, and make SCRATCH_DIR optional by @Andrew-S-Rosen in #1313
  • refactor: remove unnecessary f-string by @deepsource-autofix in #1318
  • style: format code with Black, isort and Prettier by @deepsource-autofix in #1317
  • Clearer description of path handling by @Andrew-S-Rosen in #1319
  • Add support for the Dask workflow engine by @Andrew-S-Rosen in #1323
  • Simplify Dask tutorial by @Andrew-S-Rosen in #1325
  • Update CHANGELOG.md by @Andrew-S-Rosen in #1329
  • Fix sporadic codecov upload issues by @Andrew-S-Rosen in #1328

Full Changelog: 0.4.2...v0.4.3

v0.4.2

04 Dec 05:05
ffa291a
Compare
Choose a tag to compare

[0.4.2]

Added

  • Added a Jenkins-based test suite that runs tests on HPC resources without mocking for Gaussian, GULP, ORCA, and VASP (minimal)
  • Added a TBLite phonon recipe

Changed

  • Changed the auto_kpts kwarg in the Vasp calculator to pmg_kpts
  • Internal refactoring of recipes to have a separate _base.py module when appropriate
  • Removed the unnecessary Atoms arg from the calc_setup function

Fixed

  • Fixed slow initial import (3 s --> 1 s)
  • Fixed a few broken type hints
  • Fixed functional and basis set strings in Gaussian recipes
  • Uses number of physical cores instead of logical cores as default for molecular DFT recipes

New Contributors

Full Changelog: v0.4.1...0.4.2

v0.4.1

15 Nov 23:10
ef9ec50
Compare
Choose a tag to compare

[0.4.1]

Changed

  • Switched to using the PyPi release of NewtonNet (1.1).
  • NewtonNet recipes don't run a Hessian calculation by default unless needed

Fixed

  • Fixed circular import issue when running Q-Chem calculations.

Removed

  • Removed unsupported qchem_internal_relax_job

v0.4.0

09 Nov 15:05
734846c
Compare
Choose a tag to compare

[0.4.0]

Added

  • Added quacc.recipes.common, including quacc.recipes.common.slabs, quacc.recipes.common.defects, and quacc.recipes.common.phonons
  • Added phonopy schema in quacc.schemas.phonopy
  • Added EMT phonon workflow

Changed

  • The method for specifying swaps to the default calculator arguments in recipes has been overhauled. In place of the previous calc_swaps: dict approach, additional parameters can be specified via the **kwargs. In practice, this means in recipes you can do scf = "diis", max_steps=100 instead of calc_swaps={"scf":"diis", "max_steps":100}, for instance.
  • Moved quacc.runners.calc to quacc.runners.ase
  • Moved quacc.runners.prep to quacc.schemas.prep
  • Reduced code duplication across complex flows

What's Changed

New Contributors

Full Changelog: v0.3.13...v0.4.0

v0.3.13

03 Nov 02:05
b038f11
Compare
Choose a tag to compare

Summary

The ASE hackathon resulted in a lot of changes to the ASE codebase, several of which broke quacc. This version updates quacc to support the new master version of ASE as of 11/2/2023.

v0.3.12

01 Nov 23:40
c0e709b
Compare
Choose a tag to compare

[0.3.12]

Added

  • Added a basic phonon runner in quacc.runners.calc.phonons
  • Added a TBLite phonon recipe phonon_job
  • Added more type hints for input keyword arguments
  • Added the quacc info command-line argument for error reporting

Changed

  • Consolidated VASP INCAR co-pilot settings
  • Internal refactoring of the Q-Chem and VASP calculators

Fixed

  • All Path-based settings have .expanduser() applied

What's Changed

Full Changelog: v0.3.11...v0.3.12

v0.3.11

25 Oct 19:06
ef1f0b7
Compare
Choose a tag to compare

Summary

Improved error messages when calculations fail, highlighting what working directory to look at.

What's Changed

Full Changelog: v0.3.10...v0.3.11

v0.3.10

25 Oct 05:57
66da6f0
Compare
Choose a tag to compare

Summary

Changed

  • DFTB+ MaxSccIterations set to 200 by default
  • SCC errors in DFTB+ relaxations will be reported with higher priority than a relaxation error

What's Changed

  • Better DFTB+ error checking by @Andrew-S-Rosen in #1101
  • style: format code with Black, isort and Prettier by @deepsource-autofix in #1102

Full Changelog: v0.3.9...v0.3.10