vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
4
5
6
use super::registry;

/// Returns an iterator over all known operation IDs.
pub fn known_op_ids() -> impl Iterator<Item = &'static str> {
    registry().map(|op| op.id())
}