amd-processor

pyglet vertex list not rendered (AMD driver?)

别等时光非礼了梦想. 提交于 2020-01-16 04:21:07
问题 My machine apparently won't draw vertex lists in pyglet. The following code renders two identical shapes at different positions in the window, one using a vertex list and the other using a straight draw() . The one that's drawn directly renders fine, while the vertex list doesn't render at all. import pyglet window = pyglet.window.Window() w, h = window.get_size() vl = pyglet.graphics.vertex_list( 4, ('v2i', (100,0, 100,h, 200,h, 200,0)), ('c3B', (255,255,255, 255,0,0, 0,255,0, 0,0,255)) )

AMD CPU versus Intel CPU openCL

纵饮孤独 提交于 2020-01-14 19:14:41
问题 With some friends we want to use openCL. For this we look to buy a new computer, but we asked us the best between AMD and Intel for use of openCL. The graphics card will be a Nvidia and we don't have choice on the graphic card, so we start to want buy an intel cpu, but after some research we figure out that may be AMD cpu are better with openCL. We didn't find benchmarks which compare the both. So here is our questions: Is AMD better than Intel with openCL? Is it a matter to have a Nvidia

Memory allocation Nvidia vs AMD

淺唱寂寞╮ 提交于 2020-01-13 20:36:10
问题 I know there is a 128MB limit for a single block of GPU memory on AMD GPU's. Is there a similar limit on Nvidia GPU's? 回答1: On GTX 560 clGetDeviceInfo returns 256MiB for CL_DEVICE_MAX_MEM_ALLOC_SIZE, however I can allocate slightly less than 1GiB. See this thread discussing the issue. On AMD however this limit is enforced. You can raise it by changing GPU_MAX_HEAP_SIZE and GPU_MAX_ALLOC_SIZE environment variables (see this thread). 回答2: You can query this information at runtime using

Many OpenCL SDK's. Which of them i should choose?

青春壹個敷衍的年華 提交于 2020-01-05 02:31:33
问题 In my computer with Windows 7 OS I have three versions of OpenCL SDKS's from this vendors: Intel NVIDIA AMD. I build my application with each of them. As the output I have three different binaries. For example: my_app_intel_x86, my_app_amd_x86, my_app_nvidia_x86 This binaries are different on this: They use different SDK's in likange process They try to find different OpenCL platform name in runtime Can I use only one SDK and check platform on running time? 回答1: SDK's give debuggings tools, a

Missing Dependencies Installing NumPy 1.9 for Python 3.4.1 32-bit on Windows 7

旧巷老猫 提交于 2020-01-04 05:25:12
问题 I cannot seem to get NumPy 1.9.0 with Python 3.4.1 32-bit on a Windows 7 AMD 64-bit machine. I download the package, unzip it, and run: python setup.py install Here are the messages I get in the command shell. I think my problem is that I don't have an Intel machine with MLK binaries available, because I have an AMD processor. I've tried a number of Google search results; no joy. Any advice on how to make this successful? F:\Tools\numpy-1.9.0>python setup.py install Running from numpy source

Android Studio and Ryzen CPU?

ⅰ亾dé卋堺 提交于 2020-01-04 04:26:27
问题 I know it could be marked as duplicate. But none of the threads helped me, so I decided to make my own. I'm a Java back-end developer and I've decided to learn some Android stuff. I worked on Android Studio several years ago having i5-4570 processor. Then I gave up. Now I see Android Studio is really really interesting, so I have downloaded it. Now I have Ryzen 5 1600 processor. It's really great... but... None of the Android emulators work for me. What have I tried? Android Studio built-in

Error on starting OS X Mavericks on AMD A8-APU with Radeon HD Graphics [closed]

橙三吉。 提交于 2019-12-26 11:37:33
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I am getting the following error on starting OS X Mavericks - VMware Workstation --------------------------- The CPU has been disabled by the guest operating system. Power off or reset the virtual machine. I implemented line from http://minhdanh2002.blogspot.in/2012/07/fixing-cpu-has-been-disabled-by-guest.html

How to create an Android AVD without HAXM?

社会主义新天地 提交于 2019-12-25 01:17:45
问题 I'm trying to setup an Android development environment on my computer, and I'm having trouble setting up an AVD, so I can test my applications without having to have a physical device all the time. However, I'm running into a problem. The first problem is that when I create an AVD in AVD Manager, it doesn't show up on the AVD list when I try to run my application (yes, I checked the Android target version). I realized that seems to be because the AVD wants to use HAXM, but my computer

Ubuntu 12.04 /usr/bin/ld: error: cannot find -lGL

99封情书 提交于 2019-12-24 19:23:22
问题 I istalled the fglrx ATI/AMD proprietary driver and now when i try to launch my OpenGL/SDL project i receive this message: /usr/bin/ld: error: cannot find -lGL I run Ubuntu 12.04 desktop, 64-bit. HD6870 [ATI Radeon HD 6800 Series] 回答1: Installing fglrx-glx should help you, those are libGL's for proprietary AMD/ATI drivers. 来源: https://stackoverflow.com/questions/11867913/ubuntu-12-04-usr-bin-ld-error-cannot-find-lgl

unroll loops in an AMD OpenCL kernel

断了今生、忘了曾经 提交于 2019-12-24 14:18:31
问题 I'm trying to assess the performance differences between OpenCL for AMD .I have kernel for hough transfrom in the kernel i have two #pragma unroll statements when run the kernel not produce any speedup kernel void hough_circle(read_only image2d_t imageIn, global int* in,const int w_hough,__global int * circle) { sampler_t sampler=CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP_TO_EDGE | CLK_FILTER_NEAREST; int gid0 = get_global_id(0); int gid1 = get_global_id(1); uint4 pixel; int x0=0,y0=0,r;