CUDA
IsEnabled
check if CUDA(R) acceleration is turned on
Calling Sequence
Description
Examples
IsEnabled( )
The IsEnabled function returns a value of true if Compute Unified Device Architecture (CUDA) acceleration is turned on and false otherwise.
Use the Enable function to turn CUDA acceleration on and off.
If your computer does not support CUDA, an error will be displayed. For more information about supported hardware, see Supported Hardware for CUDA Acceleration.
Run these examples on a computer that supports CUDA.
n≔4000:
M1≔LinearAlgebra:-RandomMatrixn,n,datatype=float4:
M2≔LinearAlgebra:-RandomMatrixn,n,datatype=float4:
CUDA:-IsEnabled
false
tNoCUDA≔timerealM1·M2
tNoCUDA≔13.823
CUDA:-Enabletrue
true
tCUDA≔timerealM1·M2
tCUDA≔1.163
evalftNoCUDAtCUDA
11.88564058
CUDA:-Enablefalse
See Also
CUDA[Enable]
CUDA[Properties]
Supported Hardware for CUDA Acceleration
Download Help Document