Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add data type reorder for DNNL OP #1

Merged
merged 3 commits into from
May 11, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add assert check because reorder has not supported alias tensor yet.
  • Loading branch information
EikanWang committed May 11, 2020
commit 5be717ad8e94f8205be42532921c31b7d80ca757
5 changes: 4 additions & 1 deletion torch_ipex/csrc/aten_ipex_bridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,11 @@ void reorderTensorToScalaraType(const at::Tensor& ipexTensor, at::ScalarType dst
if (tensor_dtype == dstScalarType)
return;

if (!check_tensor_own_whole_storage(ipexTensor))
if (!check_tensor_own_whole_storage(ipexTensor)) {
return;
} else {
TORCH_INTERNAL_ASSERT(false);
}

if (check_tensor_own_shade_context(ipexTensor)) {
// Shade data context has been attached
Expand Down