Package com.jogamp.opencl.CLSubDevice

Examples of com.jogamp.opencl.CLSubDevice.AffinityDomain


        LongBuffer types = getInfoLongs(CL_DEVICE_AFFINITY_DOMAINS_EXT);

        List<AffinityDomain> list = new ArrayList<AffinityDomain>();
        while(types.hasRemaining()) {
            AffinityDomain type = AffinityDomain.valueOf((int)types.get());
            if(type != null) {
                list.add(type);
            }
        }
        return EnumSet.copyOf(list);
View Full Code Here

TOP

Related Classes of com.jogamp.opencl.CLSubDevice.AffinityDomain

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.