diff options
author | Michael Bien <[email protected]> | 2010-09-21 00:48:32 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-09-21 00:48:32 +0200 |
commit | d2f1955832dda891cb6d711c43bcb59e7199a38c (patch) | |
tree | c1f4087ec751de624ff50e5812dddeeb1e1e478b /src/com/jogamp/opencl/CLPlatform.java | |
parent | a5b0d5948765a1695d9c02a30be599f905152668 (diff) |
initial import of utility API for filtering platforms.
Diffstat (limited to 'src/com/jogamp/opencl/CLPlatform.java')
-rw-r--r-- | src/com/jogamp/opencl/CLPlatform.java | 55 |
1 files changed, 47 insertions, 8 deletions
diff --git a/src/com/jogamp/opencl/CLPlatform.java b/src/com/jogamp/opencl/CLPlatform.java index aef828d1..2fd7d3f1 100644 --- a/src/com/jogamp/opencl/CLPlatform.java +++ b/src/com/jogamp/opencl/CLPlatform.java @@ -10,6 +10,7 @@ import com.jogamp.gluegen.runtime.FunctionAddressResolver; import com.jogamp.opencl.util.CLUtil; import com.jogamp.opencl.impl.CLImpl; import com.jogamp.opencl.impl.CLProcAddressTable; +import com.jogamp.opencl.util.Filter; import java.nio.ByteBuffer; import java.nio.IntBuffer; @@ -118,10 +119,25 @@ public final class CLPlatform { */ public static CLPlatform getDefault() { initialize(); - CLPlatform[] platforms = listCLPlatforms(); + return latest(listCLPlatforms()); + } + + /** + * Returns the default OpenCL platform or null when no platform found. + */ + public static CLPlatform getDefault(Filter<CLPlatform>... filter) { + CLPlatform[] platforms = listCLPlatforms(filter); + if(platforms.length > 0) { + return latest(platforms); + }else{ + return null; + } + } + + private static CLPlatform latest(CLPlatform[] platforms) { CLPlatform best = platforms[0]; for (CLPlatform platform : platforms) { - if(platform.version.compareTo(best.version) > 0) { + if (platform.version.compareTo(best.version) > 0) { best = platform; } } @@ -133,6 +149,15 @@ public final class CLPlatform { * @throws CLException if something went wrong initializing OpenCL */ public static CLPlatform[] listCLPlatforms() { + return listCLPlatforms((Filter<CLPlatform>[])null); + } + + /** + * Lists all available OpenCL implementations. The platforms returned must pass all filters. + * @param filter Acceptance filter for the returned platforms. + * @throws CLException if something went wrong initializing OpenCL + */ + public static CLPlatform[] listCLPlatforms(Filter<CLPlatform>... filter) { initialize(); IntBuffer ib = Buffers.newDirectIntBuffer(1); @@ -145,12 +170,27 @@ public final class CLPlatform { ret = cl.clGetPlatformIDs(platformId.capacity(), platformId, null); checkForError(ret, "can not enumerate platforms"); - CLPlatform[] platforms = new CLPlatform[platformId.capacity()]; - - for (int i = 0; i < platformId.capacity(); i++) - platforms[i] = new CLPlatform(platformId.get(i)); + List<CLPlatform> platforms = new ArrayList<CLPlatform>(); + + for (int i = 0; i < platformId.capacity(); i++) { + CLPlatform platform = new CLPlatform(platformId.get(i)); + if(filter == null) { + platforms.add(platform); + }else{ + boolean accepted = true; + for (Filter<CLPlatform> f : filter) { + if(!f.accept(platform)) { + accepted = false; + break; + } + } + if(accepted) { + platforms.add(platform); + } + } + } - return platforms; + return platforms.toArray(new CLPlatform[platforms.size()]); } /** @@ -411,5 +451,4 @@ public final class CLPlatform { return hash; } - } |