diff --git a/hpvm/projects/visc-rt/visc-rt.cpp b/hpvm/projects/visc-rt/visc-rt.cpp index f05aa2ac24989a37a033b623b9b06370772511a6..1ff4f3e5bb2087c80f3698dfcf316b6ff0d35cac 100644 --- a/hpvm/projects/visc-rt/visc-rt.cpp +++ b/hpvm/projects/visc-rt/visc-rt.cpp @@ -1268,7 +1268,7 @@ void* llvm_visc_ocl_initContext(enum visc::Target T) { //0}; //globalOCLContext = clCreateContextFromType(properties, CL_DEVICE_TYPE_GPU, //NULL, NULL, &errcode); - assert(numPlatforms >= 2 && "Expecting two OpenCL platforms"); + // assert(numPlatforms >= 2 && "Expecting two OpenCL platforms"); // Choose second one which is X86 AVX cl_context_properties properties[] = {CL_CONTEXT_PLATFORM, (long) platforms[T == visc::GPU_TARGET? 0 : 1], @@ -1511,6 +1511,7 @@ static char* LoadProgSource(const char* Filename, size_t* szFinalLength) pFileStream = fopen(Filename, "rb"); if(pFileStream == 0) { + cout << "HERE NULL\n"; return NULL; } @@ -1541,6 +1542,8 @@ static char* LoadProgSource(const char* Filename, size_t* szFinalLength) void* llvm_visc_ocl_launch(const char* FileName, const char* KernelName) { pthread_mutex_lock(&ocl_mtx); + KernelName = "mysgemmNT"; + FileName = "/home/akashk4/hpvm-reorg-9/hpvm/hpvm/llvm/tools/hpvm/test/parboil/benchmarks/sgemm/src/visc/kernel.cl"; DEBUG(cout << "Launch OCL Kernel\n"); // Initialize OpenCL @@ -1566,15 +1569,17 @@ void* llvm_visc_ocl_launch(const char* FileName, const char* KernelName) { cl_int binaryStatus; //pthread_mutex_lock(&ocl_mtx); - Context->clProgram = clCreateProgramWithBinary(Context->clOCLContext, 1, &clDevices[0], - &kernelLength, - (const unsigned char **)&programSource, - &binaryStatus, &errcode); + // Context->clProgram = clCreateProgramWithBinary(Context->clOCLContext, 1, &clDevices[0], + // &kernelLength, + // (const unsigned char **)&programSource, + // &binaryStatus, &errcode); + Context->clProgram = clCreateProgramWithSource(Context->clOCLContext, 1, (const char **)&programSource, NULL, &errcode); //pthread_mutex_unlock(&ocl_mtx); checkErr(errcode, CL_SUCCESS, "Failure to create program from binary"); DEBUG(cout << "Building kernel - " << KernelName << " from file " << FileName << flush << "\n"); - errcode = clBuildProgram(Context->clProgram, 0, NULL, NULL, NULL, NULL); + //errcode = clBuildProgram(Context->clProgram, 0, NULL, NULL, NULL, NULL); + errcode = clBuildProgram(Context->clProgram, 1, &clDevices[0], "", NULL, NULL); // If build fails, get build log from device if(errcode != CL_SUCCESS) { cout << "ERROR: Failure to build program\n";