vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::reserved_id_env::RESERVED_ID_ENV;

pub fn print_help() {
    println!(
        "Usage:\n  vyre new-op <id> --archetype <archetype> [--display-name <text>] [--summary <text>] [--category <A|C>]"
    );
    println!();
    println!("Examples:");
    println!(
        "  cargo run -p vyre --bin vyre_new_op -- new-op primitive.arithmetic.test_op --archetype binary-arithmetic"
    );
    println!();
    println!(
        "Reserved prefixes 'internal.' and 'test.' require {}=1.",
        RESERVED_ID_ENV
    );
}