Add stateless-to-stateful conversion

This commit is contained in:
Andrzej Janik 2024-08-26 18:31:06 +02:00
commit 3e0a15ac84
5 changed files with 627 additions and 21 deletions

View file

@ -760,6 +760,7 @@ pub enum Type {
Vector(ScalarType, u8),
// .param.b32 foo[4];
Array(ScalarType, Vec<u32>),
Pointer(ScalarType, StateSpace)
}
impl Type {