Skip to content

Commit

Permalink
[OpenCL] Fixes compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Iwanski committed Apr 19, 2017
1 parent c4176aa commit 09c0ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/core/kernels/transpose_functor_cpu.cc
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void TransposeSYCL(const Device& d, const Tensor& in,
internal::TransposeUsingEigen<Device, T, 8>(d, in, perm, out);
break;
default:
errors::Unimplemented("Unsupported TransposeUsingEigen for: ", in.dims());
LOG(FATAL) << "Unsupported TransposeUsingEigen for: " << in.dims();
break;
}
}
Expand Down

0 comments on commit 09c0ebc

Please sign in to comment.