Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ if( MIOPEN_BACKEND MATCHES "OpenCL" OR MIOPEN_BACKEND STREQUAL "HIPOC" OR MIOPEN
kernels/Conv_Winograd_v21_1_2_gfx9_f3x2_fp16_dot2_edc_stride1_group.inc
kernels/Conv_Winograd_v21_1_2_gfx10_f3x2_fp16_dot2_edc_stride1_group.inc
kernels/Conv_Winograd_v21_1_2_gfx9_f3x2_fp32_stride1_group.inc
kernels/Conv_Winograd_v21_1_2_gfx90a_f3x2_fp32_stride1_group.inc
kernels/Conv_Winograd_v21_1_2_gfx10_f3x2_fp32_stride1_group.inc
kernels/Conv_Winograd_v21_1_2_gfx9_fp16_dot2_edc_dilation2.inc
kernels/Conv_Winograd_v21_1_2_gfx9_fp16_dot2_edc_stride1.inc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ KERNEL_PROLOG f3x2_fp32_stride1_group

.if (.amdgcn.gfx_generation_number == 9)
.if (.amdgcn.gfx_generation_stepping == 10)
.error "gfx90a is not supported yet"
.include "Conv_Winograd_v21_1_2_gfx90a_f3x2_fp32_stride1_group.inc"
.else
.include "Conv_Winograd_v21_1_2_gfx9_f3x2_fp32_stride1_group.inc"
.endif
Expand Down
Loading