How to use hadoop MapReuce framework for an Opencl application?

前端 未结 2 1348
谎友^
谎友^ 2021-01-26 04:52

I am developing an application in opencl whose basic objective is to implement a data mining algorithm on GPU platform. I want to use Hadoop Distributed File System and want to

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-26 05:29

    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

提交回复
热议问题