Skip to content

Commit

Permalink
Update error message for inner_kernel k%2==0
Browse files Browse the repository at this point in the history
  • Loading branch information
daquexian committed May 29, 2019
1 parent 0678418 commit 8559844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dabnn/bgemm.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ inline void inner_kernel(const int m, const int n, const int k,
const uint64_t *a, const int lda, const uint64_t *b,
const int ldb, float *c, const int ldc,
const int first_time) {
BNN_ASSERT(k % 2 == 0, "k % 2 should be 0");
BNN_ASSERT(k % 2 == 0, "k % 2 should be 0, k =", k);
BNN_ASSERT(k * P < 128000, "");
BNN_ASSERT(k * R < 128000, "");

Expand Down

0 comments on commit 8559844

Please sign in to comment.