Skip to main content

CLIO Core

A Comprehensive Platform for Context Management in Scientific Computing

Overview · Installation · Components · Quickstart · Documentation · Contributing


Project Site License IoWarp GRC codecov

Overview

CLIO Core is a unified framework that integrates multiple high-performance components for context management, data transfer, and scientific computing. CLIO Core enables developers to build efficient data processing pipelines for HPC, storage systems, and near-data computing applications.

It provides:

  • High-performance context management for computational contexts and data transformations.
  • Heterogeneous-aware I/O with multi-tiered, dynamic buffering.
  • A modular runtime with dynamically loadable processing modules.
  • Shared-memory data structures that work across host, CUDA, and ROCm.
  • Distributed-by-construction scaling from single node to clusters.

Architecture

┌──────────────────────────────────────────────────────────────┐
│                      Applications                            │
│          (Scientific Workflows, HPC, Storage Systems)        │
└──────────────────────────────────────────────────────────────┘
                              │
        ┌─────────────────────┼─────────────────────┐
        │                     │                     │
┌───────────────┐   ┌──────────────────┐   ┌────────────────┐
│   Context     │   │    Context       │   │   Context      │
│  Exploration  │   │  Assimilation    │   │   Transfer     │
│    Engine     │   │     Engine       │   │    Engine      │
└───────────────┘   └──────────────────┘   └────────────────┘
        │                     │                     │
        └─────────────────────┼─────────────────────┘
                              │
                    ┌─────────────────┐
                    │  CLIO Runtime   │
                    │  (Module System)│
                    └─────────────────┘
                              │
                ┌─────────────────────────┐
                │  Context Transport      │
                │  Primitives             │
                │  (Shared Memory & IPC)  │
                └─────────────────────────┘

Installation

Pip (recommended)

The pip wheel ships a portable, self-contained build with all dependencies statically linked. No system installs are required beyond glibc and Python 3.10+.

pip install iowarp-core

The wheel includes the CLIO runtime, the clio_run CLI, the CTE, CAE, and CEE engines, and the clio_cee Python bindings. A default configuration is seeded at ~/.clio/clio.yaml on first import.

Extra features

The pip wheel covers the common case. Build from source if you need any of:

  • NVIDIA GPU (CUDA) or AMD GPU (ROCm) acceleration
  • MPI for distributed multi-node deployment
  • HDF5 / ADIOS2 adapters
  • FUSE adapter
  • Compression backends (LibPressio, Blosc, etc.)
  • Custom ChiMods built against the C++ headers
  • Sanitizer or debug builds
git clone --recurse-submodules https://github.com/iowarp/clio-core.git
cd clio-core

# Common presets: release, debug, cuda-release, rocm-release
cmake --preset=release
cmake --build build -j"$(nproc)"
sudo cmake --install build

For the per-feature apt / dnf dependency list and the complete CLIO_*_ENABLE_* flag checklist, see INSTALL.md. Other install methods (Conda, Docker, Spack) are documented in docs/getting-started/installation.

Components

Component Location Purpose
Context Transport Primitives context-transport-primitives/ Shared-memory containers, allocators, sync primitives, networking (ZMQ / libfabric / Thallium). GPU-aware (CUDA, ROCm).
CLIO Runtime context-runtime/ Coroutine-based modular runtime (< 10 µs task latency). Hosts ChiMods and provides admin + bdev modules.
Context Transfer Engine context-transfer-engine/ Multi-tiered, heterogeneous-aware I/O buffering. Tag + blob storage with adapters for POSIX, HDF5 (VFD/VOL), ADIOS2, MPI-IO, FUSE3, GDS.
Context Assimilation Engine context-assimilation-engine/ OMNI-YAML-driven data ingestion (binary, HDF5, Globus) into CTE.
Context Exploration Engine context-exploration-engine/ High-level C++ and Python (clio_cee) API for bundling, querying, and retrieving data. Includes an MCP server for AI agents.

Quickstart

Start the runtime

Installation seeds a default configuration at ~/.clio/clio.yaml, so the runtime works out of the box:

clio_run start          # foreground
clio_run start &        # background

To override the configuration, point CLIO_SERVER_CONF at your own YAML file:

export CLIO_SERVER_CONF=/path/to/my_config.yaml
clio_run start

FUSE filesystem

clio_cte_fuse exposes the Context Transfer Engine as a POSIX filesystem, so unmodified applications read and write IOWarp-managed data through ordinary file I/O. The wheel ships this binary on Linux and Windows; macOS wheels do not (macOS has no FUSE3 API).

1. Install the FUSE runtime. libfuse3 is a system dependency and is deliberately not bundled in the wheel, so install your distribution's package:

sudo apt install fuse3 libfuse3-3      # Debian / Ubuntu
sudo dnf install fuse3 fuse3-libs      # Fedora / RHEL

On Windows, install WinFsp instead. The clio_cte_fuse console script prepends WinFsp's bin directory to PATH itself, so winfsp-x64.dll resolves without a system-wide PATH edit.

2. Mount. Start the runtime, then point the daemon at a mountpoint. The daemon create-or-binds the filesystem pool and the CTE pool underneath it, so no separate compose step is required:

clio_run start &
mkdir -p ~/clio-mnt
CLIO_WITH_RUNTIME=0 clio_cte_fuse ~/clio-mnt -f

CLIO_WITH_RUNTIME=0 attaches to the runtime you just started rather than spawning an embedded one — without it the daemon brings up its own runtime and the data will not be visible to other clients. -f keeps the daemon in the foreground, which is the configuration CI exercises. Every remaining argument is handed to fuse_main, so standard libfuse options apply (-o allow_other, -d for protocol tracing). On Windows the mountpoint is a drive letter: clio_cte_fuse Z:.

The mount then behaves like any other filesystem:

cp big_input.h5 ~/clio-mnt/
python analysis.py ~/clio-mnt/big_input.h5

3. Unmount:

fusermount3 -u ~/clio-mnt      # or: fusermount -u ~/clio-mnt

To size the storage tiers explicitly instead of taking the defaults, compose a CTE pool before mounting — see context-transfer-engine/test/integration/fuse-manual/cte_compose.yaml for a working single-tier example:

clio_run compose start my_cte.yaml

Two semantics worth knowing: writes are write-through, so each write() reaches the chimod synchronously and the logical file size is always exact; and the kernel attribute and entry caches are disabled, so metadata that another client changed is never served stale.

Python: bundle, query, retrieve

import clio_cee as cee

ctx_interface = cee.ContextInterface()

# Assimilate inline strings into IOWarp storage.
# src="string::<blob_name>" names the blob; src_data carries the payload.
docs = [
    ("climate_report",   "Arctic sea ice extent fell to a record low in 2023."),
    ("ocean_temps",      "Ocean surface temperatures rose 0.3°C above the 20-year mean."),
    ("co2_levels",       "Atmospheric CO₂ reached 421 ppm, the highest in 800,000 years."),
]
bundle = [
    cee.AssimilationCtx(
        src=f"string::{name}",
        dst="iowarp::climate_docs",
        format="string",
        src_data=text,
    )
    for name, text in docs
]
ctx_interface.context_bundle(bundle)

# Query for blob names matching a regex.
blobs = ctx_interface.context_query("climate_docs", ".*")

# Query the top-2 most relevant blob names via BM25 semantic search.
blobs = ctx_interface.context_query("climate_docs", ".*",
                                    max_results=2,
                                    prompt="temperature anomaly over Arctic")

# Retrieve blob payloads (regex).
data = ctx_interface.context_retrieve("climate_docs", ".*")

# Retrieve the top-2 most relevant blobs via BM25 semantic search.
data = ctx_interface.context_retrieve("climate_docs", ".*",
                                      max_results=2,
                                      prompt="temperature anomaly over Arctic")

# Clean up.
ctx_interface.context_destroy(["climate_docs"])

C++ (CTE, direct)

For direct CTE put/get from C++, see the canonical example and operation reference in the Context Transfer Engine README.

Testing

cd build/release
ctest -VV                    # all unit tests
ctest -R context_transport   # CTP tests
ctest -R runtime             # runtime tests
ctest -R cte                 # CTE tests
ctest -R omni                # CAE tests
ctest -R context             # CEE tests

Benchmarking

CLIO Core ships two main benchmarks; pass --help to either for the full parameter list.

  • clio_run_thrpt_bench — runtime task throughput and latency (bdev_io, bdev_allocation, bdev_task_alloc, latency test cases).
  • clio_cte_bench — CTE Put / Get / PutGet throughput across threads, async depth, I/O size, and key-space cardinality.

Example:

clio_run_thrpt_bench --test-case bdev_io --threads 8 --duration 30
clio_cte_bench       --op PutGet --threads 8 --depth 16 --io-size 1m --io-count 200

Documentation

Use Cases

Scientific computing: data processing pipelines, near-data computing, custom storage engines, workflows with context management.

Storage systems: distributed file system backends, object storage, multi-tiered caches, high-throughput I/O buffering.

HPC and data-intensive workloads: accelerated I/O, ingestion and transformation pipelines, heterogeneous computing with GPU support, real-time streaming analytics.

Performance Characteristics

  • Task latency: < 10 µs for local task execution.
  • Memory bandwidth: up to 50 GB/s with the RAM bdev backend.
  • Scalability: single node to multi-node clusters.
  • Concurrency: thousands of concurrent coroutine-based tasks.

Contributing

  1. Fork the repository.
  2. Create a feature branch: git checkout -b feature/amazing-feature.
  3. Follow the standards in AGENTS.md.
  4. ctest --test-dir build/release before opening a PR.
  5. Submit a pull request against iowarp/clio-core.

License

CLIO Core is licensed under the BSD 3-Clause License. See LICENSE for the full text.

Copyright (c) 2024, Gnosis Research Center, Illinois Institute of Technology


Acknowledgements

CLIO Core is developed at the GRC lab at Illinois Institute of Technology as part of the IOWarp project, supported by the National Science Foundation (NSF) to advance next-generation scientific computing infrastructure.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

iowarp_core-2.2.0-cp313-cp313-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.13Windows x86-64

iowarp_core-2.2.0-cp313-cp313-manylinux_2_34_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

iowarp_core-2.2.0-cp313-cp313-manylinux_2_34_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

iowarp_core-2.2.0-cp313-cp313-macosx_14_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

iowarp_core-2.2.0-cp312-cp312-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.12Windows x86-64

iowarp_core-2.2.0-cp312-cp312-manylinux_2_34_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

iowarp_core-2.2.0-cp312-cp312-manylinux_2_34_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

iowarp_core-2.2.0-cp312-cp312-macosx_14_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

iowarp_core-2.2.0-cp311-cp311-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.11Windows x86-64

iowarp_core-2.2.0-cp311-cp311-manylinux_2_34_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

iowarp_core-2.2.0-cp311-cp311-manylinux_2_34_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

iowarp_core-2.2.0-cp311-cp311-macosx_14_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

iowarp_core-2.2.0-cp310-cp310-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.10Windows x86-64

iowarp_core-2.2.0-cp310-cp310-manylinux_2_34_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

iowarp_core-2.2.0-cp310-cp310-manylinux_2_34_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

iowarp_core-2.2.0-cp310-cp310-macosx_14_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file iowarp_core-2.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7f2d350b1e4554b8c600a5185b21cd5ef0d7da60c09e511b48cf54eb0e3dbc7d
MD5 afc48c99c352ad993e792c9d755e1330
BLAKE2b-256 4dc0955d030fd11501c8618d7e64870d6c6775c286187257c681cdf96a71f7fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp313-cp313-win_amd64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 492fa33e39649b37c0dd63b70239400650b9bc26d9ef4d489c7554b62a10f46e
MD5 b841d81931a78deb6b7caa93c90c4cbb
BLAKE2b-256 560874073ea77cc8dda7e8dfa07bb475538df56b6cbf196897c5c56801bb8c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 8b7d32b385cefc6f02413380d1832c9afafc484bb57d710f3b703774be15281c
MD5 de20888473045800f8b0da128dab151f
BLAKE2b-256 4c764762798a172c624389d12e6fde0b5c44ee592967c350f0650fef24b47e68

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp313-cp313-manylinux_2_34_aarch64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f136b04d705593613e8b1e38616324153ce59299ad0711d1125c3dcf32261830
MD5 c48408d87dc3569c04a40e3e8a444492
BLAKE2b-256 1dfc862dc265344d1e23541272daf06754ebee94570334246a78d0039d6e42bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 63c8a9637b8abd2a1a9060fe1b52ae5037f32dfd70eaa0e90955e8922493c339
MD5 7fd1db745f26e1a2489d5dad219ecb35
BLAKE2b-256 5d70f37574c580dcddd5cdc28adca915085a44848ca0a8f46a1f6b53103d8adb

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp312-cp312-win_amd64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 a4fe1a9fb74daff961e5c906a7c21cdb29fee99baff2b28b9324d68ce1bef9dd
MD5 695dbaf8459e44d76d99c4730508c135
BLAKE2b-256 a87fbab2a4348710551ecceeb071beb78ea29f078e5b3b3c00ed94336d1737b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9f61b01f28d4f6c0e8adb36ec59ea4f88d6ce35a505ba05adafe0e3bd92ef45d
MD5 31ad7b7bd2a9659d590f40d4049c6b8c
BLAKE2b-256 f8d9b5b580530851839cec3cbe040a3d1c3ed2aecb6bbb93f466280881207412

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp312-cp312-manylinux_2_34_aarch64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9bb266fb9c5443d9994cb69bfa12833116185faa294c5d9cbd609ff317482564
MD5 53dec7434f8b2c1fdeeac7954102e05b
BLAKE2b-256 fcb9529dcd3af172abbc753c5e940c9a49605ac7478380dbd5236b196ed03cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1986679478d3f20dcec66521bfbd26494f3b886ce00f0c05fb59abf2e19b3bdd
MD5 e53b0b83308585376d50359c05508d04
BLAKE2b-256 6bd677cfb1aaa2202e2b94c3ad007c4eec54ac14d874f9ca2bd650963b9cbd48

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp311-cp311-win_amd64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7adb2e35a9a634d7b2aac90eb21d1b28cda4ef36aacb51ef22f771a1f5b68e8b
MD5 cecc2971bb6d009457d74597834e56ff
BLAKE2b-256 d907e353fcca06d5307beb7e84cf493c6fde3957d8b8614955955acf7db35778

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp311-cp311-manylinux_2_34_x86_64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c62a04eeb89b4373ea5f27764f1e5303f626bdfa4249646eab123583037bbe89
MD5 55cb1a160446aa53e2243d0fabfc0e49
BLAKE2b-256 c6a7de5786784c757cd65476a5b614883326257d74a7e3da8e349670eed9f26c

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp311-cp311-manylinux_2_34_aarch64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 99695ce9ab332a7f0d5d66233ee1d13adb4b94efbe31bba119b43d2c120c03c3
MD5 98445c56d4c58c742de1e9df7060d2f9
BLAKE2b-256 5a2a34fe5db1a7070db9bc677541851c6504bc733fe82dd6a3fec9088af2dff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 113e7269ebf72332eaced210955972ba75d70540bd69d115e493f2b54e2257a2
MD5 9ca28811ea7b7acc8ca05c30882cd505
BLAKE2b-256 6ca52d76e5e3eb24b31ab893b77d121c41f4f80316aa3ba8ae794a7739210c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp310-cp310-win_amd64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 c3f65eb8c7e62d89858bfc11eefdb41a60535310a8362b159205b6ffeefffabe
MD5 5fadcb2bf76810fc1053ad1ffb4e501d
BLAKE2b-256 9af70a8fda8ccf46fba7fbdd05c1ba5f094697470c1d111ca4990398ab61e8a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp310-cp310-manylinux_2_34_x86_64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 7d2cf5f8126f8007a2048cc676c6e7407f138164e2b9cd973526d49606b3f3b6
MD5 5c6b17177915a47511687154690a9d51
BLAKE2b-256 95b88de0b9bb3d864189e990a5d18e29f4d34e014729567f50e18911280fb6df

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp310-cp310-manylinux_2_34_aarch64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iowarp_core-2.2.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for iowarp_core-2.2.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1011de262ba8275b818da988fcf70c5c8efd46bcba5d3505c52ea0072fdf4494
MD5 9cffa5514052ab3fb05527f0f3da20f2
BLAKE2b-256 3530978bf97cb06d14fbad044fef44a80ae640d58a58198a820ad48c7b3e3c83

See more details on using hashes here.

Provenance

The following attestation bundles were made for iowarp_core-2.2.0-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: build-pip.yml on iowarp/clio-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2.2.1

16 files

This release

2.2.0 This release

16 files

2.1.0

16 files

2.0.0

16 files

1.9.7

16 files

1.9.6

16 files

1.9.0

16 files

1.5.8

8 files

1.5.7

8 files

1.5.6

8 files

1.5.4

8 files

1.5.3

8 files

1.5.1

8 files

1.0.3

8 files

1.0.2

8 files

1.0.1

8 files

0.6.4

1 file

0.6.3

1 file

0.6.2

1 file

0.6.1

1 file

0.6.0

1 file

0.5.1

1 file

0.5.0

1 file

0.2.4

1 file

0.2.3

1 file

0.2.0

1 file

0.1.6

1 file

0.1.5

1 file

0.1.3

1 file

0.1.2

1 file

0.1.1

1 file

0.1.0

1 file

0.0.8

9 files

0.0.7

9 files

0.0.6

9 files

0.0.4

9 files

0.0.3

9 files

0.0.2

9 files

0.0.1

5 files

0.0.0

3 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page