mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-08-03 14:50:53 +00:00
Add comment
This commit is contained in:
parent
8cd3db6648
commit
a55c851eaa
1 changed files with 2 additions and 1 deletions
|
@ -284,6 +284,7 @@ pub enum PointerType {
|
||||||
Scalar(ScalarType),
|
Scalar(ScalarType),
|
||||||
Vector(ScalarType, u8),
|
Vector(ScalarType, u8),
|
||||||
Array(ScalarType, VecU32),
|
Array(ScalarType, VecU32),
|
||||||
|
// Instances of this variant are generated during stateful conversion
|
||||||
Pointer(ScalarType, LdStateSpace),
|
Pointer(ScalarType, LdStateSpace),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1141,7 +1142,7 @@ impl<'a> NumsOrArrays<'a> {
|
||||||
ScalarType::F64 => {
|
ScalarType::F64 => {
|
||||||
Self::parse_and_copy_single_t::<f64>(idx, str_val, radix, output)?;
|
Self::parse_and_copy_single_t::<f64>(idx, str_val, radix, output)?;
|
||||||
}
|
}
|
||||||
ScalarType::Pred => todo!()
|
ScalarType::Pred => todo!(),
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue