登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
AI 队友
登录
注册
11月29日 Gitee Talk | 模力方舟 AI 沙龙深圳站:看懂算力到应用的下一个主战场!点击立即报名~
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
11
Star
40
Fork
36
openEuler
/
open-source-summer
代码
Issues
235
Pull Requests
4
Wiki
统计
流水线
服务
JavaDoc
PHPDoc
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
我知道了,不再自动展开
更新失败,请稍后重试!
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
基于Rust的机器博弈引擎性能优化与RISC-V适配
待办的
#IC4GP5
开源之夏 2025
袁德俊
创建于
2025-04-27 21:55
# 项目名称 基于Rust的机器博弈引擎性能优化与RISC-V适配 # 项目描述 **相关背景**: 1. openEuler社区缺乏高性能AI北向应用示范,现有Python版五子棋引擎在RISC-V架构下搜索速度不足1000节点/秒 2. 机器博弈竞赛(五子棋/六子棋)对实时决策要求严格,需突破单机性能瓶颈 **已有工作**: - Python版五子棋引擎(https://gitee.com/StarEuler/DLC) - openEuler 23.09已集成Rust工具链 <p><img width="51.1%" src="https://foruda.gitee.com/images/1745617001299230350/682a5377_5631341.jpeg"> <img width="31.59%" src="https://foruda.gitee.com/images/1745617020422067282/5e6f2615_5631341.gif"></p> > 五子棋示范项目:强化学习曲线收敛图(左) & 实时对局可视化监测(右) - Left: RL training convergence - Right: Real-time gameplay visualization **存在的不足**: 1. Python版内存占用高(≥512MB),存在GC停顿问题 2. 缺乏多核并行优化,8核RISC-V利用率不足40% **希望改进的点**: 1. 用Rust重构核心算法,实现10倍以上性能提升 2. 探索RISC-V集群加速方案,提升分布式推理效率 **最终目标**: 开发高性能Rust机器博弈引擎,支持五子棋/六子棋双赛项,适配openEuler+RISC-V生态 # 项目难度 **进阶** # 技术领域标签 - 操作系统 - 人工智能 - 分布式计算 - RISC-V生态 # 编程语言标签 - Rust - Python # 项目产出要求 1. Rust引擎代码合入minzuchess SIG主仓 2. 单机性能:搜索速度≥10倍Python版,内存占用≤1/5 3. 技术文档《Rust在RISC-V环境的优化实践指南》 4. 可选:集群加速原型(3节点延迟≤100ms) # 项目技术要求 1. 掌握Rust语言基础,熟悉所有权/生命周期机制 2. 了解蒙特卡洛树搜索算法原理 3. 熟悉gRPC或分布式通信协议 4. 具备openEuler环境开发经验者优先 # 项目成果提交仓库 https://gitee.com/openeuler/blesschess https://gitee.com/openeuler/duoyibu-ai 根据作业质量,由导师决定提交到以上两个仓库之一。 # 预估工时 - **基础任务**:35小时(Python环境适配) - **核心任务**:120小时(Rust引擎开发) - **创新任务**:60小时(集群加速原型) # 项目备注 **参考资料**: 1. 现有Python版引擎:https://gitee.com/StarEuler/DLC 2. Rust并行计算库Rayon文档:https://docs.rs/rayon 3. RISC-V V扩展指令集手册:https://riscv.org/technical/specifications/ # 项目导师名字&导师邮箱 - 袁德俊:yuandj1972@163.com - Eustace Wang eusteuc@outlook.com # 英文版本(English Version) ### Project Title Performance Optimization of Machine Game Engine Based on Rust and RISC-V ### Project Description **Background**: 1. The Python-based Gobang engine struggles with performance on RISC-V architecture (<1000 nodes/sec) 2. Real-time decision-making in machine game competitions demands higher computational efficiency **Existing Work**: - Python engine: https://gitee.com/StarEuler/DLC - Rust toolchain in openEuler 23.09 **Deficiencies**: 1. High memory usage (≥512MB) and GC pauses in Python 2. Low multi-core utilization (<40% on 8-core RISC-V) **Improvements**: 1. Rewrite core algorithms in Rust for 10x+ speedup 2. Explore RISC-V cluster acceleration for distributed inference **Final Goal**: Develop a high-performance Rust engine for Gomoku/Connect6, optimized for openEuler+RISC-V ### Difficulty Level Advanced ### Technical Fields - Operating Systems - Artificial Intelligence - Distributed Computing - RISC-V Ecosystem ### Programming Languages - Rust - Python ### Deliverables 1. Rust engine code merged into minzuchess SIG repository 2. 10x+ speedup and ≤1/5 memory usage vs Python 3. Technical guide: "Rust Optimization on RISC-V" 4. Optional: Cluster prototype (3-node latency ≤100ms) ### Technical Requirements 1. Proficiency in Rust (ownership/lifetime) 2. Understanding of Monte Carlo Tree Search 3. Familiarity with gRPC/distributed protocols 4. Experience with openEuler preferred ### Repository https://gitee.com/openeuler/blesschess ### Estimated Effort - Basic: 35 hours - Core: 120 hours - Bonus: 60 hours ### References 1. Python engine: https://gitee.com/StarEuler/DLC 2. Rayon docs: https://docs.rs/rayon 3. RISC-V V-extension: https://riscv.org/technical/specifications/ ### Mentors - Dejun Yuan: yuandj1972@163.com - Eustace Wang eusteuc@outlook.com
# 项目名称 基于Rust的机器博弈引擎性能优化与RISC-V适配 # 项目描述 **相关背景**: 1. openEuler社区缺乏高性能AI北向应用示范,现有Python版五子棋引擎在RISC-V架构下搜索速度不足1000节点/秒 2. 机器博弈竞赛(五子棋/六子棋)对实时决策要求严格,需突破单机性能瓶颈 **已有工作**: - Python版五子棋引擎(https://gitee.com/StarEuler/DLC) - openEuler 23.09已集成Rust工具链 <p><img width="51.1%" src="https://foruda.gitee.com/images/1745617001299230350/682a5377_5631341.jpeg"> <img width="31.59%" src="https://foruda.gitee.com/images/1745617020422067282/5e6f2615_5631341.gif"></p> > 五子棋示范项目:强化学习曲线收敛图(左) & 实时对局可视化监测(右) - Left: RL training convergence - Right: Real-time gameplay visualization **存在的不足**: 1. Python版内存占用高(≥512MB),存在GC停顿问题 2. 缺乏多核并行优化,8核RISC-V利用率不足40% **希望改进的点**: 1. 用Rust重构核心算法,实现10倍以上性能提升 2. 探索RISC-V集群加速方案,提升分布式推理效率 **最终目标**: 开发高性能Rust机器博弈引擎,支持五子棋/六子棋双赛项,适配openEuler+RISC-V生态 # 项目难度 **进阶** # 技术领域标签 - 操作系统 - 人工智能 - 分布式计算 - RISC-V生态 # 编程语言标签 - Rust - Python # 项目产出要求 1. Rust引擎代码合入minzuchess SIG主仓 2. 单机性能:搜索速度≥10倍Python版,内存占用≤1/5 3. 技术文档《Rust在RISC-V环境的优化实践指南》 4. 可选:集群加速原型(3节点延迟≤100ms) # 项目技术要求 1. 掌握Rust语言基础,熟悉所有权/生命周期机制 2. 了解蒙特卡洛树搜索算法原理 3. 熟悉gRPC或分布式通信协议 4. 具备openEuler环境开发经验者优先 # 项目成果提交仓库 https://gitee.com/openeuler/blesschess https://gitee.com/openeuler/duoyibu-ai 根据作业质量,由导师决定提交到以上两个仓库之一。 # 预估工时 - **基础任务**:35小时(Python环境适配) - **核心任务**:120小时(Rust引擎开发) - **创新任务**:60小时(集群加速原型) # 项目备注 **参考资料**: 1. 现有Python版引擎:https://gitee.com/StarEuler/DLC 2. Rust并行计算库Rayon文档:https://docs.rs/rayon 3. RISC-V V扩展指令集手册:https://riscv.org/technical/specifications/ # 项目导师名字&导师邮箱 - 袁德俊:yuandj1972@163.com - Eustace Wang eusteuc@outlook.com # 英文版本(English Version) ### Project Title Performance Optimization of Machine Game Engine Based on Rust and RISC-V ### Project Description **Background**: 1. The Python-based Gobang engine struggles with performance on RISC-V architecture (<1000 nodes/sec) 2. Real-time decision-making in machine game competitions demands higher computational efficiency **Existing Work**: - Python engine: https://gitee.com/StarEuler/DLC - Rust toolchain in openEuler 23.09 **Deficiencies**: 1. High memory usage (≥512MB) and GC pauses in Python 2. Low multi-core utilization (<40% on 8-core RISC-V) **Improvements**: 1. Rewrite core algorithms in Rust for 10x+ speedup 2. Explore RISC-V cluster acceleration for distributed inference **Final Goal**: Develop a high-performance Rust engine for Gomoku/Connect6, optimized for openEuler+RISC-V ### Difficulty Level Advanced ### Technical Fields - Operating Systems - Artificial Intelligence - Distributed Computing - RISC-V Ecosystem ### Programming Languages - Rust - Python ### Deliverables 1. Rust engine code merged into minzuchess SIG repository 2. 10x+ speedup and ≤1/5 memory usage vs Python 3. Technical guide: "Rust Optimization on RISC-V" 4. Optional: Cluster prototype (3-node latency ≤100ms) ### Technical Requirements 1. Proficiency in Rust (ownership/lifetime) 2. Understanding of Monte Carlo Tree Search 3. Familiarity with gRPC/distributed protocols 4. Experience with openEuler preferred ### Repository https://gitee.com/openeuler/blesschess ### Estimated Effort - Basic: 35 hours - Core: 120 hours - Bonus: 60 hours ### References 1. Python engine: https://gitee.com/StarEuler/DLC 2. Rayon docs: https://docs.rs/rayon 3. RISC-V V-extension: https://riscv.org/technical/specifications/ ### Mentors - Dejun Yuan: yuandj1972@163.com - Eustace Wang eusteuc@outlook.com
评论 (
3
)
登录
后才可以发表评论
状态
待办的
待办的
进行中
已完成
负责人
未设置
标签
sig/sig-OSCourse
sig/sig-minzuchess
sig/sig-RISC-V
未设置
项目
未立项任务
未立项任务
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
未关联
master
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
预计工期
(小时)
参与者(1)
1
https://gitee.com/openeuler/open-source-summer.git
[email protected]
:openeuler/open-source-summer.git
openeuler
open-source-summer
open-source-summer
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册