oclInfo: Retrieve information about an OpenCL object.

Description Usage Arguments Value Author(s) Examples

View source: R/ocl.R

Description

Some OpenCL obejcts have information tokens associated with them. For example the device obejct has a name, vendor, list of extensions etc. oclInfo returns a list of such properties for the given object.

Usage

1
2
3
4
5
6
7
oclInfo(item)
## S3 method for class 'clDeviceID'
oclInfo(item)
## S3 method for class 'clPlatformID'
oclInfo(item)
## S3 method for class 'list'
oclInfo(item)

Arguments

item

object to retrieve information properties from

Value

List of properties. The properties vary by object type. Some common properties are "name", "vendor", "version", "profile" and "exts".

Author(s)

Simon Urbanek

Examples

1
2
3
4
5
6
p <- oclPlatforms()
if (length(p)) {
  print(oclInfo(p[[1]]))
  d <- oclDevices(p[[1]])
  if (length(d)) print(oclInfo(d))
}

OpenCL documentation built on July 24, 2021, 5:07 p.m.

Related to oclInfo in OpenCL...