How to use hadoop MapReuce framework for an Opencl application?

白昼怎懂夜的黑 提交于 2019-12-02 10:28:46

You could use Hadoop Streaming, with it you can write mappers and reducers in any language you want as long as your code can read from the stdio and write back to it. For inspiration you can take at examples of how R is used with Hadoop Streaming

HDFS is a file system; you can use HDFS file system with any language.

HDFS data is distributed over multiple machines, it is highly available to process the data in GPU computing.

For more information reference Hadoop Streaming.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!