* 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 group_quant.cpp
* \brief
*/
#include "group_quant_base.h"
using namespace GroupQuant;
extern "C" __global__ __aicore__ void group_quant(GM_ADDR x, GM_ADDR scale, GM_ADDR groupIndex, GM_ADDR offset,
GM_ADDR y, GM_ADDR workspace, GM_ADDR tiling) {
if (workspace == nullptr) {
return;
}
GM_ADDR userWS = GetUserWorkspace(workspace);
if (userWS == nullptr) {
return;
}
GET_TILING_DATA(tilingData, tiling);
if (TILING_KEY_IS(0)) {
GroupQuant::GroupQuantBase<DTYPE_X, DTYPE_SCALE, DTYPE_GROUP_INDEX, DTYPE_SCALE, DTYPE_Y> op;
op.Init(x, scale, groupIndex, offset, y, &tilingData);
op.Process();
}
}