Axvisor架构优化
#232
Replies: 1 comment 1 reply
-
赞成把分散的配置、分散的体系结构条件编译等进行集中处理,但是感觉不一定集中后都直接放置到axvisor。 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Axvisor 配置与架构解耦技术方案
1. 背景与动机
当前 axvisor 项目包含三个核心 crate:
随着对多架构(如 RISC-V、AArch64、x86_64 等)与多平台(不同 SoC / 板级)的支持增加,项目内部出现以下问题:
#[cfg(...)]
)在 axvm 与 axdevice 中大量散落,难以维护。造成信息路径割裂。
2. 目标
3. 优化方案
14. 结论
通过将所有架构相关与配置决策逻辑上移至 axvisor,并为 axvm、axdevice 提炼统一抽象与配置注入流程,可显著提升:
Beta Was this translation helpful? Give feedback.
All reactions