| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
TTK init repo | 2 个月前 | |
TTK init repo | 2 个月前 | |
feat: XPU 硬件抽象 + 远程执行 + 精度标准2.1 Co-authored-by: dengguojie<dengguojie@huawei.com> # message auto-generated for no-merge-commit merge: !28 merge dev-1-integration into master feat: XPU 硬件抽象 + 远程执行 + 精度标准2.1 Created-by: dengguojie Commit-by: dengguojie Merged-by: cann-robot Description: ## 描述 新增 ttk/remote/ 远程执行框架: - server/: xpu_server, executor, execution_container, container, config(+xpu_server.yaml), Dockerfile.{torch,tf}, executor_main, README - client/: dispatcher, endpoint_view, xpu_collector, heartbeat, heartbeat_manager, health_file, config, tls(mTLS) - scripts/gen_tls_certs.sh framework_api/backends/ 硬件抽象: - 新增 base(Backend ABC)、torch_backend;gpu_backend 重命名为 xpu_backend - profiler 改为 backend 数据驱动;新增 CpuTorchBackend + --cpu CLI - config/: 新增 loader、default.yaml(hardware profile 探测) comparison/ 精度比对: - 新增 cross_check(output/golden/third_party 三方比对)、stat_rel_err、resolve - registry form-based 分派重构 - npu/op/comparison.py:comparing() 日志 with {standard},删 DYN_OFF 长度断言 test_spec / plugin: - loader 惰性加载(语法错误仅对 __spec__ 文件记 error);新增 validator、manager - plugin_loader 重构,删 builtin_plugin_loader - 删 user_defined_modules/(旧注册机制) - 新增 utilities/func_dispatch(统一分派 helper) npu/op: output_generation、profiling 接入 cross_check + third_party(tensorflow→tf 规范化)。 ## 关联的Issue <!-- 如果这个PR是为了解决特定的Issue,请在这里提供Issue链接。例如:关联Issue #000--> ## 测试 <!--描述进行了哪些测试来验证你的改动。--> ## 文档更新 <!--如果这个PR包含文档的更新,请在这里指出。例如:更新了README.md文件。--> ## 类型标签 <!-- [x] 表示选中 --> - [ ] Bug修复 - [x] 新特性 - [ ] 性能优化 - [ ] 文档更新 - [ ] 其他,请描述: See merge request: cann/ops-test-kit!28 | 20 天前 | |
支持 custom/vendor/builtin 三级优先级加载 Co-authored-by: dengguojie<dengguojie@huawei.com> # message auto-generated for no-merge-commit merge: !3 merge master into master 支持 custom/vendor/builtin 三级优先级加载 Created-by: dengguojie Commit-by: dengguojie Merged-by: cann-robot Description: ## 描述 支持 custom/vendor/builtin 三级优先级加载 按 CANN op_tiling 动态库加载优先级规范,新增 vendor 层支持, 实现 custom > vendors > built-in 的完整优先级链路。 1. platform.py: 路径函数重构为统一的 source 参数模式 get_opp_paths/get_op_impl_paths/get_impl_base_paths/get_op_info_paths 支持 builtin/vendor/custom 三种 source 2. OpInfoKeeper: 新增 vendor 层加载 + 来源追踪 - 加载顺序: built-in → vendors(倒序) → custom(倒序) - 新增 impl_base_path_of/kernel_info_of/get_operator_function 等接口 - 新增 binary_static_key_config_of/binary_info_config_of 延迟加载 - op_info 内记录 impl_prefix/ops_group/_impl_base_path 来源信息 3. _env.py: PYTHONPATH 加入 vendor impl 路径 4. registries.py: tiling 动态库加载顺序修正为 custom → vendors → built-in 5. op_api_info_keeper.py: 多目录头文件搜索 + so_path 追踪 - built-in SO 路径延迟解析(nm 扫描) - custom/vendor SO 路径直接设置 6. acl_interface.py: SO 加载简化为按需加载,按 so_path 路由 7. binary_kernel_match.py: 配置读取下沉到 OpInfoKeeper,变为纯匹配引擎 8. op_interface.py: get_operator_interface 委托 OpInfoKeeper.get_operator_function 9. field_parser.py: scalar_nested 统一替换 string_container_nested/ float_or_container_nested/int_container_nested,修复 float tuple 双重包装 bug ## 关联的Issue <!-- 如果这个PR是为了解决特定的Issue,请在这里提供Issue链接。例如:关联Issue #000--> ## 测试 <!--描述进行了哪些测试来验证你的改动。--> ## 文档更新 <!--如果这个PR包含文档的更新,请在这里指出。例如:更新了README.md文件。--> ## 类型标签 <!-- [x] 表示选中 --> - [x] Bug修复 - [x] 新特性 - [ ] 性能优化 - [ ] 文档更新 - [ ] 其他,请描述: See merge request: cann/ops-test-kit!3 | 2 个月前 | |
feat: add Agent Skills, ACLNN output auto-fill, and docs polish Co-authored-by: dengguojie<dengguojie@huawei.com> # message auto-generated for no-merge-commit merge: !16 merge dev-1 into master feat: add Agent Skills, ACLNN output auto-fill, and docs polish Created-by: dengguojie Commit-by: dengguojie Merged-by: cann-robot Description: ## 描述 - Add 4 Agent Skills (run-test, write-case, diagnose, write-plugin) with progressive disclosure structure (SKILL.md + references/) - Auto-fill output_tensor_indexes for ACLNN by naming convention (*Ref, *Out, *Output, *OutOptional, *OutputOptional, "output") - Add 20 unit tests for ACLNN auto-fill logic - Update docs (CN/EN): output auto-fill, scalar_dtypes, e2e section, input_data_ranges [min,max] closed interval + must values - Add AGENTS.md for CLI agent entry point - Update README with Agent Skills usage (3 loading methods) - Fix diagnose skill: __golden__ dict registration (not decorator) - Fix error-patterns: CANN paths for root/user, ast.parse check, exit -9/-11 diagnosis, proc-timeout clarification - Update CLI params: remove deprecated -s/--static, -l to GB unit, --validate as common option, update compile mode descriptions - Sync CN/EN guide docs for Task Execution, Kernel, E2E ## 关联的Issue https://gitcode.com/cann/ops-test-kit/issues/16 ## 测试 <!--描述进行了哪些测试来验证你的改动。--> ## 文档更新 <!--如果这个PR包含文档的更新,请在这里指出。例如:更新了README.md文件。--> ## 类型标签 <!-- [x] 表示选中 --> - [x] Bug修复 - [x] 新特性 - [ ] 性能优化 - [x] 文档更新 - [ ] 其他,请描述: See merge request: cann/ops-test-kit!16 | 1 个月前 | |
feat: registry_accessor + error_manager_cleaner + cext_loader 公共能力 Co-authored-by: dengguojie<dengguojie@huawei.com> # message auto-generated for no-merge-commit merge: !6 merge master into master feat: registry_accessor + error_manager_cleaner + cext_loader 公共能力 Created-by: dengguojie Commit-by: dengguojie Merged-by: cann-robot Description: ## 描述 1. cext_loader: 提取 C 扩展在线编译+加载公共逻辑(per-target flock + atomic marker) 2. error_manager_cleaner: 清理 ErrorManager 残留错误,防止跨用例污染 tiling 判定 3. op_registry_accessor: split API(Find + Invoke gen_simplifiedkey),支持 simplifiedKeyMode=2 算子 4. platform: 兼容新旧 CANN 目录结构(vendors/ built-in/op_impl vs op_impl/built-in),fallback 无 config.ini 时走 custom 路径 ## 关联的Issue <!-- 如果这个PR是为了解决特定的Issue,请在这里提供Issue链接。例如:关联Issue #000--> ## 测试 <!--描述进行了哪些测试来验证你的改动。--> ## 文档更新 <!--如果这个PR包含文档的更新,请在这里指出。例如:更新了README.md文件。--> ## 类型标签 <!-- [x] 表示选中 --> - [ ] Bug修复 - [x] 新特性 - [ ] 性能优化 - [ ] 文档更新 - [ ] 其他,请描述: See merge request: cann/ops-test-kit!6 | 2 个月前 | |
feat: add Agent Skills, ACLNN output auto-fill, and docs polish Co-authored-by: dengguojie<dengguojie@huawei.com> # message auto-generated for no-merge-commit merge: !16 merge dev-1 into master feat: add Agent Skills, ACLNN output auto-fill, and docs polish Created-by: dengguojie Commit-by: dengguojie Merged-by: cann-robot Description: ## 描述 - Add 4 Agent Skills (run-test, write-case, diagnose, write-plugin) with progressive disclosure structure (SKILL.md + references/) - Auto-fill output_tensor_indexes for ACLNN by naming convention (*Ref, *Out, *Output, *OutOptional, *OutputOptional, "output") - Add 20 unit tests for ACLNN auto-fill logic - Update docs (CN/EN): output auto-fill, scalar_dtypes, e2e section, input_data_ranges [min,max] closed interval + must values - Add AGENTS.md for CLI agent entry point - Update README with Agent Skills usage (3 loading methods) - Fix diagnose skill: __golden__ dict registration (not decorator) - Fix error-patterns: CANN paths for root/user, ast.parse check, exit -9/-11 diagnosis, proc-timeout clarification - Update CLI params: remove deprecated -s/--static, -l to GB unit, --validate as common option, update compile mode descriptions - Sync CN/EN guide docs for Task Execution, Kernel, E2E ## 关联的Issue https://gitcode.com/cann/ops-test-kit/issues/16 ## 测试 <!--描述进行了哪些测试来验证你的改动。--> ## 文档更新 <!--如果这个PR包含文档的更新,请在这里指出。例如:更新了README.md文件。--> ## 类型标签 <!-- [x] 表示选中 --> - [x] Bug修复 - [x] 新特性 - [ ] 性能优化 - [x] 文档更新 - [ ] 其他,请描述: See merge request: cann/ops-test-kit!16 | 1 个月前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 2 个月前 | ||
| 2 个月前 | ||
| 20 天前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 2 个月前 | ||
| 1 个月前 |