furiosa-opt-std 0.3.0

Standard library for Furiosa NPU TCP Virtual ISA programming.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Vector Engine — branched/staged scalar pipeline on the post-Contraction
//! stream.

pub mod alu;
pub mod branch;
pub mod layer;
pub mod op;
pub mod operand;
pub mod scalar;
pub mod stage;
pub mod tensor;

/// Maximum number of concurrent branches the Vector Engine supports.
pub const MAX_TAGS: usize = 5;