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
use super::{entropy_program, INPUTS, LAWS};
use crate::ops::{OpSpec, BYTES_TO_U32_OUTPUTS};

/// Declarative operation specification for `hash.entropy`.
pub const SPEC: OpSpec = OpSpec::composition(
    "hash.entropy",
    INPUTS,
    BYTES_TO_U32_OUTPUTS,
    LAWS,
    entropy_program,
);