Questions tagged [gpu]
Questions on using Mathematica functionality to take advantage of a Graphics Processing Unit, a special stream processor designed for highly parallel computer graphics operations.
88 questions
4
votes
0
answers
118
views
Why can't the GPU work with TargetDevice?
I use Mathematica 14.2, and the graphics card is RTX5070ti.
For GPU use, Cuda 12.9 was initially installed, but the GPU was not operated with DeviceTarget. And now, it is reinstalled to Cuda 12.0.
<...
8
votes
1
answer
389
views
Supported GPU hardware for GPUArray
Is there a list somewhere of all supported GPUs for the new GPUArray feature (new in V14.2)?
I have the NVIDIA GeForce RTX 2070 SUPER installed, and unfortunately this call fails (in terms of creating ...
2
votes
0
answers
80
views
Is it possible to use external functions in CompiledLayer?
I am trying to build a custom layer for my neural network that can perform its computation on the GPU. The function is to be written in C and loaded in Mathematica via the LibraryLink. Is it possible ...
0
votes
0
answers
82
views
Error following upgrade to Mathematica 14.0: Classify: TargetDevice -> GPU requires restart [duplicate]
I recently upgraded Mathematica from 13.3 to 14.0 on my workstation. When I attempted to execute a script that ran without any issues on 13.3, I suddenly get an error associated with the Classify ...
1
vote
0
answers
78
views
Why did my animated Graphics3D stop functioning after Nvidia GPU driver update? Now I have to end Mathematica process in the task manager
The following code used to work fine until just after a recent Nvidia driver update. Running the code causes Mathematica to completely hang and I must end the Mathematica process in the task manager.
...
4
votes
0
answers
120
views
TrainImageContentDetector example aborts on GPU
I'm running v13.2.1 on Ubuntu and trying to run the built-in examples. But I see a "GPU memory exhausted" error on the first one in the docs for ...
2
votes
0
answers
115
views
SymbolicGPU documentation
I found an interesting files there
$CUDALinkPath -> ../GPUTools
here
...
3
votes
0
answers
123
views
Can someone recommend workflow for debugging RemoteBatchSubmit jobs on AWS
I am trying to troubleshoot using an external service (AWS: Amazon Web Service) for NetTrain with a GPU.
My RemoteBatchSubmit has been stuck at "Runable" for about 10 hours as described in ...
5
votes
2
answers
373
views
Optimizing sequential computation
The following question came up in reading group discussion of paper -- imagine taking two vectors, multiplying each by a random matrix, then taking tanh pointwise. If you repeat this process forever, ...
1
vote
0
answers
138
views
Unknown Error in NetGraph with RTX 3090 GPU
I am running NetGraph on my RTX 3090 GPU. The Net itself loads properly in my GPU, having an approximate size of 9GB (the 3090 has 24GB of memory). However, once the net actually starts NetGraph ...
0
votes
1
answer
104
views
Does the Solve function as applied to simultaneous equations benefit from multi-node / GPU parallel computing?
I use the Solve function to find solutions for systems of simultaneous equations with dozens or hundreds of equations and variables. This is successful though very slow (weeks) on a conventional ...
2
votes
1
answer
223
views
Anyone has any succes on GPU NetTrain with RemoteBatchSubmit on AWS EC2?
Since 12.3, the RemoteBatchSubmit to EC2 does not work anymore.
First, it features the same bug as Version 12.3.1 Problems with NetTrain, where the MXNetResources paclet is 12.4 instead of 12.3.
...
2
votes
0
answers
167
views
Solving differential equations with GPU?
I have a complicated differential equation which is taking a lot of time to solve, if I had more cores it would be easier, but my computer is limited...
I was wondering: is it possible to solve ...
4
votes
1
answer
449
views
How can I free GPU memory allocated with NetTrain
When I train a neural network with NetTrain[..., TargetDevice->"GPU"], wolfram's neural network code automatically allocates memory on my GPU for my ...
1
vote
2
answers
244
views