mirror of
https://github.com/amd/blis.git
synced 2026-05-12 18:15:37 +00:00
Details: - To determine whether matrices are col-stored, we were checking ldc == 1. This is incorrect as a matrix can be col-stored with ldc = 1 if dimension is 1. - Modified the condition to check row_stride instead of col stride. if row-stride != 1, we can assume that matrices are not col-stored and ignore those inputs by printing an error message. Change-Id: Id4d5b971104eb11cbcdd6d22c5c620febefd3a87