
C# OpenCL bindings ready for testing
Posted Tuesday, 11 August, 2009 - 20:22 by the FiddlerUpdate: current efforts are focused on Cloo (object-oriented CL wrapper), which can be found here. It provides a much cleaner OpenCL API compared to raw bindings (which are also available in case you need them).
The generator now supports generating C# OpenCL wrappers from the C headers. The OpenCL wrappers reside under the OpenTK.Compute.CL10 namespace of SVN trunk. An OpenCL sample has also been added to Examples.exe: if you have access to an OpenCL implementation, please run the VectorAdd sample and report your results here.
AMD has released a public beta of its OpenCL implementation that you can download from AMD's developer website (free registration needed). This implementation runs on all SSE3-capable CPUs and is available for Window and Linux platforms.
There is a lot of fine-tuning left to do for OpenTK's OpenCL wrappers and the sooner you test the bindings, the sooner they will become ready for release.


Comments
Re: C# OpenCL bindings ready for testing
I've installed ATI Stream SDK.
Running VectorAdd produces the following error:
Unable to find an entry point named 'clCreateContextFromType' in DLL 'opencl.dll'
As far as I can see, this method is used in ATI demos, so there's probably something wrong with OpenTK bindings.
Re: C# OpenCL bindings ready for testing
Thanks for testing.
I have encountered similar issues here and it's good to know they are not limited to my system. Haven't been able to find the cause yet.
It's a fact that P/Invokes work slightly different than the C linker, so it's possible that one works where the other one fails in some specific cases. We might be hitting such a corner case here.
I've yet to test on Linux.
Re: C# OpenCL bindings ready for testing
Is it possible to move the bindings into one file? The current files were (originally) to contain the high level OpenCL classes.
Re: C# OpenCL bindings ready for testing
Already done in SVN. The actual bindings are under 4 files in the CL10 directory. Everything else is empty and has remained as a guide for the high level classes.
Re: C# OpenCL bindings ready for testing
Thanks. The
ComputePlatformis ready though untested so far.ComputeDeviceto arrive in a couple of days.I too get an EntryPointNotFoundException on CL.GetPlatformID. Its the first CL call overall. Btw: it should be *CL.GetPlatformIDs*
WinXP 32bit / GF 9600GT / Core 2 Duo
Should I start a new thread for the OpenCL objects discussion? The old one is closed.
Re: C# OpenCL bindings ready for testing
Yes, please create a new thread for this. It's also a good idea to create separate threads for any issues you encounter (e.g. GetPlatformIDs), otherwise they tend to get lost in the woods.
Re: C# OpenCL bindings ready for testing
With Stream SDK 2.0 beta 3 the sample throws an exception.
The Mandelbrot sample with OpenCL.NET lib works.
Re: C# OpenCL bindings ready for testing
Thanks for testing.
Can you please create an issue report with the exception and some details on your operating system? (OS, version and whether it's 32- or 64-bits)
Edit: Ati Stream 2.0 beta 3 still suffers from issue #1124: [OpenCL] EntryPointNotFoundException on CL calls. This is a bug in Ati's code on Windows - the Linux version is working correcty, as is Nvidia's implementation.
Re: C# OpenCL bindings ready for testing
Concerning the OpenCL VectorAdd example, that is in latest repository revision, device to host memory writes seem to be missing, as well as the problem with the queue argument (queue instead of the context), more in http://www.opentk.com/node/1233
:?
Re: C# OpenCL bindings ready for testing
fyi: AMD released Stream SDK v2.0 beta 4 today.
Re: C# OpenCL bindings ready for testing
I have made a report. I hope it is OK and informative. I get some memory error.
Will OpenCL get a nice OOP wrapper anytime soon?
Re: C# OpenCL bindings ready for testing
Thanks, I believe this error has been fixed in SVN and 0.9.9-3, but I cannot test right now.
Nythrix is working on an OOP wrapper and there's OpenCL.Net, but I don't know the current status of either project. Right now, we are focusing on core OpenTK and the GL & ES bindings and we'll work OpenTK.Compute.
Of course help is welcome:
Every little bit helps!
Re: C# OpenCL bindings ready for testing
The name mangling issue has been reported as fixed in AMD Stream 2.0 beta 4. Can someone please test and confirm whether VectorAdd works now?
Re: C# OpenCL bindings ready for testing
Well, I've tested it and it does not throw any exceptions for me. But the result I get is
0+0=0
0+0=0
0+0=0
0+0=0
0+0=0
0+0=0
...
To be honest I haven't checked what this example should do. I was only interested if the bindings work.
Re: C# OpenCL bindings ready for testing
Thanks, the important fact is that it doesn't crash anymore!
The 0 + 0 = 0 issue is a bug, I'll fix that.
Re: C# OpenCL bindings ready for testing
Hi,
the following line from the "vectorAdd" example returns an error 'OpenTK.Compute.CL10.ErrorCode.InvalidKernelName':
resulting in hKernel staying 0 so nothing gets ever called. That is why the result is still all 0.
I am using the ATi Beta 4 together with a HD 5770 using VS 2008.
Regards,
Bernd Krekeler.
Re: C# OpenCL bindings ready for testing
The 0+0=0 issue was unintended (simply forgot to initialize the arrays). Fixed now.
Still haven't been able to test on Ati Stream, due to #1299: [Compute] Ati Stream SDK 2.0 beta 4 causes DllNotFoundException.
Re: C# OpenCL bindings ready for testing
Hi,
I have a computer with :
- an Intel CPU
- an Intel Graphic Card
So, my question is... if I write an application based on OpenCL... will it work to on machines that doesn't support OpenCL ?
or I must write another version of my soft ?
Thanks
Re: C# OpenCL bindings ready for testing
I think, Intel does not provide OpenCL drivers, yet. You cannot run such an application without them.
Re: C# OpenCL bindings ready for testing
You can use Ati's Stream SDK (free registration required). It requires SSE3 (any Core 2 or newer will do), but otherwise runs on Intel CPUs just fine.
Re: C# OpenCL bindings ready for testing
Ouch, I forgot about the CPU :D
Re: C# OpenCL bindings ready for testing
Hi,
I have download the AMD Stream SDK at : http://developer.amd.com/gpu/ATIStreamSDKBetaProgram/Pages/default.aspx#...
I have download this one : "ati-opencl-beta-driver-v2.0-beta4-xp.zip (109MB)"
But I can't find any OpenCL dll !!!! Even during installation I can't find any option regarding OpenCL :-(
Re: C# OpenCL bindings ready for testing
Sorry, I have forgot to download a module !!
Thx
Re: C# OpenCL bindings ready for testing
After adding
<dllmap os="osx" dll="opencl.dll" target="/System/Library/Frameworks/OpenCL.framework/OpenCL"/>to OpenTK.dll.config the VectorAdd Sample seems to work correctly on my Snow Leopard system. It outputs correct sums of random integers.Re: C# OpenCL bindings ready for testing
Thanks, added to r2564, and I'll backport this to trunk soon.
Re: C# OpenCL bindings ready for testing
Hello,
My system is an AMD Phenom2 X4 940 with 3 * 4870 1GB (they are in crossfireX) on Vista x64, i am running the recently released 9.12 hotfix drivers and i have installed the ati-stream-sdk-v2.0-beta4-vista-win7-64.exe (59.3MB).
I am using VSExpress C# 2008 with the OpenTK-0.9.9-3 and running the VectorAdd from trunk I am seeing the following error (i added additional Error checks after each setting of error):
Pointing at this :
I see your comment on the Invalid Kernel Name exception above but that was back in late October and i was hoping this was addressed by these latest drivers. Is there anything i should check on my end to see if something is not setup properly?
Re: C# OpenCL bindings ready for testing
Sorry, i should have read more on the site, i see the bug entered for this already and we are waiting on beta 5 from ati. I have run this on my nvidia based laptop and it is working fine.
Re: C# OpenCL bindings ready for testing
A friend of mine suggested I put a line here, given the amount of people (inluding him) ending up reading this thread and never finding the oo wrapper mentioned above. So here goes:
Cloo, the .NET, object oriented OpenCL API wrapper, is finally available and can be downloaded from its sourceforge pages.
Re: C# OpenCL bindings ready for testing
Updated the OP to reflect this.
Re: C# OpenCL bindings ready for testing
What is the OP?
Edit: Original Post, got it.