Skip to content
Snippets Groups Projects
Commit a39ee088 authored by psychocrypt's avatar psychocrypt
Browse files

OpenCL: allow more than two algorithms

In the current implementation the POW algorithm in dev pool section of a
currency will not be taken into account during the binary creation.
This PR changes the behavior and allow to create binaries for more than two POW algorihms.
parent 628ec8c1
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -14,6 +14,8 @@
#include <vector>
#include <mutex>
#include <memory>
#include <map>
#include <array>
#define ERR_SUCCESS (0)
#define ERR_OCL_API (2)
......@@ -50,8 +52,8 @@ struct GpuContext
cl_mem InputBuffer;
cl_mem OutputBuffer;
cl_mem ExtraBuffers[6];
cl_program Program[2];
cl_kernel Kernels[2][8];
std::map<xmrstak_algo, cl_program> Program;
std::map<xmrstak_algo, std::array<cl_kernel,8>> Kernels;
size_t freeMem;
size_t maxMemPerAlloc;
int computeUnits;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment