Iterative HPC function development. As many 'first tries' as you need.
Project description
Home of hog ☀️🦫🕳️
Quickstart
Groundhog makes it easy to run, tweak, and re-run python functions on HPC clusters via Globus Compute using simple decorators.
Groundhog automatically manages remote environments (powered by uv)—just update Python versions or dependencies in your script, no SSH needed.
Key concepts:
@hog.function()- Configures a function to run on a Globus Compute endpoint. Decorator kwargs (likeendpoint,account) become the defaultuser_endpoint_config.@hog.harness()- Marks a local entry point that orchestrates remote calls via.remote()or.submit().- The desired remote Python environment (version and dependencies) is specified alongside your code via PEP 723 metadata.
# /// script
# requires-python = ">=3.12,<3.13"
# dependencies = [
# numpy,
# ]
#
# [tool.hog.tutorial] # Globus Compute Tutorial Endpoint
# endpoint = "4b116d3c-1703-4f8f-9f6f-39921e5864df"
#
# ///
import groundhog_hpc as hog
@hog.function(endpoint='tutorial') # points to [tool.hog.tutorial] config
def compute(x: int) -> int:
import numpy as np
return int(np.sum(range(x)))
@hog.harness()
def main():
result = compute.remote(100)
print(result)
Run with: hog run myscript.py main
see also: examples
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file groundhog_hpc-0.7.0.tar.gz.
File metadata
- Download URL: groundhog_hpc-0.7.0.tar.gz
- Upload date:
- Size: 37.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.23 {"installer":{"name":"uv","version":"0.9.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2eee425c1db66d4ada54d4d2fb5d32a366ff3b723c6cc02ba46200e44efefb4d
|
|
| MD5 |
05f7255ce56a517e60179b13bfa1a6c3
|
|
| BLAKE2b-256 |
bec94a85abc4b61f5c5ae6c364186d2cf76cc29b94916f819e8b3da84647b905
|
File details
Details for the file groundhog_hpc-0.7.0-py3-none-any.whl.
File metadata
- Download URL: groundhog_hpc-0.7.0-py3-none-any.whl
- Upload date:
- Size: 52.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.23 {"installer":{"name":"uv","version":"0.9.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9fd932587ad92fa8258f2f3bbf572d13c6d30aef680936a449b527960d697a4
|
|
| MD5 |
399b7c43a887d05bc1093b48ce9e4a31
|
|
| BLAKE2b-256 |
e5fde91e4e115d63f2ee113d10eb3a50ead163093af8738f42a78499df834480
|