Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

40
votes
3answers
719 views

Is this “should not happen” crash an AMD Fusion CPU bug?

My company has started having a number of customers call in because our program is crashing with an access violation on their systems. The crash happens in SQLite 3.6.23.1, which we ship as part of ...
16
votes
4answers
1k views

How much should I worry about the Intel C++ compiler emitting suboptimal code for AMD?

We've always been an Intel shop. All the developers use Intel machines, recommended platform for end users is Intel, and if end users want to run on AMD it's their lookout. Maybe the test department ...
9
votes
3answers
3k views

Intel MKL vs. AMD Math Core Library

Does anybody have experience programming for both the Intel Math Kernel Library and the AMD Math Core Library? I'm building a personal computer for high performance statistical computations and am ...
7
votes
2answers
159 views

What could cause my program to not use all cores after a while?

I have written a program that captures and displays video from three video cards. For every frame I spawn a thread that compresses the frame to Jpeg and then puts it in queue for writing to disk. I ...
7
votes
7answers
6k views

Does my AMD-based machine use little endian or big endian?

I'm going though a computers system course and I'm trying to establish, for sure, if my AMD based computer is a little endian machine? I believe it is because it would be Intel-compatible. ...
7
votes
8answers
2k views

Development PC: AMD vs Intel and 32-bit vs 64-bit

I am looking to purchase a new development PC. My budget is not more than $1,000 USD (including monitor). I am open to laptop (desktop replacement type) or the traditional desktop PC would do just ...
5
votes
2answers
130 views

Performance of modern processor

Being executed on modern processor (AMD Phenom II 1090T), how many clock ticks does the following code consume more likely : 3 or 11? label: mov (%rsi), %rax adc %rax, (%rdx) lea ...
5
votes
3answers
361 views

Is it worth learning AMD-specific APIs?

I'm currently learning the APIs related to Intel's parallelization libraries such as TBB, MKL and IPP. I was wondering, though, whether it's also worth looking at AMD's part of the puzzle. Or would ...
4
votes
3answers
149 views

Guarantees on memory ordering and proper programming practice

With respect to the ordering I describe below I have some related questions. Given these ordering guarantees I don't need explicit fences in many places. However, how can I express the "fence" to ...
4
votes
9answers
130 views

Should I run my regression testing programs on both AMD and Intel chips?

Right now I plan to test on 32-bit, 64-bit, Windows XP Home, Windows XP Pro, Windows Vista Home Basic, Windows Vista Ultimate, Windows 7 Home Basic, and Windows 7 Ultimate ... all with the latest ...
2
votes
1answer
102 views

How to load custom AMD modules when using Dojo via CDN?

I am using google's CDN and also trying to load my own AMD modules using their loader. I know I'm doing something wrong but I'm stuck. Any ideas? <script ...
2
votes
1answer
37 views

Any consideration moving an ASP.NET application from Intel machine to AMD?

I have a working ASP.NET application which uses memory extensively and recently I have planned to move to an AMD machine. Is there anything I should take care of (i.e libraries I use in my Bin folder, ...
2
votes
1answer
37 views

What is the cost of converting 32-bit integer to double for Intel and AMD architecture?

I'm under the impression that conversions back and forth between these two representations are not expensive operations on modern hardware, is this true?
2
votes
4answers
714 views

AMD CPU versus Intel CPU openCL

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 ...
2
votes
1answer
402 views

OpenCV and AMD processors

I know that in the past OpenCV was based on IPP and was optimized to run on Intel CPUs. Is this still the case with OpenCV 2.0? Thanks, SW.
2
votes
4answers
830 views

Mutli-core Processors: Does each “core” run at the full clock speed or some fraction of the full clock frequency?

Let's say you have a single (1) Intel/AMD x86-64 bit 2 GHz 8 core processor. Does each of the 8 cores all run at the full 2 GHz or, does each core run at some fraction of the full 2 GHz clock (e.g. ...
2
votes
1answer
254 views

programatically disable hardware prefetching on AMD systems

is there a way to programatically disable the hardware prefetcher on an AMD system like you can in an Intel system as discussed in this topic Specifically for the AMD Opteron Barcelona or Istanbul ...
2
votes
2answers
305 views

How does x86 handle store conditional instructions?

I am trying to find out what an x86 processor does when it encounters a store conditional instruction. For instance does it stall the front end of the pipeline and wait for the ROB buffer to become ...
2
votes
3answers
2k views

Visual Studio 6 Processor Pack compatibility

I've seen that a Processor Pack is available for Visual Studio 6, however it appears to only be available for users with SP5 and I am already using SP6: In addition, the Visual C++ Processor Pack ...
1
vote
0answers
22 views

Pass values to “injected script” instead of relying on globals?

http://dojotoolkit.org/reference-guide/loader/amd.html#generic-script-injection When I'm using require() to do generic script injection, is there any way I can pass the injected script values without ...
1
vote
1answer
74 views

jQuery 1.7+, AMD (RequireJS), and Global Scope

I'm trying to get more in line w/ AMD, and I've come across something in jQuery source that I just can't quite undertand. Here is section (found just before the end of the file): if ( typeof define ...
1
vote
1answer
143 views

OpenCL chips: which to pick for GPGPU, how to have both AMD & nVidia in one machine

I will be developing GPGPU simulations using OpenCL (doble-precision). I would like to have both nVidia and AMD chips in my new workstation, for testing. Is such configuration (both AMD and nVidia) ...
1
vote
2answers
324 views

Memory allocation Nvidia vs AMD

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
vote
0answers
51 views

Problem installing IT++, ACML

I want to install IT++ with ACML I first installed ACML and then did: export LDFLAGS=$LDFLAGS:"-L/opt/acml4.4.0/ifort32/lib" export CPPFLAGS=$CPPFLAGS:"-I/opt/acml4.4.0/ifort32/include" So ...
1
vote
1answer
216 views

NUMA documentations for x86-64 processor?

I have already looked for NUMA documentations for X86-64 processors, unfortunately I only found optimization documents for NUMA. What I want is: how do I initialize NUMA in a system (this would ...
1
vote
2answers
152 views

ec2 instance cpu type

How do you select either AMD or Intel CPU for your new ec2 instance?
1
vote
1answer
115 views

AMD Geode Optimization References

I am working on doing some significant optimization of some machine vision code on an embedded AMD Geode LX. I am going as far as to rewrite the computationally intense portions in Assembly, making ...
1
vote
1answer
124 views

which params show cache misses?

I need to know which parts of my code make the most cache misses.. suggest which parameters of the profiling report I need to monitor, there are too many of them there ^_^
1
vote
2answers
191 views

AMD 6 Core and compiling open-source projects

I have been wanting to build my own box with AMD 6 core. I have always used Intel based machines and frankly have not done open-source projects. I want to get into that along with Systems programming ...
1
vote
2answers
269 views

3D Engines for development on any mobile platform

I am planning to develop a game for all of the mobile platform and have pretty much zeroed down on the concepts of the game. but the only issue I'm facing as of now is that I have no idea what would ...
1
vote
5answers
310 views

Will a .NET EXE targeted to x86 run on AMD chips?

If I target the x86 platform for my .NET app, will it run properly on AMD chips? I know that it will work with Intel chips, and that Vista 64 has the ability to run x86 apps in a special mode, but I ...
0
votes
0answers
34 views

Backbone, RequireJS, and Tree

I'm rewriting a category tree view into a RequireJS and Backbone app. The structure is simple: each category contains a collection of child categories. However, the circular dependency problem ...
0
votes
0answers
7 views

r.js command line vs. config file discrepancies

Using r.js, I want to build an AMD/RequireJS project into one file with almond bundled, using a config file instead of command line arguments. This works: r.js -o baseUrl=./js name=almond ...
0
votes
0answers
22 views

Optimize/build modules under parallel directories using the same config file in RequireJS

I have a feeling that the title just might not be explanatory :) Setup Suppose that I have the following structure: where app.js files are main bootstrapping/entry modules for the applications ...
0
votes
0answers
28 views

Where is best place to store authorization data when I use Backbone and AMD modules?

I create js app with Backbone and RequireJS for registred or non registred users. To retrive data from database I use simple JSON web service and of course some of methods are not avaiable for quest. ...
0
votes
0answers
40 views

Image convolution kernel does not function according to specified parameters, need help finding the cause

I am currently working on OpenCL with image convolution. I looked up a kernel code sample at the AMD website, I included this original sample here: __kernel void Convolve_Unroll(const __global float ...
0
votes
0answers
34 views

Best way to handle dependencies with AMD

I built my first app using AMD and requireJS and I was wondering the best way to manage dependencies. jQuery, Backbone, Underscore are core dependencies, meaning that almost all my module require ...
0
votes
2answers
25 views

Defining modules and using them immediately with RequireJS

I'm writing some tests for an application which is using RequireJS. Because of how the application works, it expects to get some classes via calling require. So, for testing, I have some dummy ...
0
votes
0answers
39 views

How to install ACML in Ubuntu natty 32 bit [closed]

I have downloaded the acml-4-4-0-gfortran-32bit.tgz but when I decompress it and run the install-acml-4-4-0-gfortran-32bit.sh as it is written in the README, after I enter the "accept" and then the ...
0
votes
0answers
45 views

Illegal instruction on converting single-precision float to half-precision(CVT16, VCVTPS2PH)

I'm trying to convert a single-precision floating point to a half-precision floating point using AMD's CVT16 instructions. Here is my test code.. #include <stdio.h> #include <stdlib.h> ...
0
votes
0answers
15 views

How different instruction types are defined in AMD microprocessors to identify DirectPath vs VectorPath flows?

In AMD 10h architecture like Opteron the prefetched instructions after being aligned are separated into 2 flows: DirectPath (or Fastpath) and VectorPath (Microcode engine). Later these flows are ...
0
votes
1answer
67 views

.NET Performance on AMD Processor

We are writing a data processing application in .NET 4 and recently tried to deploy our application to a AMD 6174 (12 core) processor. Historically we have used Intel and everything has been fine. The ...
0
votes
3answers
101 views

AMD vs. Intel processor to make executables

Probably a stupid question but I am in the following situation: our development machines are currently all 64-bit Intel-based systems, where we produce 32-bit and 64-bit versions of our applications. ...
0
votes
0answers
41 views

How can I prevent scaling by the gpu?

I have written a C# application that will force any resolution the user specifies but rather than only displaying the pixels specified by the resolution, it will output a resolution described in the ...
0
votes
0answers
121 views

Possible to use AMD gDEBugger 6.0 only for OpenCL CPU Kernel debugging? NVIDIA GPU seems to hold this off

is there a way to make AMD gDEBugger 6 debug at least OpenCL CPU Kernels even though a dedicated NVIDIA GPU is installed? When I start the gDEBugger, I get a warning: You do not have an AMD GPU ...
0
votes
2answers
76 views

AMD Open64: Optimized math functions

Does Open64 has something equivalent to Intel Short Vector Math Library Operations. Thank you.
0
votes
4answers
203 views

AMD compatible assemblers for Linux

I have an AMD CPU and I've been looking for an AMD compatible assembler. Is there any advice for me? Sultan
0
votes
1answer
168 views

Detecting End of Voicemail AND Recording at same time (Asterisk)

Please consider this a desperate please for help! We are building an app that records the outgoing voicemail message of dialed cell phones ONLY. When the outgong message on the dialed cell phone ...
0
votes
0answers
46 views

Cache-line transfer time between cores, looking for timings

I'm working on some concurrent code and would like to know what my theoretical minimum time is in certain scenarios. For this I'd like to know what the transfer time is for data in a cahce-line ...
0
votes
4answers
536 views

Opencl FFT libraries? Anything new or under the radar out there?

I googled this topic and didn't find anything new. I am aware of Nvidia's FFT implementation which is great, but for CUDA only. AMD just released their implementation, but it doesn't work on Nvidia ...

1 2