1 / 39

TROCHĘ HISTORII

TROCHĘ HISTORII. PO CO UŻYWAĆ OPENCL?. AMD Radeon HD7870 OC 1,1 GHz. Intel Core i5 2550k OC 4,2 GHz. Intel Core i5 2550k 4 rdzenie. AMD Radeon HD7870 1280 rdzeni. DLACZEGO NIE UŻYWAĆ OPENCL?. CZEGO NAM TRZEBA?. CZAS NA NAJLEPSZE!. KOD!. TRADYCYJNE PODEJŚCIE.

irina
Download Presentation

TROCHĘ HISTORII

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. TROCHĘ HISTORII Marek Zając

  2. Marek Zając

  3. Marek Zając

  4. PO CO UŻYWAĆ OPENCL? Marek Zając

  5. AMD Radeon HD7870 OC 1,1 GHz Intel Core i5 2550k OC 4,2 GHz Marek Zając

  6. Intel Core i5 2550k 4 rdzenie AMD Radeon HD7870 1280 rdzeni Marek Zając

  7. Marek Zając

  8. Marek Zając

  9. DLACZEGO NIE UŻYWAĆ OPENCL? Marek Zając

  10. Marek Zając

  11. CZEGO NAM TRZEBA? Marek Zając

  12. Marek Zając

  13. Marek Zając

  14. CZAS NA NAJLEPSZE! Marek Zając

  15. KOD! Marek Zając

  16. TRADYCYJNE PODEJŚCIE Marek Zając

  17. double* tab = newdouble[100000000]; //preparearray... //... for(int i = 0; i < 100000000; i++) { tab[i] *= 2.5; } Marek Zając

  18. OPENCL Marek Zając

  19. double* tab = newdouble[100000000]; //preparearray... //... … Marek Zając

  20. cl_interr; cl::vector<cl::Platform> platformList; cl::Platform::get(&platformList); … Marek Zając

  21. cl_context_propertiescprops[3] = { CL_CONTEXT_PLATFORM, (cl_context_properties) (platformList[0])(), 0 }; cl::Context context(CL_DEVICE_TYPE_ALL, cprops, NULL, NULL, &err); cl::vector<cl::Device> devices; devices = context.getInfo<CL_CONTEXT_DEVICES>(); … Marek Zając

  22. std::ifstream file("func.cl"); std::string prog(std::istreambuf_iterator<char>(file), (std::istreambuf_iterator<char>())); cl::Program::Sources source(1, std::make_pair(prog.c_str(), prog.length() + 1)); cl::Program program(context, source); err = program.build(devices, ""); cl::Kernel kernel(program, "func", &err); … Marek Zając

  23. … JUŻ PRAWIE, JESZCZE TYLKO … Marek Zając

  24. cl::Buffer in(context, CL_MEM_READ_WRITE, sizeof(double) * 100000000); cl::CommandQueue queue(context, devices[0], 0, NULL); constsize_tlocal_ws = 256; constsize_tglobal_ws = ceil((double)local_ws / 100000000); cl::Eventevent; … Marek Zając

  25. Marek Zając

  26. queue.enqueueWriteBuffer(in, CL_TRUE, 0, sizeof(double) * 100000000, tab); kernel.setArg(0, in); kernel.setArg(1, 100000000); queue.enqueueNDRangeKernel(kernel, cl::NullRange, cl::NDRange(global_ws), cl::NDRange(local_ws), NULL, &event); event.wait(); queue.enqueueReadBuffer(in, CL_TRUE, 0, sizeof(double) * 100000000, tab); Marek Zając

  27. CZYŻBY KONIEC? Marek Zając

  28. Marek Zając

  29. __kernelvoidfunc(__globaldouble* in, int n) { size_tid = get_global_id(0); in[id] *= 2.5; } Marek Zając

  30. TO MOŻE JAKIŚ TEST? „ŻĄDAMY DOWODÓW!” Marek Zając

  31. __kernelvoidfunc(__globaldouble* in, double x, int n) { size_tid = get_global_id(0); if(id < n) { in[id] *= x; in[id] += 10.0 * x; in[id] = sqrt(in[i]); } } Marek Zając

  32. K = 10000000 K * 200 Marek Zając

  33. WYNIK TO… Marek Zając

  34. CPU 11,731 sek. GPU 6,068 sek. Marek Zając

  35. Marek Zając

  36. Marek Zając

  37. double => float CPU 12,963 sek. GPU 2,979 sek. Marek Zając

  38. DZIĘKUJĘ ZA UWAGĘ ŹRÓDŁA OBRAZKÓW: 99% KRADZIONE Z INTERNETU, 1% WŁAŚNE Marek Zając

More Related