Skip to content

Commit

Permalink
new change
Browse files Browse the repository at this point in the history
  • Loading branch information
datduonguva committed Oct 9, 2023
1 parent 1a7f131 commit 9074a16
Show file tree
Hide file tree
Showing 2 changed files with 176 additions and 108 deletions.
8 changes: 4 additions & 4 deletions ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -11396,10 +11396,10 @@ static void ggml_compute_forward_get_rows_f32(

assert( dst->ne[0] == nc);
assert( dst->ne[1] == nr);
printf("nc = %d\n", nc);
printf("nr = %d\n", nr);
printf("src0->nb[0] = %d\n", src0->nb[0]);
//assert(src0->nb[0] == sizeof(float)); Taken out by Dat
//printf("nc[0] = %d\n", nc);
//printf("nr[1] = %d\n", nr);
//printf("src0->nb[0] = %d\n", src0->nb[0]);
//assert(src0->nb[0] == sizeof(float)); //Taken out by Dat

for (int i = 0; i < nr; ++i) {
const int r = ((int32_t *) src1->data)[i];
Expand Down
Loading

0 comments on commit 9074a16

Please sign in to comment.