vision-rs 0.1.1

A high-performance computer vision SDK for Rust.
1
2
3
4
5
6
7
8
9
10
11
# Example environment for local development. Copy this to `.env` (gitignored) and adjust the
# paths below for your machine, then `source .env` before building/running/benchmarking.

# Path to the `teenyc` binary from the custom teenyc Rust toolchain (compiles GPU kernels; see
# ../rust and README.md's "Installing the toolchain" section). After
# `cargo teeny install-toolchain`, it lives under the linked rustup toolchain, e.g.:
export TEENYC_PATH=$HOME/.rustup/toolchains/stable-teenyc-x86_64-unknown-linux-gnu/bin/teenyc

# Where downloaded benchmark datasets/models are cached. Point these at wherever you keep them.
export DATASETS_CACHE_DIR=$HOME/.cache/vision-rs/datasets
export MODELS_CACHE_DIR=$HOME/.cache/vision-rs/models