Class GPUPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
com.ibm.gpu.GPUPermission
- All Implemented Interfaces:
 Serializable, Guard
Deprecated, for removal: This API element is subject to removal in a future version.
Checking permissions is not supported.
This class defines GPU permissions as described in the following table.
| Permission Name | Allowed Action | 
|---|---|
| access | Accessing the instance of CUDAManager.
    See CUDAManager.instance(). | 
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionGPUPermission(String name) Deprecated, for removal: This API element is subject to removal in a future version.Create a representation of the named permissions.GPUPermission(String name, String actions) Deprecated, for removal: This API element is subject to removal in a future version.Create a representation of the named permissions. - 
Method Summary
Methods declared in class BasicPermission
equals, getActions, hashCode, implies, newPermissionCollectionMethods declared in class Permission
checkGuard, getName, toString 
- 
Constructor Details
- 
GPUPermission
Deprecated, for removal: This API element is subject to removal in a future version.Create a representation of the named permissions.- Parameters:
 name- name of the permission
 - 
GPUPermission
Deprecated, for removal: This API element is subject to removal in a future version.Create a representation of the named permissions.- Parameters:
 name- name of the permissionactions- not used, must be null or an empty string- Throws:
 IllegalArgumentException- if actions is not null or an empty string
 
 -