OpenCL (Open Computing Language) is a framework for writing programs that execute across heterogeneous platforms consisting of CPUs, GPUs, and other processors.

learn more… | top users | synonyms

0
votes
0answers
15 views

simple OpenCl example kernels (host language independent)

I'm searching for some simple OpenCL code samples, especially FFT, matrix multiplication, diagonalization and convolution. I know that there is a lot of codes/tutorials and toolkits. However all what ...
0
votes
0answers
32 views

Best Sorting OpenCL algorithm

I am writing code in OpenCL for AMD APU (northern island GPU) and AMD evergreen GPU. I have to sort a huge array of integers and I have to do it efficiently (less memory usage and least execution ...
3
votes
1answer
80 views

Array size and copy performance

I'm sure this has been answered before, but I can't find a good explanation. I'm writing a graphics program where a part of the pipeline is copying voxel data to OpenCL page-locked (pinned) memory. I ...
0
votes
0answers
27 views

cgminer cldevicesnum returned error no gpus usable

Using CGminer, I got this error: "cldevicesnum returned error no gpus usable". I have Intel core 2 due and have OpenCL SDK installed. Graphic card: Mobile intel (r) 4 series express chipset. How to ...
0
votes
1answer
22 views

OpenCL SDK for intel core 2 due

Where could I find OpenCL SDK for intel core 2 due? Graphic card: mobile intel (r) series express chipset family.
0
votes
0answers
20 views

OpenCL SHA-1 C#

i am implementing SHA-1 brute force attack using OpenCL and C# in my studies. I ve already implemented SHA-1 generator but my leader want to limit that function to alphabet: A-Z, a-z, a-zA-Z, 0-9, ...
0
votes
2answers
46 views

Using cl_float3 in parallel reduction example opencl

I adapted the parallel reduction example for openCL for a bunch of floats. Now I wanted to expand the code to include cl_float3. So I want to find the minimum among a array of cl_float3. I thought it ...
1
vote
1answer
35 views

Can I link numpy with AMD's gpu accelerated blas library

I reconized numpy can link with blas, and I thought of why not using gpu accelerated blas library. Did anyone use to do so?
0
votes
0answers
17 views

Reallocate / order contents referred to by IntPtr in IntPtr[] in memory for transfer to OpenCL kernel

I have an array of IntPtr (IntPtr[]). Each IntPtr in the array points to a short[] containing a large number of items (image slices in a volume). The IntPtr's are ordered in the array, slice 0 being ...
0
votes
0answers
48 views

OpenCL clEnqueueReadBuffer segfaults randomly

I'm having a hard time determining why a segmentation fault occurs randomly at the following line in my code: rc = clEnqueueReadBuffer(ompctx->clctx->queue, ...
1
vote
0answers
27 views

openCL-openGL interop stopped working after X upgrade

The following code used to work: cl_context_properties Properties [] = { CL_GL_CONTEXT_KHR, (cl_context_properties) glXGetCurrentContext(), CL_GLX_DISPLAY_KHR, (cl_context_properties) ...
0
votes
0answers
19 views
+500

java applet: jocl operations stop java3d

Jocl(opencl wrapper) kernel running makes java3d output disabled. When opencl finishes, java3d continus working. How can I let Opencl(jocl) and opengl(java3d) work together? I need some kind of ...
0
votes
1answer
22 views

Pointcloud to surface in C#

I am looking for a quick and relatively simple (which means i do not really want to code everything by myself...) solution to converse a pointcloud into a surface in C# (or OpenCL). Using some kind of ...
0
votes
1answer
48 views

get global ThreadId in 2 dimensions in OpenCl

How can i get the global threadId in 2 dimensions in OpenCL? I know that for 1 dimension, the formula is: int global_id = get_global_id(1) * get_global_size(0) + get_global_id(0); But if i ...
0
votes
0answers
40 views

Open CL Materials and hardware support required

I have just started to learn open CL, 1.can any body suggests any good links and materials to start learning OpenCL from scratch. 2.Which SDK to use to run Open CL program,without any hardware ...
0
votes
1answer
32 views

Concurrent kernel execution and OpenCL device partition

Recently I needed to do some experiments which need run multiple different kernel on AMD hardware. But I have several questions before starting to coding hence I really need your help. First, I am ...
0
votes
1answer
26 views

OpenCL: working with doubles error

The error states: error: can't enable all OpenCL extensions or unrecognized OpenCL extension #pragma OPENCL EXTENSION cl_khr_fp64 : enable System configuration: Windows 7 on 64 bit Notebook ...
0
votes
1answer
20 views

OpenCL error 48 when launching kernel

Continuing with my OpenCL adventure, this is what I have till now from my CUDA implementation. I was trying to check if at least the first kernel call was working but I got error 48 and have no idea ...
0
votes
1answer
32 views

Optimizing kernel shuffled keys code - OpenCL

I have just started getting into OpenCL and going through the basics of writing a kernel code. I have written a kernel code for calculating shuffled keys for points array. So, for a number of points ...
1
vote
2answers
37 views

Global device variable OpenCL

How can I declare a device variable that is global to all the threads in OpenCL? I'm porting some code from CUDA to OpenCL. In my CUDA implementation I have something like ... ... __device__ int ...
0
votes
1answer
13 views

Is it possible to see input data passed to kernel in gDEBugger?

I'm currently learning OpenCL and got some problems with my program ( running fine on GPU but not on CPU). So I wanted to try gDebugger. I'd like to know if it's possible to see the input data passed ...
0
votes
1answer
17 views

ViennaCL on OS X: Can't copy data to GPU

I'm just learning to work with ViennaCL. The first tries on the CPU worked fine, now I am trying to use OpenCL. However, I can't manage to get data onto the GPU - while the matrices seem to be ...
0
votes
1answer
32 views

OpenCL application with 3 different kernels

I just started with OpenCL and I want to port an app I have in CUDA. The problem I'm facing now is the kernel stuff. In CUDA I have all my kernel functions in the same file, on the contrary, OpenCL ...
0
votes
2answers
69 views

Merge two sorted arrays with OpenCL

I have some C code for merge two sorted arrays: void merge(int m, int n, int A[], int B[], int C[]) { int i, j, k; i = 0; j = 0; k = 0; while (i < m && j < n) { if ...
0
votes
1answer
27 views

Fast way to swap endianness using opencl

I'm reading and writing lots of FITS and DNG images which may contain data of an endianness different from my platform and/or opencl device. Currently I swap the byte order in the host's memory if ...
0
votes
1answer
39 views

OpenCL with Hadoop

How do I use OpenCL(for GPU compute) with Hadoop ? My data set resides in HDFS. I need to compute 5 metrics, among which 2 are compute intensive. So I want to compute those 2 metrics on GPU using ...
0
votes
0answers
41 views

Troubles reading AMD ISA code

I'm having trouble reading the assembly language of AMD Southern Island GPUs using the documentation found here. Here is a sample OpenCL code: 1 __attribute__((reqd_work_group_size(256, 1, 1))) ...
1
vote
1answer
42 views

HyperQ support in OpenCL

I want to run heterogeneous kernels that execute on a single GPU asynchronously. I think this is possible in Nvidia Kepler K20(Or any device having compute capability 3.5+) by launching each of this ...
0
votes
0answers
44 views

can't build project using opencl in eclipse

Hi I'm new in openCL, and try to run simple example from the internet. I think I make everything but when I build my project i see this in console Info: Internal Builder is used for build g++ ...
0
votes
0answers
84 views
+500

Jocl and Device Fission

Question: For JOCL, how can I exclude some cores of CPU from the opencl calculations with device fission?(Java port of cl_device_partition_property seems to be corrupt for 0.1.9 version) Edit: I ...
1
vote
3answers
107 views

Get GPU memory usage progamatically

I'm looking for a reliable way to determine current GPU memory usage preferably in C++/C . I have found many ways of obtaining usage like the following methods: Direct Draw DxDiag WMI DXGI D3D9 ...
0
votes
3answers
61 views

Running OpenCL kernel on multiple GPUs?

Right now I programmed made several algorithms running in parallel on one GPU, but all of them have the same problem, when I try to execute them on several GPUs (for example, 3). The problem is that ...
1
vote
1answer
34 views

Is there a general binary intermediate representation for OpenCL kernel programming?

as I understood, the OpenCL uses a modified C language (by adding some keywords like __global) as the general purpose for defining kernel function. And now I am doing a front-end inside F# language, ...
0
votes
1answer
39 views

Can opencl chain multiple passes without returning to CPU?

I want to auto scale some data. So, I want to pass through all the data and find the maximum extents of the data. Then I want to go through the data, do calculations, and send the results to opengl ...
0
votes
0answers
35 views

Opencl with jocl: same computation rules for cpu and gpu

I'm using jocl to apply some trigonometric functions on elements of a float-array. While doing same code on both cpu and gpu at the same time, results vary minorly on the 0.000x digits and it is ...
0
votes
1answer
54 views

Puzzling bug on very tiny OpenCL kernel when trying to read an image2d (using pyopencl)

While developing an OpenCL kernel supposed to compute some features on an image, I came across a bug I didn’t manage to solve. To figure out the problem I built a silly, tiny kernel that still ...
0
votes
1answer
43 views

OpenCL: struct field initialization from inline function does not work

I have an OpenCL kernel code, which does not behave as expected. The similar C code compiled with gcc works fine. struct data { short* a; }; typedef struct data Data; inline void foo(Data* d) { ...
0
votes
0answers
132 views

Cuda - OpenCL CPU 4x faster than OpenCL or CUDA GPU version

A wave simulator I've been working on with C# + Cudafy (C# -> CUDA or OpenCL translator) works great, except for the fact that running the OpenCL CPU version (Intel driver, 15" MacBook Pro Retina i7 ...
1
vote
1answer
32 views

OpenCL Kernel summatory

I want to know if this is possible to do... I want to check inside of the kernel in java, if the array contains numbers and characters, and if yes, save how many times they appear in the output array. ...
-2
votes
0answers
21 views

Vray Rt entering server mode 20206 Error [closed]

3ds max vray rt; entering server mode waiting request and nothing happen Ihave an pny quadro 4000 graphic card and what ever ı did ı cant fix the problem. Is there any body to help ?
0
votes
0answers
47 views

Conditional Reduction

I having a bit of an issue here and I'd like to know which is the best method to do the following reduction using OpenCL 1.2: // for (j...) { <-- I don't put this part on openCL only for illu. ...
1
vote
1answer
52 views

OpenCL Copy-Once Share a lot

I am implementing a solution using OpenCL and I want to do the following thing, say for example you have a large array of data that you want to copy in the GPU once and have many kernels process ...
0
votes
2answers
39 views

Type conversion in opencl

I want to convert 'unsigned char' 'uchar16'. At first, I Direct convert it, but it run error. uchar16* out; unsigned char ciphertext[16]; /* * */ out[0] = (uchar16)(ciphertext[0], ciphertext[1], ...
0
votes
0answers
22 views

Include map and reduce in written in C/OpenCL in hadoop

I have written my own codes of map and reduce function in OpenCL kernel. General scenario of MapReduce which is basically incorporated in Hadoop itself is written in java. How can I use my own ...
1
vote
1answer
80 views

Higher radix (or better) formulation for Stockham FFT

Background I've implemented this algorithm from Microsoft Research for a radix-2 FFT (Stockham auto sort) using OpenCL. I use floating point textures (256 cols X N rows) for input and output in the ...
2
votes
1answer
47 views

AMD 7970 reporting incorrect DEVICE_GLOBAL_MEM_SIZE

I'm testing some OpenCL image processing on an AMD HD 7970 (Sapphire GHz edition). This particular card has 6GB of RAM onboard, however this call: clGetDeviceInfo(device, CL_DEVICE_GLOBAL_MEM_SIZE, ...
0
votes
2answers
66 views

randomly segmentation fault on GPU/OpenCL/OpenGL code

I am working on a GPU/OpenCL NBody code. I make rendering of particles positions with OpenGL of the AMD APP SDK. When running the code, I have randomly segmentation fault. To summarize, I have a ...
1
vote
1answer
42 views

Killing OpenCL Kernels

Is there any way to kill a running OpenCL kernel through the OpenCL API? I haven't found anything in the spec. The only solutions I could come up with are 1) periodically checking a flag in the ...
2
votes
1answer
45 views

Bigint in OpenCL and Python

I am trying to implement RSA in Python but I want to run the intensive calculations on the GPU. I have successfully implemented my own modulo expoentiation running in PyOpenCL, but I max out on six ...
0
votes
1answer
52 views

c# detect if the system supports opencl

I want to detect if a system supports opencl or not. I'm not sure of the best way to go about this. I'm also no looking for any extra libraries to use because my c# code doesn't need to actually USE ...

1 2 3 4 5 29