/* * Copyright 2009 - 2010 JogAmp Community. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * The views and conclusions contained in the software and documentation are those of the * authors and should not be interpreted as representing official policies, either expressed * or implied, of JogAmp Community. */ package com.jogamp.opencl; import com.jogamp.common.nio.Buffers; import com.jogamp.common.os.DynamicLookupHelper; import java.security.PrivilegedAction; import com.jogamp.common.JogampRuntimeException; import com.jogamp.common.os.NativeLibrary; import com.jogamp.common.nio.PointerBuffer; 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 com.jogamp.opencl.util.JOCLVersion; import java.nio.ByteBuffer; import java.nio.IntBuffer; import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Scanner; import java.util.Set; import static java.security.AccessController.*; import static com.jogamp.opencl.CLException.*; import static com.jogamp.opencl.CL.*; /** * CLPlatfrorm representing a OpenCL implementation (e.g. graphics driver). * * optional eager initialization: *

 *     try{
 *          CLPlatform.initialize();
 *     }catch(JogampRuntimeException ex) {
 *          throw new RuntimeException("could not load Java OpenCL Binding");
 *     }
 * 

* * Example initialization: *

 *     CLPlatform platform = CLPlatform.getDefault(type(GPU));
 *      
 *     if(platform == null) {
 *          throw new RuntimeException("please update your graphics drivers");
 *     }
 * 
 *     CLContext context = CLContext.create(platform.getMaxFlopsDevice());
 *     try {
 *          // use it
 *     }finally{
 *          context.release();
 *     }
 * 

* concurrency:
* CLPlatform is threadsafe. * * @author Michael Bien * @see #initialize() * @see #getDefault() * @see #listCLPlatforms() */ public final class CLPlatform { /** * OpenCL platform id for this platform. */ public final long ID; /** * Version of this OpenCL platform. */ public final CLVersion version; private static CL cl; private Set extensions; private CLPlatform(long id) { this.ID = id; this.version = new CLVersion(getInfoString(CL_PLATFORM_VERSION)); } /** * Eagerly initializes JOCL. Subsequent calls do nothing. * @throws JogampRuntimeException if something went wrong in the initialization (e.g. OpenCL lib not found). */ public synchronized static void initialize() throws JogampRuntimeException { if(cl != null) { return; } try { final CLProcAddressTable table = new CLProcAddressTable(new FunctionAddressResolver() { public long resolve(String name, DynamicLookupHelper lookup) { //FIXME workaround to fix a gluegen issue if(name.endsWith("Impl")) { name = name.substring(0, name.length() - "Impl".length()); } if(name.endsWith("KHR") || name.endsWith("EXT")) { long address = ((CLImpl) cl).clGetExtensionFunctionAddress(name); if(address != 0) { return address; } } return lookup.dynamicLookupFunction(name); } }); cl = new CLImpl(table); //load JOCL and init table doPrivileged(new PrivilegedAction() { public Object run() { NativeLibrary libOpenCL = JOCLJNILibLoader.loadOpenCL(); if(libOpenCL == null) { throw new JogampRuntimeException("OpenCL library not found."); } //eagerly init function to query extension addresses (used in reset()) table.initEntry("clGetExtensionFunctionAddressImpl", libOpenCL); table.reset(libOpenCL); return null; } }); // System.out.println("\n"+table); // System.out.println("unavailable functions: "+table.getNullPointerFunctions()); }catch(UnsatisfiedLinkError ex) { System.err.println(JOCLVersion.getAllVersions()); throw ex; }catch(Exception ex) { System.err.println(JOCLVersion.getAllVersions()); throw new JogampRuntimeException("JOCL initialization error.", ex); } } /** * Returns the default OpenCL platform or null when no platform found. */ public static CLPlatform getDefault() { initialize(); return latest(listCLPlatforms()); } /** * Returns the default OpenCL platform or null when no platform found. */ public static CLPlatform getDefault(Filter... 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) { best = platform; } } return best; } /** * Lists all available OpenCL implementations. * @throws CLException if something went wrong initializing OpenCL */ public static CLPlatform[] listCLPlatforms() { return listCLPlatforms((Filter[])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... filter) { initialize(); IntBuffer ib = Buffers.newDirectIntBuffer(1); // find all available OpenCL platforms int ret = cl.clGetPlatformIDs(0, null, ib); checkForError(ret, "can not enumerate platforms"); // receive platform ids PointerBuffer platformId = PointerBuffer.allocateDirect(ib.get(0)); ret = cl.clGetPlatformIDs(platformId.capacity(), platformId, null); checkForError(ret, "can not enumerate platforms"); List platforms = new ArrayList(); for (int i = 0; i < platformId.capacity(); i++) { CLPlatform platform = new CLPlatform(platformId.get(i)); addIfAccepted(platform, platforms, filter); } return platforms.toArray(new CLPlatform[platforms.size()]); } /** * Returns the low level binding interface to the OpenCL APIs. */ public static CL getLowLevelCLInterface() { initialize(); return cl; } /** * Hint to allow the implementation to release the resources allocated by the OpenCL compiler. * Calls to {@link CLProgram#build()} after unloadCompiler will reload the compiler if necessary. */ public static void unloadCompiler() { initialize(); int ret = cl.clUnloadCompiler(); checkForError(ret, "error while sending unload compiler hint"); } /** * Lists all physical devices available on this platform. * @see #listCLDevices(com.jogamp.opencl.CLDevice.Type...) */ public CLDevice[] listCLDevices() { return this.listCLDevices(CLDevice.Type.ALL); } /** * Lists all physical devices available on this platform matching the given {@link CLDevice.Type}. */ public CLDevice[] listCLDevices(CLDevice.Type... types) { initialize(); List list = new ArrayList(); for(int t = 0; t < types.length; t++) { CLDevice.Type type = types[t]; PointerBuffer deviceIDs = getDeviceIDs(type.TYPE); //add device to list for (int n = 0; n < deviceIDs.capacity(); n++) { list.add(new CLDevice(cl, this, deviceIDs.get(n))); } } return list.toArray(new CLDevice[list.size()]); } /** * Lists all physical devices available on this platform matching the given {@link Filter}. */ public CLDevice[] listCLDevices(Filter... filters) { initialize(); List list = new ArrayList(); PointerBuffer deviceIDs = getDeviceIDs(CL_DEVICE_TYPE_ALL); //add device to list for (int n = 0; n < deviceIDs.capacity(); n++) { CLDevice device = new CLDevice(cl, this, deviceIDs.get(n)); addIfAccepted(device, list, filters); } return list.toArray(new CLDevice[list.size()]); } private PointerBuffer getDeviceIDs(long type) { IntBuffer ib = Buffers.newDirectIntBuffer(1); //find all devices int ret = cl.clGetDeviceIDs(ID, type, 0, null, ib); PointerBuffer deviceIDs = null; // return null rather than throwing an exception if(ret == CL.CL_DEVICE_NOT_FOUND || ib.get(0) == 0) { deviceIDs = PointerBuffer.allocate(0); }else{ deviceIDs = PointerBuffer.allocateDirect(ib.get(0)); checkForError(ret, "error while enumerating devices"); ret = cl.clGetDeviceIDs(ID, type, deviceIDs.capacity(), deviceIDs, null); checkForError(ret, "error while enumerating devices"); } return deviceIDs; } private static void addIfAccepted(I item, List list, Filter[] filters) { if(filters == null) { list.add(item); }else{ boolean accepted = true; for (Filter filter : filters) { if(!filter.accept(item)) { accepted = false; break; } } if(accepted) { list.add(item); } } } static CLDevice findMaxFlopsDevice(CLDevice[] devices) { return findMaxFlopsDevice(devices, null); } static CLDevice findMaxFlopsDevice(CLDevice[] devices, CLDevice.Type type) { initialize(); CLDevice maxFLOPSDevice = null; int maxflops = -1; for (int i = 0; i < devices.length; i++) { CLDevice device = devices[i]; if(type == null || type.equals(device.getType())) { int maxComputeUnits = device.getMaxComputeUnits(); int maxClockFrequency = device.getMaxClockFrequency(); int flops = maxComputeUnits*maxClockFrequency; if(flops > maxflops) { maxflops = flops; maxFLOPSDevice = device; } } } return maxFLOPSDevice; } /** * Returns the device with maximal FLOPS from this platform. * The device speed is estimated by calculating the product of * MAX_COMPUTE_UNITS and MAX_CLOCK_FREQUENCY. * @see #getMaxFlopsDevice(com.jogamp.opencl.CLDevice.Type...) */ public CLDevice getMaxFlopsDevice() { return findMaxFlopsDevice(listCLDevices()); } /** * Returns the device with maximal FLOPS and the specified type from this platform. * The device speed is estimated by calculating the product of * MAX_COMPUTE_UNITS and MAX_CLOCK_FREQUENCY. */ public CLDevice getMaxFlopsDevice(CLDevice.Type... types) { return findMaxFlopsDevice(listCLDevices(types)); } /** * Returns the device with maximal FLOPS and the specified type from this platform. * The device speed is estimated by calculating the product of * MAX_COMPUTE_UNITS and MAX_CLOCK_FREQUENCY. */ public CLDevice getMaxFlopsDevice(Filter... filter) { return findMaxFlopsDevice(listCLDevices(filter)); } /** * Returns the platform name. */ @CLProperty("CL_PLATFORM_NAME") public String getName() { return getInfoString(CL_PLATFORM_NAME); } /** * Returns the OpenCL version supported by this platform. */ @CLProperty("CL_PLATFORM_VERSION") public CLVersion getVersion() { return version; } /** * Returns the OpenCL Specification version supported by this platform. */ public String getSpecVersion() { return version.getSpecVersion(); } /** * @see CLVersion#isAtLeast(com.jogamp.opencl.CLVersion) */ public boolean isAtLeast(CLVersion other) { return version.isAtLeast(other); } /** * @see CLVersion#isAtLeast(int, int) */ public boolean isAtLeast(int major, int minor) { return version.isAtLeast(major, minor); } /** * Returns the platform profile. */ @CLProperty("CL_PLATFORM_PROFILE") public String getProfile() { return getInfoString(CL_PLATFORM_PROFILE); } /** * Returns the platform vendor. */ @CLProperty("CL_PLATFORM_VENDOR") public String getVendor() { return getInfoString(CL_PLATFORM_VENDOR); } /** * Returns the ICD suffix. */ @CLProperty("CL_PLATFORM_ICD_SUFFIX_KHR") public String getICDSuffix() { return getInfoString(CL_PLATFORM_ICD_SUFFIX_KHR); } /** * Returns true if the extension is supported on this platform. */ public boolean isExtensionAvailable(String extension) { return getExtensions().contains(extension); } /** * Returns all platform extension names as unmodifiable Set. */ @CLProperty("CL_PLATFORM_EXTENSIONS") public synchronized Set getExtensions() { if(extensions == null) { extensions = new HashSet(); String ext = getInfoString(CL_PLATFORM_EXTENSIONS); Scanner scanner = new Scanner(ext); while(scanner.hasNext()) extensions.add(scanner.next()); extensions = Collections.unmodifiableSet(extensions); } return extensions; } /** * Returns a Map of platform properties with the enum names as keys. * @see CLUtil#obtainPlatformProperties(com.jogamp.opencl.CLPlatform) */ public Map getProperties() { return CLUtil.obtainPlatformProperties(this); } /** * Returns a info string in exchange for a key (CL_PLATFORM_*). */ public String getInfoString(int key) { PointerBuffer size = PointerBuffer.allocateDirect(1); // TODO use cache/query size ByteBuffer bb = ByteBuffer.allocateDirect(512); int ret = cl.clGetPlatformInfo(ID, key, bb.capacity(), bb, size); checkForError(ret, "can not receive info string"); return CLUtil.clString2JavaString(bb, (int)size.get(0)); } @Override public String toString() { return "CLPlatform [name:" + getName() +" vendor:"+getVendor() +" profile:"+getProfile() +" version:"+getVersion()+"]"; } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final CLPlatform other = (CLPlatform) obj; if (this.ID != other.ID) { return false; } return true; } @Override public int hashCode() { int hash = 7; hash = 71 * hash + (int) (this.ID ^ (this.ID >>> 32)); return hash; } }