Scientific Workflow Intermediate Representation Language
Project description
SWIRL: Scientific Workflow Intermediate Representation Language
SWIRL is a low-level intermediate representation language for distributed scientific workflows. Unlike other product-agnostic workflow languages, SWIRL is not intended for human interaction but serves as a low-level compilation target for distributed workflow execution plans. It models the execution plan of a location-aware workflow graph as a distributed system with send/receive communication primitives. The optimised SWIRL representation can then be compiled into one or more self-contained executable bundles, making it adaptable to specific execution environments and embracing heterogeneity. This repository contains the reference SWIRL Compiler toolchain, called swirlc
, written in Python 3 and relying on the ANTLR parser generator.
Install
PyPI
The swirlc
package is available on PyPi, so you can install it using pip.
pip install swirlc
Please note that the SWIRL compiler requires python >= 3.8
. Then you can use it through the swirlc
CLI.
Docker
The SWIRL Docker image is available on Docker Hub. The script below gives an example of swirlc
CLI invocation in a Docker container
mkdir -p SWIRL
docker run \
--user $(id -u):$(id -g) \
--volume $(pwd):/data \
--workdir /data \
alphaunito/swirlc:latest \
swirlc \
COMMAND \
[OPTION]
Use SWIRL
The swirlc
CLI offers two primary functionalities: translate
and compile
. The former translates a distributed workflow written in one of the supported high-level languages into a low-level SWIRL intermediate representation. The latter compiles a SWIRL representation into a target executable bundle.
Translate
The swirlc translate
command can be used to translate an existing, high-level workflow representation into a SWIRL low-level intermediate representation, usually stored in a *.swirl
file, and a *.yml
file containing a set of metadata. As an example, the following command can be used to generate a SWIRL representation from a DAX workflow generated by the Pegasus WMS:
swirlc translate --language dax [DAX_DIRECTORY]
Note that the DAX_DIRECTORY
must contain four files: replica.yml
, sites.yml
, transformations.yml
and workflow.yml
.
Compile
The swirlc compile
command can be used to create executable traces in different programming languages from a SWIRL representation. The result of the command is an executable bundle ready to run on highly-distributed execution environments (e.g., HPC, Cloud, or Edge). As an example, the following command can be used to generate a Python-based executable bundle from a SWIRL_FILE
and a METADATA_FILE
:
swirlc compile [SWIRL_FILE] [METADATA_FILE]
Note that all the target locations need to have the Python interpreter installed.
SWIRL Team
Iacopo Colonnelli iacopo.colonnelli@unito.it (Designer and maintainer)
Doriana Medić doriana.medic@unito.it (Designer and maintainer)
Alberto Mulone alberto.mulone@unito.it (Maintainer)
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
File details
Details for the file swirlc-0.0.1.tar.gz
.
File metadata
- Download URL: swirlc-0.0.1.tar.gz
- Upload date:
- Size: 30.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcbda5786f0e74a85da5c8f678c7d34af5d03358cf31be5d696edf78d2c496fe |
|
MD5 | 02fb04e2990740ddc22d062033f83052 |
|
BLAKE2b-256 | 81911f339d7bfb7df094b7cfe0a361ee1da903a91be060e8f0334f5de58d290b |
File details
Details for the file swirlc-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: swirlc-0.0.1-py3-none-any.whl
- Upload date:
- Size: 33.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4982bffc10ac768fd60c9b4999f09e6c776a72077984ee6d622ad6605e1a461c |
|
MD5 | 9950365259f34c70877a4bc57cebe4f1 |
|
BLAKE2b-256 | 9b4b81ec2f7922b7484a7bb46164d15f4c015fa446172adc19dc272ba59b5fa4 |