Remove comment on assert that was failing
This commit is contained in:
parent
896dee5059
commit
8d2dead681
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue