Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fixing too-long line
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenrawls committed May 4, 2019
1 parent 639de6f commit 889148f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/operator/rnn-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,8 @@ class RNNOp {
param_.batch_size_ * sizeof(IType) + param_.batch_size_ * sizeof(int);

host_workspace =
ctx.requested[rnn_enum::kTempSpace].get_host_space_typed<1, char>(Shape1(host_workspace_bytes));
ctx.requested[rnn_enum::kTempSpace].get_host_space_typed<1, char>(
Shape1(host_workspace_bytes));

sequence_length_cpu_int = reinterpret_cast<int*>(host_workspace.dptr_);
sequence_length_cpu_itype =
Expand Down

0 comments on commit 889148f

Please sign in to comment.