"docs/source/en/vscode:/vscode.git/clone" did not exist on "f7cc9adc05c36985c8b3f3e95a54940ddac5b4ca"
Commit 0601203a authored by letaoqin's avatar letaoqin
Browse files

change example file name

parent 6880afdf
...@@ -9,4 +9,4 @@ add_example_executable(example_convnd_fwd_dl_fp16 convnd_fwd_dl_fp16.cpp) ...@@ -9,4 +9,4 @@ add_example_executable(example_convnd_fwd_dl_fp16 convnd_fwd_dl_fp16.cpp)
add_example_executable(example_convnd_fwd_dl_fp32 convnd_fwd_dl_fp32.cpp) add_example_executable(example_convnd_fwd_dl_fp32 convnd_fwd_dl_fp32.cpp)
add_example_executable(example_convnd_fwd_dl_int8 convnd_fwd_dl_int8.cpp) add_example_executable(example_convnd_fwd_dl_int8 convnd_fwd_dl_int8.cpp)
add_example_executable(example_convnd_fwd_dl_multiple_d_fp16 convnd_fwd_dl_multiple_d_fp16.cpp) add_example_executable(example_convnd_fwd_dl_relu_fp16 convnd_fwd_dl_relu_fp16.cpp)
...@@ -251,8 +251,8 @@ struct GridwiseGemmDlMultipleD_km_kn_mn ...@@ -251,8 +251,8 @@ struct GridwiseGemmDlMultipleD_km_kn_mn
DsGridPointer p_ds_grid, DsGridPointer p_ds_grid,
FloatC* __restrict__ p_c_grid, FloatC* __restrict__ p_c_grid,
FloatAB* __restrict__ p_shared_block, FloatAB* __restrict__ p_shared_block,
const AElementwiseOperation& a_element_op, const AElementwiseOperation& ,
const BElementwiseOperation& b_element_op, const BElementwiseOperation& ,
const CDEElementwiseOperation& cde_element_op, const CDEElementwiseOperation& cde_element_op,
const AGridDesc_K0_M0_M1_K1& a_grid_desc_k0_m0_m1_k1, const AGridDesc_K0_M0_M1_K1& a_grid_desc_k0_m0_m1_k1,
const BGridDesc_K0_N0_N1_K1& b_grid_desc_k0_n0_n1_k1, const BGridDesc_K0_N0_N1_K1& b_grid_desc_k0_n0_n1_k1,
...@@ -262,11 +262,6 @@ struct GridwiseGemmDlMultipleD_km_kn_mn ...@@ -262,11 +262,6 @@ struct GridwiseGemmDlMultipleD_km_kn_mn
integral_constant<bool, HasMainKBlockLoop>, integral_constant<bool, HasMainKBlockLoop>,
integral_constant<bool, HasDoubleTailKBlockLoop>) integral_constant<bool, HasDoubleTailKBlockLoop>)
{ {
ignore = p_ds_grid;
ignore = ds_grid_desc_m0_m10_m11_n0_n10_n11;
ignore = a_element_op;
ignore = b_element_op;
ignore = cde_element_op;
const auto a_global_buf = make_dynamic_buffer<AddressSpaceEnum::Global>( const auto a_global_buf = make_dynamic_buffer<AddressSpaceEnum::Global>(
p_a_grid, a_grid_desc_k0_m0_m1_k1.GetElementSpaceSize()); p_a_grid, a_grid_desc_k0_m0_m1_k1.GetElementSpaceSize());
const auto b_global_buf = make_dynamic_buffer<AddressSpaceEnum::Global>( const auto b_global_buf = make_dynamic_buffer<AddressSpaceEnum::Global>(
......
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