Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump globus-compute-sdk from 2.24.0 to 2.25.0 #1397

Merged
merged 1 commit into from
Aug 9, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 7, 2024

Bumps globus-compute-sdk from 2.24.0 to 2.25.0.

Changelog

Sourced from globus-compute-sdk's changelog.

globus-compute-sdk & globus-compute-endpoint v2.25.0

New Functionality ^^^^^^^^^^^^^^^^^

  • Added a new ShellFunction class to support remote execution of commandline strings.

    .. code:: python

    bf = ShellFunction("echo '{message}'")
    future = executor.submit(bf, message="Hello World!")
    shell_result = future.result()  # ShellFunction returns a ShellResult
    print(shell_result.returncode)  # Exitcode
    print(shell_result.cmd)         # Reports the commandline string executed
    print(shell_result.stdout)      # Snippet of stdout captured
    print(shell_result.stderr)      # Snippet of stderr captured
    
  • Adding GlobusMPIEngine with better support for MPI applications. GlobusMPIEngine uses Parsl's MPIExecutor <https://parsl.readthedocs.io/en/stable/stubs/parsl.executors.MPIExecutor.html>_ under the hood to dynamically partition a single batch job to schedule MPI tasks.

    Here's an example endpoint configuration that uses GlobusMPIEngine

    .. code-block:: yaml

    display_name: [email protected] engine: type: GlobusMPIEngine mpi_launcher: srun

    provider:
       ...
    
  • Added a new MPIFunction class to support MPI applications. MPIFunction extends ShellFunction to use an MPI launcher to use a subset of nodes within a batch job to run MPI applications. To partition a batch job, MPIFunction must be sent to an endpoint configured with GlobusMPIEngine. Here is a usage example:

    .. code-block:: python

    from globus_compute_sdk import MPIFunction, Executor

    mpi_func = MPIFunction("hostname") with Executor(endpoint_id=) as ex: ex.resource_specification = { "num_nodes": 2,

... (truncated)

Commits
  • ddf09e8 Bump versions and changelog for release 2.25.0
  • fd87bbd Make python-exec replace the existing process
  • dc89e10 Drop support for Python3.7 (#1615)
  • 9040ae9 Add support for MPIFunctions (#1613)
  • d32306b Disable MPI mode for GlobusComputeEngine
  • 85b6151 Glob recursively in self diagnostic
  • 2ee122a Shell functions (#1593)
  • 3dc7bb8 Convert TaskQueueSubscriber to a thread
  • 60e0e72 Adding GlobusMPIEngine to support MPI applications (#1608)
  • 3f9bee3 Merge adjacent Changed sections in changelog
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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)

Bumps [globus-compute-sdk](https://github.com/globus/globus-compute) from 2.24.0 to 2.25.0.
- [Release notes](https://github.com/globus/globus-compute/releases)
- [Changelog](https://github.com/globus/globus-compute/blob/main/docs/changelog.rst)
- [Commits](globus/globus-compute@2.24.0...2.25.0)

---
updated-dependencies:
- dependency-name: globus-compute-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 7, 2024
@jlnav jlnav merged commit 1257c78 into develop Aug 9, 2024
15 checks passed
@dependabot dependabot bot deleted the dependabot/pip/develop/globus-compute-sdk-2.25.0 branch August 9, 2024 16:05
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