Remove comment on assert that was failing

This commit is contained in:
joshcarp 2024-04-30 08:53:03 -04:00
parent 896dee5059
commit 8d2dead681

View file

@ -818,7 +818,7 @@ bool llamafile_sgemm(int64_t m, int64_t n, int64_t k, const void *A, int64_t lda
assert(m >= 0);
assert(n >= 0);
assert(k >= 0);
assert(lda >= k); // Currently failing here
assert(lda >= k);
assert(ldb >= k);
assert(ldc >= m);
assert(nth > 0);