有没有运行在 CBE 上的 JVM?
我正在使用 Apache-UIMA 设计一个问答系统。该系统最终应在 IBM Cell-Broadband-Engine 处理器 (PS3) 上运行。我打算用 Java 来设计整个东西。但我不确定 Java 应用程序是否可以在 CBE 上运行。有没有运行在 CBE 上的 JVM?
I'm designing a question-answering system using Apache-UIMA. The system should finally run on a IBM Cell-Broadband-Engine processor(PS3). I'm planning to design the whole thing in Java. But I'm not sure whether Java app could be run on a CBE. Is there any JVM that runs on a CBE?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请注意,PS3 也是 BluRay 播放器,而 BluRay 要求在幕后使用一些 Java,因此 PS3 中显然有一个 JVM。我不知道你会如何做到这一点。也许探索蓝光路线可能会很有趣? (我警告:没有针对 BD-J 或 PS3 进行开发的经验,不知道它是否是一个过多的子集。)
Note that the PS3 is also a BluRay player, and BluRay mandates some Java under the covers, so there's clearly a JVM in PS3s. I have no idea how you'd get to it though. Perhaps exploring the BluRay route might be interesting? (I warn: have no experience developing against BD-J or PS3 to know if it's too much of a subset.)
Jikes RVM 已知可以在 PowerPC 架构上运行,因此它应该可以在 PPE 上运行。通过 Google 快速搜索即可找到 Hera JVM,它将 JikesRVM 扩展到用于 CELL 架构的 SPE。不过我还没有找到任何可用的二进制文件
Jikes RVM is known to work on PowerPC architecture, so it should work on the PPE. A quick Google search leads to Hera JVM which extends JikesRVM to the SPEs for the CELL Architecture. I haven't found any binary available, though
我意识到这个线程已经死了,但是对于追随并寻找相同内容的人来说:
我在 github 上找到了 HeraJVM 代码。奇怪的是它没有出现在谷歌搜索中。
https://github.com/rmcilroy/HeraJVM
编辑:
JikesRVM 在 HeraJVM 项目之后得到了进一步的开发,所以我会首先研究 Jikes(最后一次发布是在 2016 年,但最后一次提交是上个月)。
https://sourceforge.net/projects/jikesrvm/
或者
https://github.com/JikesRVM/JikesRVM/
Jikes 主页:https://www.jikesrvm.org/
I realise that this thread is dead, but for people coming after and looking for the same:
I found the HeraJVM code on github. Strange it doesnt show up on google searches.
https://github.com/rmcilroy/HeraJVM
edit:
JikesRVM has been developed further after HeraJVM project, so I would look into Jikes first (last release was in 2016, but last commit is last month).
https://sourceforge.net/projects/jikesrvm/
or
https://github.com/JikesRVM/JikesRVM/
Jikes homepage: https://www.jikesrvm.org/