Package ai.djl
Class Device
- java.lang.Object
-
- ai.djl.Device
-
public final class Device extends java.lang.ObjectTheDeviceclass provides the specified assignment for CPU/GPU processing on theNDArray.Users can use this to specify whether to load/compute the
NDArrayon CPU/GPU with deviceType and deviceId provided.- See Also:
- The D2L chapter on GPU devices
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDevice.TypeContains device type string constants.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Devicecpu()Returns the default CPU Device.booleanequals(java.lang.Object o)static DevicefromName(java.lang.String deviceName)Parses a deviceName string into a device for the default engine.static DevicefromName(java.lang.String deviceName, Engine engine)Parses a deviceName string into a device.intgetDeviceId()Returns thedeviceIdof the Device.java.lang.StringgetDeviceType()Returns the device type of the Device.static Devicegpu()Returns the default GPU Device.static Devicegpu(int deviceId)Returns a new instance of GPUDevicewith the specifieddeviceId.inthashCode()booleanisGpu()Returns if theDeviceis GPU.static Deviceof(java.lang.String deviceType, int deviceId)Returns aDevicewith device type and device id.java.lang.StringtoString()
-
-
-
Method Detail
-
of
public static Device of(java.lang.String deviceType, int deviceId)
Returns aDevicewith device type and device id.- Parameters:
deviceType- the device type, typically CPU or GPUdeviceId- the deviceId on the hardware.- Returns:
- a
Deviceinstance
-
fromName
public static Device fromName(java.lang.String deviceName)
Parses a deviceName string into a device for the default engine.- Parameters:
deviceName- deviceName String to parse- Returns:
- the parsed device
- See Also:
fromName(String, Engine)
-
fromName
public static Device fromName(java.lang.String deviceName, Engine engine)
Parses a deviceName string into a device.The main format of a device name string is "cpu", "gpu0", or "nc1". This is simply deviceType concatenated with the deviceId. If no deviceId is used, -1 will be assumed.
There are also several simplified formats. The "-1", deviceNames corresponds to cpu. Non-negative integer deviceNames such as "0", "1", or "2" correspond to gpus with those deviceIds.
Finally, unspecified deviceNames (null or "") are parsed into the engine's default device.
- Parameters:
deviceName- deviceName stringengine- the engine the devie is for- Returns:
- the device
-
getDeviceType
public java.lang.String getDeviceType()
Returns the device type of the Device.- Returns:
- the device type of the Device
-
getDeviceId
public int getDeviceId()
Returns thedeviceIdof the Device.- Returns:
- the
deviceIdof the Device
-
isGpu
public boolean isGpu()
Returns if theDeviceis GPU.- Returns:
- if the
Deviceis GPU.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
cpu
public static Device cpu()
Returns the default CPU Device.- Returns:
- the default CPU Device
-
gpu
public static Device gpu()
Returns the default GPU Device.- Returns:
- the default GPU Device
-
gpu
public static Device gpu(int deviceId)
Returns a new instance of GPUDevicewith the specifieddeviceId.- Parameters:
deviceId- the GPU device ID- Returns:
- a new instance of GPU
Devicewith specifieddeviceId
-
-