Skip to content

Commit

Permalink
benchdnn: rnn: fix bug with status handling
Browse files Browse the repository at this point in the history
  • Loading branch information
mgouicem committed Aug 12, 2019
1 parent cf83e83 commit f7c2de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/benchdnn/rnn/rnn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ inline int init_pd(const prb_t *p, mkldnn_rnn_desc_t rd[2],
if (init_status == mkldnn_unimplemented)
return r->state = UNIMPLEMENTED, OK;
else
SAFE(init_status, WARN);
DNN_SAFE(init_status, WARN);
}

if (is_bwd) {
Expand Down

0 comments on commit f7c2de2

Please sign in to comment.