* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
* \file reflection_pad3d_grad_utils.h
* \brief
*/
#ifndef REFLECTION_PAD3D_GRAD_UTILS_H
#define REFLECTION_PAD3D_GRAD_UTILS_H
#include <typeinfo>
#include "kernel_operator.h"
class CopyOutParam
{
public:
int64_t dstOffset;
int64_t srcOffset;
int64_t calH;
int64_t calW;
int64_t offsetWidth;
bool isAtomicAdd;
int64_t srcStride;
__aicore__ inline CopyOutParam(
int64_t dstOffset_tmp, int64_t srcOffset_tmp, int64_t calH_tmp, int64_t calW_tmp, int64_t offsetWidth_tmp,
bool isAtomicAdd_tmp, int64_t srcStride_tmp = 0)
{
dstOffset = dstOffset_tmp;
srcOffset = srcOffset_tmp;
calH = calH_tmp;
calW = calW_tmp;
offsetWidth = offsetWidth_tmp;
isAtomicAdd = isAtomicAdd_tmp;
srcStride = srcStride_tmp;
}
};
class CopyInParam
{
public:
int64_t dstOffset;
int64_t srcOffset;
int64_t calH;
int64_t calW;
__aicore__ inline CopyInParam(int64_t dstOffset_tmp, int64_t srcOffset_tmp, int64_t calH_tmp, int64_t calW_tmp)
{
dstOffset = dstOffset_tmp;
srcOffset = srcOffset_tmp;
calH = calH_tmp;
calW = calW_tmp;
}
};
template <typename T1, typename T2>
__aicore__ inline T1 CeilDiv(T1 a, T2 b)
{
if (b <= 0) {
return 0;
}
return (a + b - 1) / b;
};
template <typename T1, typename T2>
__aicore__ inline T1 FloorDiv(T1 a, T2 b)
{
if (b <= 0) {
return 0;
}
return (a) / (b);
};
template <typename T1, typename T2>
__aicore__ inline T1 CeilAlign(T1 a, T2 b)
{
if (b <= 0) {
return 0;
}
return (a + b - 1) / b * b;
};
template <typename T1, typename T2>
__aicore__ inline T1 FloorAlign(T1 a, T2 b)
{
if (b <= 0) {
return 0;
}
return (a) / b * b;
};
template <typename T>
__aicore__ inline T Mymax(T a, T b)
{
if (a > b) {
return a;
}
return b;
};
#endif