Questions tagged [amd-gpu]
85 questions
3
votes
0 answers
Julia AMDGPU.jl launch configuration
I wonder if there is an equivalent (or something similar) of the launch_configuration
function in CUDA.jl that can be used in the AMDGPU.jl package? Otherwise, do you have any comments on how to know the configuration of the AMD GPU? Thanks.

armando
- 1,360
- 2
- 13
- 30
3
votes
2 answers
Nm shows symbol in shared library, but undefined symbol when linking
As a mental exercise, I'm trying to write a program that links directly against the GPU driver of my Macbook Pro rather than using Apple's Metal framework. Some exploration led me to this file (presumably specific to my particular…

jweightman
- 328
- 1
- 12
3
votes
2 answers
How to use tensorflow v2 with directml backend
I have a computer with the windows operating system with an amd gpu (rx 5600 xt), and I want to run tensorflow on the gpu.
I found "tensorflow-directml" which allows me to run tensorflow on my gpu, but it uses tensorflow 1.14.0.
Is there another…

shahar
- 355
- 2
- 18
3
votes
1 answer
OpenGL drops performance when writing to nonzero FBO attachment on AMD
I noticed that my 3D engine runs very slow on AMD hardware. After some investigation the slow code boiled down to creating FBO with several attachments and writing to any nonzero attachment. In all tests I compared AMD performance with the same AMD…

Sergey
- 7,985
- 4
- 48
- 80
3
votes
1 answer
How to get assembly code for OpenCL kernel on AMD GPU with OSX
I am trying to view the assembly code of an OpenCL kernel that runs on the AMD GPU of my Mac.
Based on this SO question, OpenCL online compilation: get assembly from cl::program or cl::kernel, I used --save-temps to my clBuildProgram call, as…

s2o_ozman
- 71
- 5
3
votes
1 answer
What is the minimal nesesary file subset, required to AMD OpenCL work on Linux?
I've built Linux Kernel, with means of the buildroot. I've incorporated opensource amdgpu driver and required firmwares into it. Driver is fine, detecting GPUs, mode setting acts good, adjusting resolution for "small text", and command line shows up…

xakepp35
- 2,878
- 7
- 26
- 54
3
votes
2 answers
Linux OpenCL Error: clGetPlatformIDs(-1001)
I have a simple source code (sum of 2 vectors) for testing OpenCL the problem is the following: when I run th executable file I get this error:
Error: clGetPlatformIDs(-1001)
Also, if i run the command clinfo I get the following error:
terminate…

Joseph86
- 43
- 1
- 5
3
votes
1 answer
Mac OSX 10.10 AMD APP SDK Location
I have spent the past hour looking for the AMD APP SDK location for Mac OSX 10.10 and cannot find it for the life of me. I don't know the file name even so I can't just search for it and searching SDK doesn't work.
I know I have it because I'm on a…

Matthew Bahr
- 337
- 1
- 15
3
votes
1 answer
Using Nvidia *and* AMD GPUs in a Ubuntu 14.04, 64bit for OpenCL development
I am trying to get a AMD and NVidia GPU to run inside the same Ubuntu 14.04 PC for parallel OpenCL development on both. I had achieved this using Ubuntu 12.04 and the information provided here and here. Unfortunately what I did back then, does not…

packoman
- 1,230
- 1
- 16
- 36
2
votes
1 answer
How to compile OpenCL kernel into binary for an AMD GPU that I don't physically have?
I have found some references on AMD forums that it is possible to do offline compilation for a target GPU not physically installed in the system that does the compilation. But I can't find a way to do this.
In other words, how can I create a binary…

Violet Giraffe
- 32,368
- 48
- 194
- 335
2
votes
2 answers
How to interact with AMD GPUs using python on Windows
I want to interact with my AMD Radeon RX 580 using python.
Basic stuff that I want to accomplish:
Get power levels (How many watts is it pulling)
Set fan speed
Retrieve some info from the GPU itself like : Memory size, SubVendor (Saphhire, XFX…

ScreX
- 43
- 1
- 7
2
votes
0 answers
How to read and write to Global Data Share in AMD GCN?
I'm trying to use GDS in AMD GPU, but I can not make it work. My GPU is AMD RX580.
I used this OpenCL kernel:
__kernel __attribute__((reqd_work_group_size(64, 1, 1)))
void localVarExample(__global int *res)
{
int i = get_global_id(0);
__local…

Michael Lukin
- 829
- 3
- 9
- 19
2
votes
2 answers
Use experimental devices support in PlaidML?
I want to use PlaidML to speed up deep learning training on my Mac Pro computer. After installing PlaidML, I run "plaidml-setup", and received the following message:
PlaidML Setup (0.3.5)
Thanks for using PlaidML!
Some Notes:
* Bugs and other…

user697911
- 10,043
- 25
- 95
- 169
2
votes
0 answers
clinfo.exe crash with an error
Now I installed the AMD APP SDK 3.0 and try to check if it is installed successfully.When I use cmd and clinfo command, it displays information but with an error terminated finally.It makes me confused. The picture as follows.
The clinfo.exe error…

Baifeng
- 21
- 2
2
votes
1 answer
Android Studio AVD Linux AMDGPU driver
I'm unable to start any virtual device via AVD (Android Virtual Device Manager) on Linux using the newest open source AMD drivers AMDGPU.
GPU: AMD Rx 460
CPU: Intel Core i5-4460 CPU @ 3.20GHz × 4
OS: Solus OS
Kernel: 4.7.4
Mesa: 12.0.3
AMDGPU:…

nimrod
- 175
- 2
- 9