vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
4
5
6
7
8
use super::reserved_id_env::RESERVED_ID_ENV;
use std::env;

pub fn is_maintainer_allowed() -> bool {
    env::var(RESERVED_ID_ENV)
        .ok()
        .is_some_and(|value| value == "1")
}