Skip to content

Commit

Permalink
Fix convolutional_recurrent_test failure (tensorflow#16297)
Browse files Browse the repository at this point in the history
  • Loading branch information
claynerobison authored and rmlarsen committed Jan 22, 2018
1 parent 4b6abfd commit 6cd1663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/core/kernels/mkl_input_conversion_op.cc
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ class MklInputConversionOp : public OpKernel {
auto cpu_engine = engine(engine::cpu, 0);
MklDnnData<T> tf_input(&cpu_engine);
auto input_tf_md = mkl_output_mkl_shape.GetTfLayout();
tf_input.SetUsrMem(input_tf_md, &tf_tensor);
tf_input.SetUsrMem(input_tf_md, tf_tensor);

// Create reorder between tensorflow layout and Mkl layout.
std::vector<primitive> net;
Expand Down

0 comments on commit 6cd1663

Please sign in to comment.