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 14dd4a4 commit fa534ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/benchdnn/rnn/rnn.cpp
Expand Up @@ -189,7 +189,7 @@ inline int init_pd(const rnn_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 fa534ef

Please sign in to comment.