aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/CLPlatform.java
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1 from ghost/masterSven Gothel2019-03-261-1/+6
|\ | | | | adding support for Android x86 platforms
| * added workaround to list devices in case platform only supports ↵Xavier Hallade2015-01-091-1/+6
| | | | | | | | | | | | CL_DEVICE_TYPE_GPU (and not CL_DEVICE_TYPE_ALL). That's the case with PowerVR OpenCL driver on Android devices.
* | Fix CLProgramTest for Intel OpenCLWade Walker2015-11-081-0/+8
| | | | | | | | | | | | Added a couple of differences in test results for programs recreated from binaries (the programs are executable and have binary length > 0), and avoided the CL kernel creation test on a binary because it segfaults like it does on AMD drivers.
* | Remove creation and all references to CL*Binding interfacesWade Walker2015-11-081-11/+0
| | | | | | | | This completes the removal of all CL*Binding interfaces; all tests pass at this point.
* | Remove use of CL*Binding interfacesWade Walker2015-11-081-44/+0
| | | | | | In preparation for removing the interfaces themselves
* | Add ability to access newer CLImpl versions for devicesWade Walker2015-11-081-1/+23
| | | | | | | | | | | | Added a CLPlatform method to return a CLImpl version specific to a device. This lets the user get a CLImpl12 or CLImpl20 instance which they could then cast to the right type and use to access newer CL functions than those in the default CLImpl11 object.
* | Factor out common custom C and Java code to reduce duplicationWade Walker2015-11-081-3/+2
| | | | | | | | | | | | | | | | | | Consolidated C custom code so common functions are only defined once in the 1.1 version, then are called from the 1.2 and 2.0 version. Pulled common code in CLImpl up into the autogenerated implementation class and removed the hand-written implementation (since it was left empty). Factored custom Java code out so there was as little duplication as possible across the three CLImpl versions, with common code for all three versions in clImplCustomCode.java.
* | Add explicit version number to original CL impl classes.Wade Walker2015-11-081-5/+5
|/ | | | | This makes all three versions (1.1, 1.2, and 2.0) use the same naming convention, and sets me up to use the unversioned name to factor out code common to all three.
* Bug 978: Promote CLAbstractImpl.isAvailable() to CLPlatform, public API. ↵Sven Gothel2014-09-031-17/+18
| | | | | | | | isAvailable() simply shall return true if JOCL/OpenCL libs could be loaded. - Promote CLAbstractImpl.isAvailable() to CLPlatform, public API. - CLAbstractImpl.isAvailable() simply shall return true if JOCL/OpenCL libs could be loaded.
* Code Clean-Up based on our Recommended Settings (jogamp-scripting ↵Sven Gothel2014-07-031-42/+43
| | | | | | | | | | | | | c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) - Change non static accesses to static members using declaring type - Change indirect accesses to static members to direct accesses (accesses through subtypes) - Add final modifier to private fields - Add final modifier to method parameters - Add final modifier to local variables - Remove unnecessary casts - Remove unnecessary '$NON-NLS$' tags - Remove trailing white spaces on all lines
* Fix crashes due to AMD driver bugs.Wade Walker2014-03-081-0/+6
| | | | | | | | | | | programBinariesTest() failure was due to AMD drivers crashing in clCreateKernelsInProgram() when the program is not built yet, instead of returning error code CL_INVALID_PROGRAM_EXECUTABLE as they should. lowLevelVectorAddTest() failure was apparently due to the AMD drivers writing past the end of a direct byte buffer in such a way that it made System.gc() crash when called during teardown (this crash didn't even dump stack). Making the buffer larger solved the problem.
* Remove Java lint warnings.Wade Walker2014-03-071-0/+5
| | | | | | Remove all Java lint warnings, by fixing the code if possible, and if not possible then by inserting @SuppressWarnings. Some of these @SuppressWarnings can be replaced later with @SafeVarargs if we eventually drop support for Java 6.
* Cleanup Build: GlueGen config files, stub_includes; Add JoclVersion, Android ↵Sven Gothel2014-01-261-3/+2
| | | | | | | | | | | | | | | | | | JoclVersionActivity Cleanup Build: - Move gluegen config files into make/config (cleanup) - Move stub_includes into respective folder make/stub_includes and keep resources 'clean' JoclVersion: - Analoge to JoglVersion, replaces JOCLVersion (deprecated for now) - Added text based CL info dump. JoclVersionActivity: - Analog to JoclVersionActivity - Added full launch .. tested on Android (but no OpenCL avail.)
* Bug 773 - Device specific JOCL dynamic library look-up on Android - Part 1/2Sven Gothel2013-10-191-63/+18
| | | | | | | | | Use DynamicLibraryBundleInfo w/ alternative native library names, drop manual coding of loading and binding, i.e. JOCLJNILibLoader. After trying opencl native libs (and failing), try GL libs .. We use a manual impl. to CL's 'clGetExtensionFunctionAddress' similar to JOAL, JOGL ...
* Fix copyright/author tagsedgeSven Gothel2011-06-281-1/+1
|
* Fix merge w/ latest mbien/edgeSven Gothel2011-06-281-3/+3
|\
| * Fix last merge of mbien/masterSven Gothel2011-06-281-50/+53
| |\
| * | Synced w/ mbien's JOCL branch - Making it compatible w/ GlueGen againSven Gothel2011-05-181-4/+4
| | |
* | | internal refactoring to use new binding interfaces in highlevel api impl.Michael Bien2011-06-151-2/+6
| | |
* | | CLContext uses now CLContextBinding interface.Michael Bien2011-05-281-0/+55
| | |
* | | LLB refactoring.Michael Bien2011-05-271-3/+4
| |/ |/| | | | | | | | | - split up CL into multiple sub interfaces - seperation is now feature wise - introdused llb package for low level classes
* | introduced CLAccessorFactory spi and threadlocal default impl for CLDevice ↵Michael Bien2011-05-261-48/+36
| | | | | | | | and CLPlatform.
* | CLAccessor SPI - initial refactorings.Michael Bien2011-05-251-11/+26
|/
* moved all cl calls to CLInfoAccessor (CLDevice and CLPlatform).Michael Bien2011-05-121-38/+51
|
* fixed old TODO + better toString() formatting.Michael Bien2011-05-111-7/+9
|
* switched from PointerBuffer to NativeSizeBuffer.Michael Bien2011-04-231-9/+9
|
* added CLDeviceFilters utility api.Michael Bien2011-03-291-33/+72
|
* CLContext and CLPlatform are now threadsafe. Updated javadocs.Michael Bien2011-02-081-1/+3
|
* improved javadoc.Michael Bien2011-02-081-1/+26
|
* check for empty device list to prevent a INVALID_VALUE exception on apple's ↵Michael Bien2011-01-221-1/+1
| | | | impl.
* paper work: license and file headers.Michael Bien2010-11-261-0/+28
|
* added JOCLVersion utility and integrated in CLPlatform.Michael Bien2010-11-181-0/+5
| | | | added spec version to manifest, updated CLInfo.
* initial import of utility API for filtering platforms.Michael Bien2010-09-211-8/+47
|
* removed CLContext factory methods with CLPlatform + CLDevice list combinations.Michael Bien2010-09-151-1/+1
| | | | | | | | | | | | justification: - information is now no longer needed since every CLDevice knows its CLPlatform - OpenCL device IDs are not portable between CLPlatforms changes: - Context factories will throw CLInvalidPlatformException if the platform of all CLDevices does not match related changes: - [persistance] CLProgramBuilder stores now the ICD suffix to be later able to map binaries back to the platform + device
* changed initialization from static initializer to internal singleton ↵Michael Bien2010-09-101-15/+26
| | | | intialization to get rid of ExceptionInInitializerErrors.
* added com.jogamp.util.CLInfo.Michael Bien2010-09-071-1/+7
| | | | | introduced CLProperty annotation for CLDevice and CLPlatform properties. fixed bug in CLVersion.
* CLPlatform.getDefault() returns now the platform with the latest versionMichael Bien2010-09-021-3/+7
|
* better exception message if libOpenCL could not be loaded.Michael Bien2010-09-011-4/+14
|
* minor refactorings and updates.Michael Bien2010-06-271-5/+5
|
* added CLVersion utility class and corresponding API.Michael Bien2010-06-241-3/+37
| | | | | version checks in unit tests. GLProfile.initSingleton() workaround in CLGLTest.
* switched to dynamic linking. All custom code functions must be called via ↵Michael Bien2010-06-211-9/+32
| | | | funciton pointers since this point.
* changes due to gluegen size_t fix. Switched back to PointerBuffer. 32bit ↵Michael Bien2010-05-311-2/+2
| | | | systems are now supported again.
* added doPrivileged block around libloading logic.Michael Bien2010-04-281-4/+19
|
* modification due to method renaming in gluegen/ProcAddressTable.Michael Bien2010-04-241-2/+1
|
* renamed NativeLibLoader to JOCLJNILibLoader.Michael Bien2010-04-241-1/+1
|
* dynamic binding for OpenGL specific functionality.Michael Bien2010-04-241-5/+16
|
* renamed package com.mbien.* in com.jogamp.* JOCL is now officially a JogAmp ↵Michael Bien2010-04-121-0/+302
team player ;).