weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Resident IFDS solve orchestration.

mod parallel;
mod program_cache;
mod result_slots;
mod single_query;

pub use parallel::{
    solve_resident_prepared_many_parallel_via,
    solve_resident_prepared_many_parallel_with_scratch_and_host_into_via,
    solve_resident_prepared_many_parallel_with_scratch_and_host_via,
    solve_resident_prepared_many_parallel_with_scratch_via,
};
pub use single_query::{
    solve_resident_prepared_many_via, solve_resident_prepared_many_with_scratch_and_host_into_via,
    solve_resident_prepared_many_with_scratch_into_via,
    solve_resident_prepared_many_with_scratch_via, solve_resident_prepared_via,
};