Skip to main content

Installation

Choose the installation method that best fits your environment.

Clone and build IOWarp Core from source using the automated installer. This uses conda internally to manage dependencies and produces a full-featured build with all optional components.

git clone --recurse-submodules https://github.com/iowarp/clio-core.git
cd clio-core
./install.sh

Activate the environment in every new terminal:

conda activate iowarp

Build Variants

Pass a variant name to enable additional features:

VariantCommandWhat it enables
Release (default)./install.shCPU-only, all engines
Debug./install.sh debugDebug symbols, sanitizers
CUDA./install.sh cudaNVIDIA GPU acceleration
ROCm./install.sh rocmAMD GPU acceleration
MPI./install.sh mpiDistributed multi-node
Full./install.sh fullCUDA + MPI + everything

Verify the installation

conda activate iowarp
chimaera --help

What's Included

The Conda install provides the complete IOWarp stack:

  • All engines — CTE, CAE, CEE with full feature support
  • Python APIimport wrp_cee for context management
  • CLIchimaera command for runtime management
  • GPU support — CUDA and ROCm variants available
  • MPI support — Distributed multi-node deployments
  • HDF5 support — Scientific data format ingestion

Next Steps