You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The data type of DIL tensor is same as the dst data type. DO NOTHING
156
156
return;
157
157
}
158
+
// should fallback if not dil tensor and not own whole storage
159
+
IPEX_CHECK(cpu::ShadeDataContext::isDilTensor(tensor) || check_tensor_own_whole_storage(tensor), "Reorder only works while tensor owns the whole storage or tensor is a dil tensor");
160
+
158
161
auto dst_desc = src.get_desc().to_type(get_dil_data_type(dst_scalar_type));
0 commit comments