已关闭
[Documentation|缺陷反馈]: ops-nn index 目录多算子 README 产品支持声明与 def AddConfig 注册不一致 #4504
daishuangshuang创建于 8月3日关闭于 8月4日
8月3日 修改了issue 的描述
8月3日 issue类型由 任务 改变为 缺陷
8月3日 将 sreofwiseone 设为负责人
yuning_chen
8月3日 评论:
8月3日 评论:
您好,感谢反馈,问题已收到,当前 @chenxingyu18 正在跟踪处理。


yuning_chen
8月3日 评论:
8月3日 评论:
/assign @chenxingyu18


8月3日 将 chenxingyu18 设为负责人,移除负责人 sreofwiseone
8月3日 关联了pull request:docs(index): 修正 15 个算子 README 产品支持声明与 ascend950 注册一致 (#4504)
8月4日 关闭了 issue
8月4日 添加了label:resolved
8月4日 issue状态由 待办的 改变为 已完成
8月4日 添加了label:Accepted
一、问题描述(必填)
ops-nn 仓库
index/目录下 15 个算子的 README.md「产品支持情况」表声明支持 Ascend 950 之外的多个产品(Atlas A3/A2/Atlas推理/Atlas训练等),但对应op_host/*_def.cpp中AICore().AddConfig(...)仅注册了ascend950单个 soc,文档与代码不一致。用户按 README 在 A2/A3 等产品上调用时会发现算子未适配,影响可用性判断。产品名与 soc 对应:Ascend 950→ascend950、Atlas A3→ascend910_93、Atlas A2→ascend910b、Atlas 200I/500 A2→ascend310p、Atlas 推理→ascend310、Atlas 训练→ascend910。
二、问题清单(共 15 个算子)
三、证据示例
以
index为例。README(
index/README.md:7-12)声明全部 6 个产品支持:| <term>Ascend 950PR/Ascend 950DT</term> | √ | | <term>Atlas A3 训练系列产品/Atlas A3 推理系列产品</term> | √ | | <term>Atlas A2 训练系列产品/Atlas A2 推理系列产品</term> | √ | | <term>Atlas 200I/500 A2 推理产品</term> | √ | | <term>Atlas 推理系列产品</term> | √ | | <term>Atlas 训练系列产品</term> | √ |def(
index/op_host/index_def.cpp:67)仅注册 ascend950:this->AICore().AddConfig("ascend950", aicore_config);