Re: Blender Cycles(Opencl on AMD GPUS)
Same OpenCL version, same speed, same limitations. The promised "mid July" release became "mid August" and didn't deliver anything. I just have enough, after 2 years of waiting. It's about time to...
View ArticleRe: Kaveri GPU profiling on Linux
AFAIK, radeon doesn't support performance counters at the moment.You can see the current GPU clocks and voltages via debugfs:cat /sys/kernel/debug/dri/64/radeon_pm_infoNote that the clocks are in 10Khz...
View ArticleWiki page for HSA tools
We have created a new wiki page about how to run HSA applications on Kaveri using new tools we just released.The wiki page is located at Home · HSAFoundation/HSA-Docs-AMD Wiki · GitHub
View ArticleKaveri - global mem size
Hi, I use openCL on A10-7850k Kaveri GPU in 64 bit address mode. When I query global mem size like this: cl_ulong globalSize; clGetDeviceInfo(m_deviceId, CL_DEVICE_GLOBAL_MEM_SIZE, sizeof...
View ArticleRe: Kaveri - global mem size
The global memory is the memory dedicated to your GPU. For a discrete desktop GPU card, it is the memory soldered on the card for example (VRAM). So it's normal: your APU doesn't have access to all...
View ArticleRe: Blender Cycles(Opencl on AMD GPUS)
I last posted in this thread on May 19, 2014 10:33 PM and here we are nearly 3 months later and despite what seemed positive news and comments it seems no further progress has been made. My AMD...
View ArticleRe: Blender Cycles(Opencl on AMD GPUS)
AMD just released CLOC (HSAFoundation/CLOC · GitHub). Can any one here try compiling blender kernel with that? I'm wondering if that compiler is any better than the shipping compiler and eventually...
View ArticleRe: Blender Cycles(Opencl on AMD GPUS)
I'm here to do little more than add my voice to the crowd. I very much prefer AMD to Nvidia and find the proprietary CUDA framework to be highly distasteful. My dislike of CUDA means that AMD would...
View ArticleCan't get active OpenGL API in PerfStudio
Hello, I've been trying to get PerfStudio to work because I'm learning about OpenGL and believe it would be a valuable tool, but I've struggled to get it to work.I've connected it successfully to...
View ArticleRe: Kaveri - global mem size
I think that your results are normal. Kaveri has support for virtual memory, so even though the GPU doesn't have 6GB but 512MB, it is able to make like it has 6GB: every time it accesses some memory...
View ArticleRe: Detecting GCN, list of chips?
Thank you very much, I will keep this in mind. As long as no other cards get released, that's the most effective way to do this.
View ArticleRe: Kaveri - global mem size
It is not meaningless, it's exactly what's written.CL_DEVICE_GLOBAL_MEM_SIZE: size of the global memory available to the CL device.GLOBAL memory is not "system global" it's "offchip" device memory.My...
View ArticleRe: Kaveri GPU profiling on Linux
Thank you for your response!I checked out radeontop and it woks well with Kaveri. This kind of information is quite enough for me. For radeontop I pulled it from git and built by myself, the version...
View ArticleRe: HSA Linux kernel driver v0.8 released
It is really nice to know HSA apps may have the ability to allocate the GPU local memory. However, it seems the provisional HSA Runtime specification did not specifically touch on how this is exposed...
View ArticleCompute Shaders and Memory Barriers
Greetings, I've been trying to learn about learn about the compute shader functionality that come with the relatively new OpenGL 4.3, however i have run into some problems that i cannot solve myself,...
View ArticleCompute Shaders and Memory Barriers
Greetings, I've been trying to learn about the compute shader functionality that come with the relatively new OpenGL 4.3, however i have run into some problems that i cannot solve myself, there are too...
View ArticleCan someone explain to me GPRs on Tahiti?
I used a Radeon 5850 for OpenCL development and now upgraded to a Radeon R9 280. Using CodeXL I profiled the same kernel on the 5850 and R9 280 and I got 100% occupancy on the 5850 and 40% on the 280....
View ArticleAMD Catalyst: Issues with Garry's Mod
I have a strange problem with Garry's Mod.There's a delay between my mouse/keyboard movement and the real movement in-game. I can fix this problem on other Source Games with the gl_finish command, but...
View Articleprintf doesn't work for first group
I'm running a kernel with the following code: printf("glid=%d,%d; grid=%d,%d; lid=%d,%d; lsize=%d,%d\n",get_global_id(0), get_global_id(1), get_group_id(0), get_group_id(1),get_local_id(0),...
View Article