mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-26 13:48:23 +00:00
Increase matrix maximum element count from 16 to 64, allowing for matrix[8, 8]T
This commit is contained in:
@@ -400,7 +400,7 @@ enum TypeInfoFlag : u32 {
|
||||
|
||||
enum : int {
|
||||
MATRIX_ELEMENT_COUNT_MIN = 1,
|
||||
MATRIX_ELEMENT_COUNT_MAX = 16,
|
||||
MATRIX_ELEMENT_COUNT_MAX = 64,
|
||||
MATRIX_ELEMENT_MAX_SIZE = MATRIX_ELEMENT_COUNT_MAX * (2 * 8), // complex128
|
||||
|
||||
SIMD_ELEMENT_COUNT_MIN = 1,
|
||||
|
||||
Reference in New Issue
Block a user