Examples of AffinityDomain


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
Copyright © 2018 www.massapi.com. 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.