🚀 Quick Start

Get up and running with SIMD Network in minutes. This guide will walk you through installing the CLI, understanding the architecture, and connecting your first nodes.

Overview

SIMD Network uses a distributed architecture with two main components:

                    ┌─────────────────┐
                    │   Orchestrator  │
                    │  ─────────────  │
                    │  • Job Queue    │
                    │  • Scheduler    │
                    │  • Results      │
                    └────────┬────────┘
                             │
              ┌──────────────┼──────────────┐
              │              │              │
              ▼              ▼              ▼
     ┌─────────────┐  ┌─────────────┐  ┌─────────────┐
     │  Worker 1   │  │  Worker 2   │  │  Worker N   │
     │  (GPU: T4)  │  │ (GPU: A100) │  │  (CPU only) │
     └─────────────┘  └─────────────┘  └─────────────┘
  • Orchestrator — Central coordination node that manages job queues, schedules work, and aggregates results
  • Worker Nodes — GPU/CPU nodes that execute CFD simulation jobs assigned by the orchestrator

Installation

Install the SIMD CLI using the official installer script:

Terminal
curl -sSf https://sh.simd.space | sh
Check this out: https://sh.simd.space

Verify Installation

After installation, verify that the CLI is working correctly:

Terminal
simd --version
# simd 0.1.14

simd --help

Expected output:

Output
SIMD Network CLI

Usage: simd <COMMAND>

Commands:
  orchestrator   Start the orchestrator node
  worker         Start a worker node
  init           Initialize a new worker node
  system-check   Check system capabilities
  enqueue-job    Submit a new job
  list-jobs      List all jobs
  list-workers   List connected workers
  help           Print this message or the help of the given subcommand(s)

Options:
  -h, --help     Print help
  -V, --version  Print version

Next Steps

Now that you have the CLI installed, continue with one of these guides: