Skip to content

Commit

Permalink
gpu: ocl: conv: dw: wrap continue stmt in macro
Browse files Browse the repository at this point in the history
  • Loading branch information
dyoussif authored and vpirogov committed Apr 21, 2023
1 parent a5d3568 commit 51d608d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/gpu/ocl/gen9_conv_dw_fwd_data.cl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2019-2021 Intel Corporation
* Copyright 2019-2023 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -277,7 +277,9 @@ gen9_conv_dw_fwd(const __global DATA_T *src, const __global DATA_T *wei,
S02 = DATA_ZERO;
S03 = DATA_ZERO;
#endif
#if KH != 1 || KW != 1 || KD != 1
continue;
#endif
}
DATA8_T A0 = AS_DATA8_T(
BLOCK_READ8((const __global BLOCK_DATA_T *)(src1)));
Expand Down

0 comments on commit 51d608d

Please sign in to comment.