quant_batch_matmul_v3 和 sparse4to2quant_matmul 中存在以下日志规范问题:
quant_batch_matmul_v3
sparse4to2quant_matmul
faild
deminsion
quant_batch_matmul_v3/tests
sparse4to2quant_matmul/op_host/op_api
std::cout
matmul/quant_batch_matmul_v3/op_graph
matmul/quant_batch_matmul_v3/op_host/op_tiling
matmul/quant_batch_matmul_v3/tests/st/aclnnQuantMatmulV4
matmul/sparse4to2quant_matmul/op_host/op_api
问题不影响算子计算逻辑,但会影响日志可读性、规范性及流水线静态检查结果。
failed
dimension
OP_LOGE
https://gitcode.com/cann/ops-nn/pull/8995
问题描述
quant_batch_matmul_v3和sparse4to2quant_matmul中存在以下日志规范问题:quant_batch_matmul_v3的错误日志中存在faild、deminsion拼写错误。quant_batch_matmul_v3/tests的运行时日志存在中英文混杂及中文字符,不利于日志规范统一和自动化分析。sparse4to2quant_matmul/op_host/op_api中直接使用std::cout输出调试信息,不符合 opapi 日志规范。影响范围
matmul/quant_batch_matmul_v3/op_graphmatmul/quant_batch_matmul_v3/op_host/op_tilingmatmul/quant_batch_matmul_v3/tests/st/aclnnQuantMatmulV4matmul/sparse4to2quant_matmul/op_host/op_api问题不影响算子计算逻辑,但会影响日志可读性、规范性及流水线静态检查结果。
期望修复
faild修正为failed。deminsion修正为dimension。std::cout调试输出,保留规范的OP_LOGE错误日志。验收标准
faild、deminsion。sparse4to2quant_matmul/op_host/op_api中不再直接使用std::cout。关联 PR
https://gitcode.com/cann/ops-nn/pull/8995