"...resnet50_tensorflow.git" did not exist on "37c6feb044aab396b6fa4fd4e74edcc25a0c00a5"
Commit 6559076e authored by Chao Liu's avatar Chao Liu
Browse files

fix

parent ca8ba252
...@@ -201,7 +201,7 @@ struct ThreadwiseDynamicTensorSliceTransfer_v1r3 ...@@ -201,7 +201,7 @@ struct ThreadwiseDynamicTensorSliceTransfer_v1r3
#else #else
if(is_dst_valid) if(is_dst_valid)
{ {
*reinterpret_cast<dst_vector_t*>(&(p_dst[dst_slice_origin_coord_.GetOffset])) = *reinterpret_cast<dst_vector_t*>(&(p_dst[dst_slice_origin_coord_.GetOffset()])) =
dst_vector.Vector(); dst_vector.Vector();
} }
#endif #endif
...@@ -210,7 +210,7 @@ struct ThreadwiseDynamicTensorSliceTransfer_v1r3 ...@@ -210,7 +210,7 @@ struct ThreadwiseDynamicTensorSliceTransfer_v1r3
{ {
if(is_dst_valid) if(is_dst_valid)
{ {
*reinterpret_cast<dst_vector_t*>(&(p_dst[dst_slice_origin_coord_.GetOffset])) = *reinterpret_cast<dst_vector_t*>(&(p_dst[dst_slice_origin_coord_.GetOffset()])) =
dst_vector.Vector(); dst_vector.Vector();
} }
} }
......
...@@ -39,7 +39,7 @@ void device_dynamic_convolution_forward_implicit_gemm_v4r4_nchw_kcyx_nkhw(InDesc ...@@ -39,7 +39,7 @@ void device_dynamic_convolution_forward_implicit_gemm_v4r4_nchw_kcyx_nkhw(InDesc
wei_kcyx_device_buf.ToDevice(wei_kcyx.mData.data()); wei_kcyx_device_buf.ToDevice(wei_kcyx.mData.data());
out_nkhw_device_buf.ToDevice(out_nkhw.mData.data()); out_nkhw_device_buf.ToDevice(out_nkhw.mData.data());
#if 0 #if 1
// run-time variables // run-time variables
const auto in_n_c_hi_wi_desc = const auto in_n_c_hi_wi_desc =
make_dynamic_naive_tensor_descriptor_packed_v2(to_multi_index(InDesc::GetLengths())); make_dynamic_naive_tensor_descriptor_packed_v2(to_multi_index(InDesc::GetLengths()));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment