* 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.
*/
#include "config_log.h"
namespace ops_hccl {
static u64 g_debugConfig = 0ULL;
u64 GetDebugConfig()
{
return g_debugConfig;
}
HcclResult InitDebugConfigByEnv()
{
g_debugConfig = 0;
char* env = std::getenv("HCCL_DEBUG_CONFIG");
if (env == nullptr) {
HCCL_RUN_INFO("HCCL_DEBUG_CONFIG is not set, debugConfig set by default to 0x%llx", g_debugConfig);
return HCCL_SUCCESS;
}
bool invert = (env[0] == '^');
g_debugConfig = invert ? ~0ULL : 0ULL;
char* configValue = (env[0] == '^') ? env + 1 : env;
char* configDup = strdup(configValue);
CHK_PTR_NULL(configDup);
char* left = nullptr;
char* subConfig = strtok_r(configDup, ",", &left);
while (subConfig != nullptr) {
u64 mask = 0;
if (strcasecmp(subConfig, "ALG") == 0) {
mask = HCCL_ALG;
} else if (strcasecmp(subConfig, "TASK") == 0) {
mask = HCCL_TASK;
} else if (strcasecmp(subConfig, "RESOURCE") == 0) {
mask = HCCL_RES;
} else if (strcasecmp(subConfig, "AIV_OPS_EXC") == 0) {
mask = HCCL_AIV_OPS_EXC;
} else {
HCCL_ERROR("HCCL_DEBUG_CONFIG:%s is invalid, subConfig:%s is not supported", env, subConfig);
free(configDup);
return HCCL_E_PARA;
}
g_debugConfig = invert ? (g_debugConfig & (~mask)) : (g_debugConfig | mask);
subConfig = strtok_r(nullptr, ",", &left);
}
free(configDup);
HCCL_RUN_INFO("HCCL_DEBUG_CONFIG[%s], set debugConfig[0x%llx]", env, g_debugConfig);
return HCCL_SUCCESS;
}
}