/*******************************************************************************
* Copyright 2020 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License")* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#include "gpu/intel/bnorm/xe.h"
#include "gpu/intel/bnorm/xe_reduce.h"
// BWD kernels that support both blocked and NHWC layouts (USE_NHWC definition).
// These kernels perform IC tail processing for NHWC and for ic % 8 == 0
// cases only.
// Two types of reduction are implemented:
// 1) Reduction over scratchpad (reduce_temp) with SLM use, implemented by
// xe_reduce_stats kernel.
// 2) Atomics-based reduction with SLM use (FUSED_ATOMICS_REDUCTION definition),
// implemented as part of calc kernels, see xe_*_fused_reduction()
// functions in xe.h. This reduction implementation requires zeroing and
// finalization steps, see xe_fused_reduce_* kernels in xe_reduce.cl
#define LOAD_DATA_Nx16_USING_LOOP(n, dest, src) \
{ \
for (int k = 0 dest[k] = LOAD_DATA_1x16(&src[k * IC_BLOCK_STRIDE]) } \
}
#define LOAD_UINT_Nx16_USING_LOOP(n, dest, src) \
{ \
for (int k = 0 dest[k] = LOAD_UINT_1x16(&src[k * IC_BLOCK_STRIDE]) } \
}
#define LOAD_CHAR_Nx16_USING_LOOP(n, dest, src) \
{ \
for (int k = 0 dest[k] = LOAD_CHAR_1x16(&src[k * IC_BLOCK_STRIDE]) } \
}
#define LOAD_DATA_8x16_USING_LAYOUT(dest, src) \
{ \
if (USE_NHWC) { \
LOAD_DATA_Nx16_USING_LOOP(8, dest, src) } else { \
dest = LOAD_DATA_8x16(src) } \
}
#define LOAD_UINT_8x16_USING_LAYOUT(dest, src) \
{ \
if (USE_NHWC) { \
LOAD_UINT_Nx16_USING_LOOP(8, dest, src) } else { \
dest = LOAD_UINT_8x16(src) } \
}
#define LOAD_CHAR_8x16_USING_LAYOUT(dest, src) \
{ \
if (USE_NHWC) { \
LOAD_CHAR_Nx16_USING_LOOP(8, dest, src) } else { \
dest = LOAD_CHAR_8x16(src) } \
}
#define LOAD_DATA_Nx16_USING_LOOP_HALF(n, dest, src) \
{ \
for (int k = 0 dest[k] = LOAD_DATA_1x16(&src[k * IC_BLOCK_STRIDE]) } \
}
NAMED_KERNEL_ATTR(CALC)
__kernel void xe_calculate_stats(__global DATA_T *src, __global float *mean,
__global DATA_T *diff_dst, __global char *ws,
__global float *temp_reduce, volatile __global atomic_float *diff_scale,
volatile __global atomic_float *diff_shift) {
const int mb = GWS_GET_STAT_MB() const int c = GWS_GET_STAT_IC() const int sp_block_idx = GWS_GET_STAT_SP() const int mb_sp_idx = mb * STAT_SP_NBLOCKS + sp_block_idx const int group_c_offset = REDUCE_STAT_NBLOCKS * 16 * (int)(c / 16) const int simd_id = get_sub_group_local_id()#if HAS_IC_TAIL
const bool is_last_ic_block = c + 16 > IC const bool is_last_sp_block = (sp_block_idx == STAT_SP_NBLOCKS - 1)#endif
temp_reduce += group_c_offset
#if USE_NHWC
const int offset = c + sp_block_idx * STAT_SP_BLOCK * IC#else
const int offset = (c & 15) + sp_block_idx * STAT_SP_BLOCK * 16
+ (c & ~15) * SP + mb * SP * IC#endif
src += offset diff_dst += offset ws += offset
float v_mean = MAYBE_LAST_IC_LOAD_FLOAT_1x16(mean, c)
float8 diff_gamma = 0.0f float8 diff_beta = 0.0f
#if HAS_STAT_SP_TAIL
int sp if (sp_block_idx == STAT_SP_TAIL) {
sp = SP - STAT_SP_TAIL * STAT_SP_BLOCK } else {
sp = STAT_SP_BLOCK }
#else
int sp = STAT_SP_BLOCK#endif
const int C_PARALLEL_FACTOR = 8
for ( float8 src_data float8 dd_data
#if FUSE_BN_RELU == 1
char8 ws_data LOAD_CHAR_8x16_USING_LAYOUT(ws_data, ws)#endif // #if FUSE_BN_RELU == 1
#if IS_IC_EQ_8
LOAD_DATA_Nx16_USING_LOOP_HALF(8, src_data, src) LOAD_DATA_Nx16_USING_LOOP_HALF(8, dd_data, diff_dst) float8 t_src = intel_sub_group_shuffle_down(src_data, src_data, 8) float8 t_dd = intel_sub_group_shuffle_down(dd_data, dd_data, 8) for (int k = 0 dd_data[k + 1] = t_dd[k] src_data[k + 1] = t_src[k] }
#elif HAS_IC_TAIL
const bool is_last_sp = sp - C_PARALLEL_FACTOR <= C_PARALLEL_FACTOR - 1 if (is_last_sp && is_last_ic_block && is_last_sp_block) {
LOAD_DATA_Nx16_USING_LOOP(7, src_data, src) LOAD_DATA_Nx16_USING_LOOP(7, dd_data, diff_dst) dd_data[7] = simd_id < 8
? CONVERT_FLOAT_T(diff_dst[7 * IC_BLOCK_STRIDE + simd_id])
: 0.0f src_data[7] = simd_id < 8
? CONVERT_FLOAT_T(src[7 * IC_BLOCK_STRIDE + simd_id])
: 0.0f } else {
LOAD_DATA_Nx16_USING_LOOP(8, src_data, src) LOAD_DATA_Nx16_USING_LOOP(8, dd_data, diff_dst) }
#else
LOAD_DATA_8x16_USING_LAYOUT(src_data, src) LOAD_DATA_8x16_USING_LAYOUT(dd_data, diff_dst)#endif
src += C_PARALLEL_FACTOR * IC_BLOCK_STRIDE diff_dst += C_PARALLEL_FACTOR * IC_BLOCK_STRIDE#if FUSE_BN_RELU == 1
ws += C_PARALLEL_FACTOR * IC_BLOCK_STRIDE#endif // #if FUSE_BN_RELU == 1
#if FUSE_BN_RELU == 1
const float8 C_ZERO = 0.0f dd_data = select(C_ZERO, dd_data, convert_int8(ws_data))#endif // #if FUSE_BN_RELU == 1
const float8 v0 = src_data - v_mean diff_gamma = fma(v0, dd_data, diff_gamma) diff_beta += dd_data }
#if HAS_STAT_SP_TAIL
if (sp_block_idx == STAT_SP_TAIL) {
sp = (SP - STAT_SP_TAIL * STAT_SP_BLOCK) % C_PARALLEL_FACTOR while (sp-- >= 1) {
#if FUSE_BN_RELU == 1
const char ws_data = LOAD_CHAR_1x16(&ws[0])#else
const char ws_data = 1#endif // #if FUSE_BN_RELU == 1
#if HAS_IC_TAIL
float src_data, dd_data if (sp == 0 && is_last_ic_block) {
src_data = simd_id < 8 ? CONVERT_FLOAT_T(src[simd_id]) : 0.0f dd_data = simd_id < 8 ? CONVERT_FLOAT_T(diff_dst[simd_id])
: 0.0f } else {
src_data = LOAD_DATA_1x16(&src[0]) dd_data = LOAD_DATA_1x16(&diff_dst[0]) }
#else
const float src_data = LOAD_DATA_1x16(&src[0]) const float dd_data = LOAD_DATA_1x16(&diff_dst[0])#endif
src += IC_BLOCK_STRIDE diff_dst += IC_BLOCK_STRIDE#if FUSE_BN_RELU == 1
ws += IC_BLOCK_STRIDE#endif // #if FUSE_BN_RELU == 1
if (ws_data != 0) {
const float v0 = src_data - v_mean const float diff_gamma_tmp = fma(v0, dd_data, diff_gamma[0]) diff_gamma[0] = diff_gamma_tmp diff_beta[0] += dd_data }
}
}
#endif // #if HAS_STAT_SP_TAIL
for (int i = 1 diff_gamma[0] += diff_gamma[i] diff_beta[0] += diff_beta[i] }
#if FUSED_ATOMICS_REDUCTION
__local float local_gamma[2 * CALC_SLM_SIZE] __local float *local_beta = local_gamma + CALC_SLM_SIZE xe_calc_fused_reduction(diff_scale, diff_shift, c, diff_gamma, diff_beta,
NULL, NULL, local_gamma, local_beta)#else
// scratchpad layout:
// PADDED_IC - diff_gamma reduction, wrote by xe_reduce_stats kernel
// REDUCE_STAT_NBLOCKS * PADDED_IC - diff_gamma stats calculated by this kernel
// PADDED_IC - diff_beta reduction, wrote by xe_reduce_stats kernel
// REDUCE_STAT_NBLOCKS * PADDED_IC - diff_beta stats calculated by this kernel
STORE_FLOAT_1x16(&temp_reduce[PADDED_IC + mb_sp_idx * 16], diff_gamma[0]) STORE_FLOAT_1x16(
&temp_reduce[2 * PADDED_IC + REDUCE_STAT_NBLOCKS * PADDED_IC
+ mb_sp_idx * 16],
diff_beta[0])#endif // FUSED_ATOMICS_REDUCTION
}
inline void write_8x16_block(__global DATA_T *ptr, int c, float8 val) {
#if USE_NHWC
#if HAS_IC_TAIL
const int simd_id = get_sub_group_local_id() const bool is_last_ic_block = c + 16 > IC if (is_last_ic_block) {
if (simd_id < 8) {
for (int k = 0 ptr[k * IC_BLOCK_STRIDE + simd_id] = CONVERT_DATA_T(val[k]) }
} else
#endif // HAS_IC_TAIL
for (int k = 0 STORE_DATA_1x16(&ptr[k * IC_BLOCK_STRIDE], val[k])#else
STORE_DATA_8x16(&ptr[0], val)#endif // #if USE_NHWC
}
inline void write_1x16_block(__global DATA_T *ptr, int c, float val) {
#if HAS_IC_TAIL
const int simd_id = get_sub_group_local_id() const bool is_last_ic_block = c + 16 > IC if (!is_last_ic_block) {
STORE_DATA_1x16(&ptr[0], val) } else {
if (simd_id < 8) { ptr[simd_id] = CONVERT_DATA_T(val) }
#else
STORE_DATA_1x16(&ptr[0], val)#endif
}
KERNEL_ATTR
__kernel void xe_bnorm_bwd(__global DATA_T *src, __global float *mean,
__global float *variance, __global DATA_T *diff_dst,
__global float *scaleshift, __global char *ws,
__global DATA_T *diff_src, __global float *diff_scale,
__global float *diff_shift, float eps, __global DATA_T *diff_src_add) {
const int c = GWS_GET_IC() const int simd_id = get_sub_group_local_id()#if HAS_IC_TAIL
const bool is_last_ic_block = c + 16 > IC#endif
const float v_variance = MAYBE_LAST_IC_LOAD_FLOAT_1x16(variance, c)#if CALCULATE_DIFF_STATS == 1
const float v_mean = MAYBE_LAST_IC_LOAD_FLOAT_1x16(mean, c) const float diff_gamma = MAYBE_LAST_IC_LOAD_FLOAT_1x16(diff_scale, c)#if DIFF_SHIFT == 1
const float diff_beta = MAYBE_LAST_IC_LOAD_FLOAT_1x16(diff_shift, c)#else
const float diff_beta = MAYBE_LAST_IC_LOAD_FLOAT_1x16(
diff_shift, PADDED_IC + REDUCE_STAT_NBLOCKS * PADDED_IC + c)#endif // #if DIFF_SHIFT == 1
#endif // #if CALCULATE_DIFF_STATS == 1
#if USE_SCALE == 1
const float gamma = MAYBE_LAST_IC_LOAD_FLOAT_1x16(scaleshift, c)#else
const float gamma = 1#endif // #if USE_SCALE == 1
const int sp_block_idx = GWS_GET_SP()#if USE_NHWC
const int offset = c + sp_block_idx * VECT_SIZE * IC#else
const int mb = GWS_GET_MB() const int offset = (c & 15) + sp_block_idx * VECT_SIZE * 16 + (c & ~15) * SP
+ mb * SP * IC#endif
#if HAS_IC_TAIL
const bool is_last_sp_block = sp_block_idx == SP / VECT_SIZE - 1#endif
src += offset diff_dst += offset ws += offset diff_src += offset#if FUSE_BN_ADD_RELU
diff_src_add += offset#endif
#if HAS_SP_TAIL
int sp if (sp_block_idx == SP_TAIL / VECT_SIZE) {
sp = SP - SP_TAIL } else {
sp = VECT_SIZE }
#else
int sp = VECT_SIZE#endif
const float sqrt_variance = 1.0f / sqrt(v_variance + eps)
const int C_PARALLEL_FACTOR = 8 for ( float8 src_data float8 dd_data
#if FUSE_BN_RELU == 1
char8 ws_data LOAD_CHAR_8x16_USING_LAYOUT(ws_data, ws)#endif // #if FUSE_BN_RELU == 1
#if IS_IC_EQ_8
LOAD_DATA_Nx16_USING_LOOP_HALF(8, src_data, src) LOAD_DATA_Nx16_USING_LOOP_HALF(8, dd_data, diff_dst) float8 t_dd = intel_sub_group_shuffle_down(dd_data, dd_data, 8) float8 t_src = intel_sub_group_shuffle_down(src_data, src_data, 8) for (int k = 0 dd_data[k + 1] = t_dd[k] src_data[k + 1] = t_src[k] }
#elif HAS_IC_TAIL && !HAS_SP_TAIL
const bool is_last_sp = sp - C_PARALLEL_FACTOR <= C_PARALLEL_FACTOR - 1 if (is_last_sp && is_last_ic_block && is_last_sp_block) {
LOAD_DATA_Nx16_USING_LOOP(7, src_data, src) LOAD_DATA_Nx16_USING_LOOP(7, dd_data, diff_dst) dd_data[7] = simd_id < 8
? CONVERT_FLOAT_T(diff_dst[7 * IC_BLOCK_STRIDE + simd_id])
: 0.0f src_data[7] = simd_id < 8
? CONVERT_FLOAT_T(src[7 * IC_BLOCK_STRIDE + simd_id])
: 0.0f } else {
LOAD_DATA_Nx16_USING_LOOP(8, src_data, src) LOAD_DATA_Nx16_USING_LOOP(8, dd_data, diff_dst) }
#else
LOAD_DATA_8x16_USING_LAYOUT(dd_data, diff_dst) LOAD_DATA_8x16_USING_LAYOUT(src_data, src)#endif // IS_IC_EQ_8
src += C_PARALLEL_FACTOR * IC_BLOCK_STRIDE diff_dst += C_PARALLEL_FACTOR * IC_BLOCK_STRIDE#if FUSE_BN_RELU == 1
ws += C_PARALLEL_FACTOR * IC_BLOCK_STRIDE#endif // #if FUSE_BN_RELU == 1
#if FUSE_BN_RELU == 1
const float8 C_ZERO = 0.0f dd_data = select(C_ZERO, dd_data, convert_int8(ws_data))#if FUSE_BN_ADD_RELU
write_8x16_block(diff_src_add, c, dd_data)#endif
#endif // #if FUSE_BN_RELU == 1
#if CALCULATE_DIFF_STATS == 1
dd_data -= (diff_beta
+ (src_data - v_mean) * diff_gamma * sqrt_variance)
/ (MB * ID * IH * IW)#endif // #if CALCULATE_DIFF_STATS == 1
dd_data *= gamma * sqrt_variance write_8x16_block(diff_src, c, dd_data)
diff_src += C_PARALLEL_FACTOR * IC_BLOCK_STRIDE#if FUSE_BN_ADD_RELU
diff_src_add += C_PARALLEL_FACTOR * IC_BLOCK_STRIDE#endif
}
#if HAS_SP_TAIL
if (sp_block_idx == SP_TAIL / VECT_SIZE) {
sp = (SP - SP_TAIL) % C_PARALLEL_FACTOR while (sp-- >= 1) {
#if FUSE_BN_RELU == 1
const char ws_data = LOAD_CHAR_1x16(&ws[0])#endif // #if FUSE_BN_RELU == 1
#if HAS_IC_TAIL
float dd_data if (sp == 0 && is_last_ic_block)
dd_data = simd_id < 8 ? CONVERT_FLOAT_T(diff_dst[simd_id])
: 0.0f else
dd_data = LOAD_DATA_1x16(&diff_dst[0])#if CALCULATE_DIFF_STATS == 1
float src_data if (sp == 0 && is_last_ic_block)
src_data = simd_id < 8 ? CONVERT_FLOAT_T(src[simd_id]) : 0.0f else
src_data = LOAD_DATA_1x16(&src[0])#endif // #if CALCULATE_DIFF_STATS == 1
#else
float dd_data = LOAD_DATA_1x16(&diff_dst[0])#if CALCULATE_DIFF_STATS == 1
const float src_data = LOAD_DATA_1x16(&src[0])#endif // #if CALCULATE_DIFF_STATS == 1
#endif // HAS_IC_TAIL
src += IC_BLOCK_STRIDE diff_dst += IC_BLOCK_STRIDE#if FUSE_BN_RELU == 1
ws += IC_BLOCK_STRIDE#endif // #if FUSE_BN_RELU == 1
#if FUSE_BN_RELU == 1
if (ws_data == 0) dd_data = 0#if FUSE_BN_ADD_RELU
write_1x16_block(diff_src_add, c, dd_data)#endif
#endif // #if FUSE_BN_RELU == 1
#if CALCULATE_DIFF_STATS == 1
dd_data -= (diff_beta
+ (src_data - v_mean) * diff_gamma
* sqrt_variance)
/ (MB * ID * IH * IW)#endif // #if CALCULATE_DIFF_STATS == 1
dd_data *= gamma * sqrt_variance write_1x16_block(diff_src, c, dd_data)
diff_src += IC_BLOCK_STRIDE#if FUSE_BN_ADD_RELU
diff_src_add += IC_BLOCK_STRIDE#endif
}
}
#endif // #if HAS_SP_TAIL
}