Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nnsmith/abstract/dtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ def from_str(s):
"f32": DType.float32,
"f64": DType.float64,
"u8": DType.uint8,
"u16": DType.uint16,
"u32": DType.uint32,
"u64": DType.uint64,
"i8": DType.int8,
"i16": DType.int16,
"i32": DType.int32,
"i64": DType.int64,
"c64": DType.complex64,
Expand Down