| update pr template Co-authored-by: Hututu-w<wangyibing13@huawei.com> # message auto-generated for no-merge-commit merge: !844 merge dev_doc into develop update pr template Created-by: Hututu-w Commit-by: Hututu-w Merged-by: liu1103xwxw Description: 更新pr描述模板 See merge request: Ascend/memfabric_hybrid!844 | 13 天前 |
| [反合][zbal]support aicpu sdma Co-authored-by: james88liu<liujianxing1@huawei.com> Co-authored-by: jamesjxliu<445169590@qq.com> # message auto-generated for no-merge-commit merge: !847 merge br_feat_zbal_sdma into develop [反合][zbal]support aicpu sdma Created-by: james88liu Commit-by: james88liu;jamesjxliu Merged-by: victor7wang Description: # Pull Request Template AICPU SDMA传输框架 + 算子 ## Description  ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!847 | 8 天前 |
| [core] fix: return error when address not found but srcRank==destRank in LocateAddrAndRank Co-authored-by: liuao<royliu.chengdu@gmail.com> # message auto-generated for no-merge-commit merge: !785 merge develop2 into develop [core] fix: return error when address not found but srcRank==destRank in LocateAddrAndRank Created-by: gcw_M5Xrk6cX Commit-by: royliu;liuao Merged-by: liu1103xwxw Description: fix: return error when address not found but srcRank==destRank in LocateAddrAndRank fix: only return error in non-trans scene LocateAddrAndRank; update UT expectations See merge request: Ascend/memfabric_hybrid!785 | 23 天前 |
| [core] remove trans malloc dram Co-authored-by: chenyz6<chenxin146@huawei.com> # message auto-generated for no-merge-commit merge: !850 merge develop into develop [core] remove trans malloc dram Created-by: chenyz6 Commit-by: chenyz6 Merged-by: yrewzjsx Description: remove trans malloc dram See merge request: Ascend/memfabric_hybrid!850 | 2 天前 |
| [core] fix: add A5 notify support Co-authored-by: shilinlee_com<836160610@qq.com> # message auto-generated for no-merge-commit merge: !865 merge mf_a5_fix_nitify into develop [core] fix: add A5 notify support Created-by: shilinlee_com Commit-by: shilinlee_com;shilinlee Merged-by: chenyz6 Description: # Pull Request 模板 — 基于最近两个 Commit --- ## Description(描述) 本 PR 包含的变更,摘要如下: 为昇腾 A5 平台新增 Notify 机制支持,涉及设备端内核同步、内存分配及编译基础设施: - **Notify 同步**:在 DeviceUrmaTransportManager 中新增 AclrtCreateNotify / AclrtWaitAndResetNotify / AclrtGetNotifyId 调用链,替代原有的纯 AclrtSynchronizeStream 方式,降低设备内核等待开销。 - **设备端 Flag 传递**:LaunchDeviceKernelBatch 新增 remoteFlagAddr 参数,将 Notify 地址和长度注入内核参数,支持内核态完成通知。 - **A5 内存分配**:HybmConnBasedSegment::AllocMemory 中为 ASCEND_950 增加 HalMemAlloc 分支,优先使用 DRAM 大页内存。 - **Swap 内存重构**:DataOpDeviceURMA 中 swap 空间从 AclrtMallocHost + HalHostRegister 改为 AclrtMalloc(HBM 大页直配),VA 信息类型从 HOST 切换为 DEVICE。 - **DL 符号加载优化**:dl_acl_api.cpp / dl_rt_api.cpp 中将部分必要符号从 DL_LOAD_SYM 改为 DL_LOAD_SYM_OPTIONAL,避免 A5 平台因缺少符号而加载失败。 - **新增基础设施**: - cmake/config_slog.cmake:CANN slog 日志库查找模块。 - src/hybm/csrc/under_api/dl_rt_def.h:RT 层常量定义。 - src/hybm/ops/hybm_kernel/hybm_kernel_log.h:内核日志工具。 - **常量调整**:DEVICE_URMA_MAX_EXPORT_KEY_LENGTH 从 KEY_SIZE * 4 扩展至 KEY_SIZE * 6;内核超时时间改用 HYBM_NOTIFY_DEFAULT_WAIT_TIME_S。 - **其他**:ComposeTransportManager 中 device slot 区间注释修正;REG_MR_FLAG_ACL_DRAM → REG_MR_FLAG_HBM。 ## Related Issues(相关 Issue) --- ## Type of Change(变更类型) 请勾选适用项: - [ ] Bug fix(错误修复,非破坏性变更) - [x] New feature(新功能,非破坏性变更) - [ ] Breaking change(破坏性变更,可能导致现有功能异常) - [x] Code refactor / cleanup(代码重构或清理) - [ ] Documentation update(文档更新) - [ ] Build / CI(构建或持续集成相关) - [ ] Other(其他) --- ## Testing(测试说明) - [x] 编译通过(cmake 构建无报错) - [ ] 新增单元测试覆盖 - [ ] 已有测试全部通过 - [x] 在 A5 硬件上验证 Notify 同步流程 - [ ] 在非 A5 平台验证回归(DL_LOAD_SYM_OPTIONAL 兼容性) - [ ] 尚未验证(请说明原因)  --- ## Checklist(自查清单) - [x] 代码遵循项目编码规范 - [x] 已自检无残留调试代码或注释块 - [x] 新增 CMake 模块(config_slog.cmake)已包含必要的路径保护(ASCEND_HOME_PATH 未设置时跳过) - [x] 所有 DL_LOAD_SYM_OPTIONAL 变更在缺失符号时不会导致崩溃 - [x] 内存分配/释放路径成对检查(AclrtMalloc ↔ AclrtFree,HalMemAlloc ↔ HalMemFree) - [x] 本模板仅为最近两个 Commit 生成,未混入分支其他变更 See merge request: Ascend/memfabric_hybrid!865 | 8 天前 |
| 更新Doc,将create2()函数增加约束 Co-authored-by: huawei_zixiqu<quzixi@huawei.com> # message auto-generated for no-merge-commit merge: !858 merge DTS-update-doc into develop [core] 更新Doc,将create2()函数增加约束 Created-by: huawei_zixiqu Commit-by: huawei_zixiqu Merged-by: liu1103xwxw Description: # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> 约束用户,若使用URMA,需启用56bit gva ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> #231 ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [X] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [X] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!858 | 3 天前 |
| [core] 环境变量统一 Co-authored-by: hansanyue<hansanyue@h-partners.com> # message auto-generated for no-merge-commit merge: !790 merge dev_2 into develop [core] 环境变量统一 Created-by: han-sanyue Commit-by: hansanyue Merged-by: liu1103xwxw Description: # Pull Request Template ## Description 统一运行期环境变量命名,将所有环境变量放入同一个文件中定义。 同时兼容旧环境变量,当发现使用了旧环境变量时会提示。 | 旧名称 | 新名称 | | ------------------------------------------ | ------------------------------ | | MEMFABRIC_HYBRID_CONFIG_STORE_PORT_START | MF_CONFIG_STORE_PORT_START | | MEMFABRIC_HYBRID_CONFIG_STORE_PORT_END | MF_CONFIG_STORE_PORT_END | | MF_SOCKET_URL | MF_SOCKET_URL | | TRANSPORT_MANAGER | MF_TRANSPORT_MANAGER | | ASCEND_MF_LOG_LEVEL | MF_LOG_LEVEL | | SHMEM_LOG_LEVEL | MF_LOG_LEVEL | | ACCLINK_CHECK_PERIOD_HOURS | MF_ACC_CHECK_PERIOD_HOURS | | ACCLINK_CERT_CHECK_AHEAD_DAYS | MF_ACC_CERT_CHECK_AHEAD_DAYS | | HYBM_RDMA_SWAP_SPACE_SIZE | MF_HYBM_RDMA_SWAP_SPACE_SIZE | | ASCEND_MF_STORE_URL | MF_CONFIG_STORE_URL | | MF_SMEM_GROUP_RETRY_TIME | MF_GROUP_RETRY_TIME | ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!790 | 15 天前 |
| [feature] 修复mooncake开启etcd模式,内存数据数据不正确的问题 Co-authored-by: mrh1024<marunhua1@h-partners.com> # message auto-generated for no-merge-commit merge: !740 merge develop_fix_mooncake into develop [feature] 修复mooncake开启etcd模式,内存数据数据不正确的问题 Created-by: mrh1024 Commit-by: mrh1024 Merged-by: chenyz6 Description: **变更说明** MasterMetricManager是单例模式,MasterService随etcd连接一同创建和销毁,销毁时没有对MasterMetricManager中的信息进行清理,MasterService再次创建是会重复注册client信息 在MasterService销毁时一同清理MasterMetricManager中的client信息 See merge request: Ascend/memfabric_hybrid!740 | 30 天前 |
| ci: add pre-commit script Co-authored-by: shilinlee<836160610@qq.com> # message auto-generated for no-merge-commit merge: !472 merge mf_pre_commit into develop ci: add pre-commit script Created-by: shilinlee_com Commit-by: shilinlee Merged-by: yrewzjsx Description: # Pull Request Template ## Description chore: add pre-commit script and format files ### Tips 本地提交代码前自动格式化: pip install pre-commit pre-commit install **手动运行脚本,执行增量检查。** 设置对比基线的分支环境变量,**增量**检查你MR检查: bash export TARGET_BRANCH=develop # 默认develop bash script/ci-pre-commit-pr.sh ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [x] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!472 | 2 个月前 |
| [core] 解决mem_scan.py部分系统报错的问题 Co-authored-by: mrh1024<marunhua1@h-partners.com> # message auto-generated for no-merge-commit merge: !874 merge develop_fix into develop [core] 解决mem_scan.py部分系统报错的问题 Created-by: mrh1024 Commit-by: mrh1024 Merged-by: chenyz6 Description: # Pull Request Template ## Description 解决mem_scan.py在部分环境上运行报错的问题 根本原因: 代码根据 /sys/devices/system/node/node{$index}/memory{index} 文件来确定内存信息,涉及对 memory{index} 中index强转为数字,一些环境上存在memory_fault目录,导致代码运行报错 解决方法: 增加对memory{index} 中index是否为数字的判断 <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [x] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!874 | 2 天前 |
| [core] fix: device_urma register dram buffer for big memory Co-authored-by: shilinlee_com<836160610@qq.com> # message auto-generated for no-merge-commit merge: !875 merge fm_a5_register into develop [core] fix: device_urma register dram buffer for big memory Created-by: shilinlee_com Commit-by: shilinlee_com Merged-by: chenyz6 Description: # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [x] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing  ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!875 | 2 天前 |
| [core] 补充UT覆盖率 Co-authored-by: h30042012<huanghaiyun3@h-partners.com> # message auto-generated for no-merge-commit merge: !868 merge develop0615 into develop [core] 补充UT覆盖率 Created-by: huanghaiyun_ Commit-by: huanghaiyun_;h30042012 Merged-by: liu1103xwxw Description: # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!868 | 2 天前 |
| [core] fix: use <etcd_ip> placeholder instead of 0.0.0.0 for security compliance;remove huawei url Co-authored-by: liuao<royliu.chengdu@gmail.com> # message auto-generated for no-merge-commit merge: !771 merge security into develop [core] fix: use <etcd_ip> placeholder instead of 0.0.0.0 for security compliance;remove huawei url Created-by: gcw_M5Xrk6cX Commit-by: liuao Merged-by: liu1103xwxw Description: # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [x] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!771 | 26 天前 |
| !824 【A2】GVM 支持 Device RDMA | 9 个月前 |
| feat: support a5 device_urma transport Co-authored-by: shilinlee<836160610@qq.com> Co-authored-by: chenyz6<chenxin146@huawei.com> # message auto-generated for no-merge-commit merge: !559 merge mf_hcomm_a5_doc into develop feat: support a5 device_urma transport Created-by: shilinlee_com Commit-by: shilinlee;shilinlee_com;chenyz6 Merged-by: yrewzjsx Description: # Pull Request Template ## Description docs: add memfabric_a5_urma_transport.md ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [x] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests -->  ## Checklist - [x] I have performed a self-review of my own code. - [x] I have updated the documentation. - [x] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!559 | 19 天前 |
| support to specify mf 3rd-deps install path by CMAKE_INSTALL_PREFIX Co-authored-by: royliu<royliu.chengdu@gmail.com> # message auto-generated for no-merge-commit merge: !220 merge develop into develop support to specify mf 3rd-deps install path by CMAKE_INSTALL_PREFIX Created-by: gcw_M5Xrk6cX Commit-by: royliu Merged-by: liu1103xwxw Description: # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [x] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [x] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!220 | 4 个月前 |
| ci: add pre-commit script Co-authored-by: shilinlee<836160610@qq.com> # message auto-generated for no-merge-commit merge: !472 merge mf_pre_commit into develop ci: add pre-commit script Created-by: shilinlee_com Commit-by: shilinlee Merged-by: yrewzjsx Description: # Pull Request Template ## Description chore: add pre-commit script and format files ### Tips 本地提交代码前自动格式化: pip install pre-commit pre-commit install **手动运行脚本,执行增量检查。** 设置对比基线的分支环境变量,**增量**检查你MR检查: bash export TARGET_BRANCH=develop # 默认develop bash script/ci-pre-commit-pr.sh ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [x] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!472 | 2 个月前 |
| [core] fix: use <etcd_ip> placeholder instead of 0.0.0.0 for security compliance;remove huawei url Co-authored-by: liuao<royliu.chengdu@gmail.com> # message auto-generated for no-merge-commit merge: !771 merge security into develop [core] fix: use <etcd_ip> placeholder instead of 0.0.0.0 for security compliance;remove huawei url Created-by: gcw_M5Xrk6cX Commit-by: liuao Merged-by: liu1103xwxw Description: # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [x] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!771 | 26 天前 |
| move transfer performance examples to benchmark Co-authored-by: wonder1121<wangdan@huawei.com> # message auto-generated for no-merge-commit merge: !564 merge develop_transfer into develop move transfer performance examples to benchmark Created-by: wonder1121 Commit-by: wonder1121 Merged-by: yrewzjsx Description: ==================================================Trans Test Start================================================== Test completed: latency 67.45us, block size 32KB, total threads=2, per-thread times=100, aggregated throughput 6.81 GB/s Test completed: latency 65.35us, block size 64KB, total threads=2, per-thread times=100, aggregated throughput 14.60 GB/s Test completed: latency 65.62us, block size 128KB, total threads=2, per-thread times=100, aggregated throughput 23.32 GB/s Test completed: latency 75.19us, block size 256KB, total threads=2, per-thread times=100, aggregated throughput 24.00 GB/s Test completed: latency 66.34us, block size 512KB, total threads=2, per-thread times=100, aggregated throughput 24.32 GB/s Test completed: latency 84.17us, block size 1024KB, total threads=2, per-thread times=100, aggregated throughput 24.42 GB/s Test completed: latency 95.28us, block size 2048KB, total threads=2, per-thread times=100, aggregated throughput 24.47 GB/s Test completed: latency 175.10us, block size 4096KB, total threads=2, per-thread times=100, aggregated throughput 24.49 GB/s Test completed: latency 346.41us, block size 8192KB, total threads=2, per-thread times=100, aggregated throughput 24.50 GB/s Test completed: latency 691.24us, block size 16384KB, total threads=2, per-thread times=100, aggregated throughput 24.50 GB/s ==================================================Test End================================================== # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!564 | 1 个月前 |
| !1114 更新readme,构建,license | 6 个月前 |
| [docs] 文档一致性审查修复: 修复26个文档88项问题 Co-authored-by: j00808874<jiangchanghong3@huawei.com> # message auto-generated for no-merge-commit merge: !733 merge mrdoc into develop [docs] 文档一致性审查修复: 修复26个文档88项问题 Created-by: j00808874 Commit-by: j00808874 Merged-by: yrewzjsx Description:   See merge request: Ascend/memfabric_hybrid!733 | 1 个月前 |
| 更新版本号 1.2.0 Co-authored-by: p3rry<penghaiqing1@huawei.com> # message auto-generated for no-merge-commit merge: !694 merge develop_0516_version into develop 更新版本号 1.2.0 Created-by: p3rry Commit-by: p3rry Merged-by: yrewzjsx Description: # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [ ] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!694 | 1 个月前 |
| [core] fix: use <etcd_ip> placeholder instead of 0.0.0.0 for security compliance;remove huawei url Co-authored-by: liuao<royliu.chengdu@gmail.com> # message auto-generated for no-merge-commit merge: !771 merge security into develop [core] fix: use <etcd_ip> placeholder instead of 0.0.0.0 for security compliance;remove huawei url Created-by: gcw_M5Xrk6cX Commit-by: liuao Merged-by: liu1103xwxw Description: # Pull Request Template ## Description <!-- Provide a clear summary of the change, the problem it solves, and the technical approach. --> ## Related Issues <!-- Replace with actual issue numbers. Example: Closes #123, Related to #456 --> ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Performance optimization - [ ] Documentation update - [x] Other (please describe):_______________ ## Testing <!-- Describe how the changes were tested. Include: - Unit/integration test coverage - Manual validation steps - Links to CI reports (e.g., CIDA) if available - Note any pending tests --> ## Checklist - [ ] I have performed a self-review of my own code. - [ ] I have updated the documentation. - [ ] I have added tests to prove my changes are effective. See merge request: Ascend/memfabric_hybrid!771 | 26 天前 |