Skip to content

Commit

Permalink
debug++
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui committed Apr 23, 2024
1 parent 5880edb commit 98d77cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/layer/arm/rnn_arm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,8 @@ static int rnn_int8(const Mat& bottom_blob, Mat& top_blob, int reverse, const Ma

int num_output = top_blob.w;

NCNN_LOGE("rnn_int8 %d %d %d", size, T, num_output);

// num_output
Mat gates(num_output, 4u, opt.workspace_allocator);
if (gates.empty())
Expand Down Expand Up @@ -1049,6 +1051,8 @@ static int rnn_bf16s_int8(const Mat& bottom_blob, Mat& top_blob, int reverse, co

int num_output = top_blob.w;

NCNN_LOGE("rnn_bf16s_int8 %d %d %d", size, T, num_output);

// num_output
Mat gates(num_output, 4u, opt.workspace_allocator);
if (gates.empty())
Expand Down

0 comments on commit 98d77cf

Please sign in to comment.