Edit

thodg/cgminer/ocl.h

Branch :

  • Show log

    Commit

  • Author : Con Kolivas
    Date : 2012-03-27 22:10:17
    Hash : 621bcca7
    Message : Use global offset parameter to diablo and poclbm kernel ONLY for 1 vector kernels.

  • ocl.h
  • #ifndef __OCL_H__
    #define __OCL_H__
    
    #include "config.h"
    
    #include <stdbool.h>
    #ifdef HAVE_OPENCL
    #ifdef __APPLE_CC__
    #include <OpenCL/opencl.h>
    #else
    #include <CL/cl.h>
    #endif
    
    #include "miner.h"
    
    typedef struct {
    	cl_context context;
    	cl_kernel kernel;
    	cl_command_queue commandQueue;
    	cl_program program;
    	cl_mem outputBuffer;
    	bool hasBitAlign;
    	bool hasOpenCL11plus;
    	bool goffset;
    	cl_uint vwidth;
    	size_t max_work_size;
    	size_t wsize;
    	enum cl_kernels chosen_kernel;
    } _clState;
    
    extern char *file_contents(const char *filename, int *length);
    extern int clDevicesNum(void);
    extern _clState *initCl(unsigned int gpu, char *name, size_t nameSize);
    #endif /* HAVE_OPENCL */
    #endif /* __OCL_H__ */