Package com.jogamp.opencl.CLSubDevice

Examples of com.jogamp.opencl.CLSubDevice.Partition


        }
        LongBuffer types = getInfoLongs(CL_DEVICE_PARTITION_TYPES_EXT);

        List<Partition> list = new ArrayList<Partition>();
        while(types.hasRemaining()) {
            Partition type = Partition.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.Partition

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.