Vantar Cloud — Coming in v0.9
Your experiments,
in the cloud.
Push neuromorphic experiments to Vantar Cloud. Share recordings with collaborators. Compare runs across hardware platforms. Access remote neuromorphic chips without owning them.
Current Status
DevTools shipped (v0.8) - Cloud coming in v0.9
Recording, Experiment, Plot, and Adapters work locally today. Cloud storage and remote hardware coming next.
Available Now
Nuro DevTools work locally today. No cloud account needed.
pip install nuro[devtools]
Hardware-agnostic Recording, Experiment tracking with metadata and metrics, visualization (raster, traces, dashboard), adapters for GPU, Loihi, Samna, CSV/HDF5. All local, all free.
Cloud Storage (v0.9)
Push experiments to the cloud, share with collaborators, compare across hardware, access remote chips. Same API, just add an API key.
Coming in v0.9
Everything you do locally today, plus cloud storage, sharing, and remote hardware access.
Push & Pull Experiments
Save experiments locally with Experiment.save(), then push to Vantar Cloud with one line. Pull them back on any machine. Your recordings, metadata, and metrics travel with you.
# Local workflow (works today)
exp.save("./experiments")
loaded = Experiment.load("./experiments/abc123")
# Cloud workflow (v0.9)
from nuro.cloud import push_experiment, pull_experiment
push_experiment("./experiments/abc123")
pull_experiment("abc123", target_dir="./pulled")Share with Collaborators
Send a link. Your collaborator loads the experiment in Python, MATLAB, or any HDF5-compatible tool. No account setup for read-only access.
# Share a link
url = push_experiment("./experiments/abc123")
# -> https://cloud.vantar.xyz/exp/abc123
# Collaborator pulls it
pull_experiment("abc123")Compare Across Hardware
Run the same network on GPU, Loihi 2, and DYNAP-SE2. Push all three experiments. Compare spike patterns, firing rates, and metrics side by side in the cloud.
from nuro.cloud import compare_experiments
compare_experiments(
["gpu_run_01", "loihi_run_01", "dynap_run_01"],
metric="spikes",
)Remote Hardware Access
Don't own a Loihi board? Submit your Nuro network to Vantar Cloud. We compile and run it on real neuromorphic hardware. Get spike data and energy measurements back.
# Compile and run on remote Loihi 2
model = nuro.compile(graph, target="cloud", hardware="loihi")
model.run(duration=1.0)
print(model.metrics) # total_spikes, energy_uj, wall_msPricing (v0.9)
DevTools are free forever. Cloud adds storage, sharing, and remote hardware.
Free
Local DevTools + limited cloud storage
- ·Full Nuro DevTools (Recording, Experiment, Plot)
- ·5 cloud experiments
- ·HDF5 export/import
- ·Community support
Researcher
Cloud storage + remote hardware
- ·Unlimited cloud experiments
- ·Share with collaborators
- ·Remote Loihi 2 access
- ·Remote SpiNNaker 2 access
- ·Email support
Lab
For research groups and teams
- ·Everything in Researcher
- ·Team workspaces
- ·1,000 compute-hours / month
- ·Dedicated hardware allocation
- ·Priority support
Enterprise pricing available for dedicated hardware, SLA, and on-premises deployment. Contact us.
Early Access
Get notified when Vantar Cloud launches.
DevTools work locally today. Sign up to be first in line when cloud storage, sharing, and remote hardware go live.