Skip to content

v0.69.0

Choose a tag to compare

@github-actions github-actions released this 08 Jan 11:26
· 372 commits to main since this release

πŸš€ Focus on HPC – Enhanced Performance & Stability!

This release brings significant improvements to HPC support, making PyMAPDL even more efficient in high-performance computing environments. For a deep dive, check out the updated HPC documentation.

πŸ”₯ Highlights

  • ⚑ Seamless MPI Integration on SLURM Clusters – Tighter support for distributed computing.
    Details ➑️ #3500

  • πŸš€ Improved HPC Launcher Support – Smoother launching experience on HPC setups.
    Details ➑️ #3497

  • πŸ“– Enhanced HPC Documentation – More clarity, better guidance!
    Details ➑️ #3506

  • πŸ“‚ Redirect MAPDL Output to a File – Capture terminal output effortlessly!
    Details ➑️ #3596

    Example usage:

    from ansys.mapdl.core import launch_mapdl
    import os
    
    mapdl = launch_mapdl(mapdl_output="apdl.out")
    # create a file with the console output
    assert os.path.exists("apdl.out")
    with open("apdl.out", "r") as fid:
        assert "START GRPC SERVER" in fid.read()
  • πŸ› οΈ Improved Internal CI/CD Testing – Ensuring stability across the board.

  • πŸ› Bug Fixes & Enhancements – General improvements for a better user experience.

Thanks for using PyMAPDL! πŸš€

What's Changed

New Features

Bug fixes or behavior changes

Documentation

Maintenance

Full Changelog: v0.68.6...v0.69.0