Skip to content

Commit

Permalink
Fix typo in scripts/library.py (wrong data size for u8) (NVIDIA#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
masahi authored Jan 7, 2022
1 parent c2ee13a commit d7c9cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/library/scripts/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class DataType(enum.Enum):
DataTypeSize = {
DataType.b1: 1,
DataType.u4: 4,
DataType.u8: 4,
DataType.u8: 8,
DataType.u16: 16,
DataType.u32: 32,
DataType.u64: 64,
Expand Down

0 comments on commit d7c9cbf

Please sign in to comment.