Tagged Questions

For issues related to intel semiconductor chip and assemblies

learn more… | top users | synonyms

20
votes
4answers
10k views

How do you use gcc to generate assembly code in Intel syntax?

The gcc -S option will generate assembly code in AT&T syntax, is there a way to generate files in Intel syntax? Or is there a way to convert between the two?
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 ...
13
votes
8answers
2k views

Any experiences with Intel's Threading Building Blocks?

Intel's Threading Building Blocks (TBB) open source library looks really interesting. Even though there's even an O'Reilly Book about the subject I don't hear about a lot of people using it. I'm ...
11
votes
4answers
192 views

Is this clock tick suitable on Intel i3?

I adopted online to measure SSE performance. #ifndef __TIMER_H__ #define __TIMER_H__ #pragma warning (push) #pragma warning (disable : 4035) // disable no return value warning __forceinline ...
11
votes
2answers
645 views

Why does Intel hides internal RISC core in their processors?

Starting with Pentium 4, Intel redesigned it's microprocessors and use internal RISC core under the old CISC instructions. Since Pentium 4 all CISC instructions are divided into smaller parts and then ...
11
votes
7answers
3k views

How to control which core a process runs on?

I can understand how one can write a program that uses multiple processes or threads: fork() a new process and use IPC, or create multiple threads and use those sorts of communication mechanisms. I ...
10
votes
1answer
198 views

Intel Chipset Programming

Does anyone know how to get start with writing a program to access, say, an intel memory controller hub, such as the intel 5400 mch or the intel p45 mch? Do I need Intel's Parallel Composer studio to ...
9
votes
5answers
884 views

Can one construct a “good” hash function using CRC32C as a base

Given that SSE 4.2 (Intel Core i7 & i5 parts) includes a CRC32 instruction, it seems reasonable to investigate whether one could build a faster general-purpose hash function. According to this ...
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 ...
8
votes
5answers
880 views

Is using double faster than float?

Double values store higher precision and are double the size of a float, but are Intel CPUs optimized for floats? That is, are double operations just as fast or faster than float operations for +, -, ...
7
votes
1answer
117 views

IA-32e 64-bit IDT Gate Descriptor

There is a Segment Selector in Intel's 64-bit IDT Gate Descriptor. However, from my understanding across the 5 part Intel manuals, the Linear Address of the Interrupt Handler is loaded into RIP from ...
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
3answers
1k views

Why is floor() so slow?

I wrote some code recently (ISO/ANSI C), and was surprised at the poor performance it achieved. Long story short, it turned out that the culprit was the floor() function. Not only it was slow, but it ...
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 ...
6
votes
2answers
170 views

Loading Code onto GPU (Intel Sandy Bridge)

My question is not about GPGPU. I understand GPGPU pretty decently and that is not what I am looking for. Intel's Sand Bridge has supposedly some features that allow you to directly perform ...
6
votes
1answer
144 views

MAC OSX Intel LLVM Assembler bug (causes Vorbis OGG loader to crash)

I had mysterious bug in loading Vorbis Ogg files on Mac OSX. The first file is loaded correctly, the second crashes in some code that indicates the file is corrupted, the same happens even if I load ...
6
votes
1answer
124 views

How to use intel prefetch pragma when data hidden inside an object?

Intel helpfully provides a prefetch pragma; for example #pragma prefetch a for(i=0; i<m; i++) a[i]=b[i]+1; will prefetch a a certain number of loop cycles ahead, as determined by the compiler. ...
6
votes
5answers
1k views

Multithreading not faster than single thread (simple loop test)

I'm experimenting with some multithreading constructions, but somehow it seems that multithreading is not faster than a single thread. I narrowed it down to a very simple test with a nested loop ...
6
votes
4answers
1k views

Is an Intel i7 (4 cores, 8 HT-based logical cores) better than an Intel Core 2 Quad for VisualC++ development?

I have to make a recommendation to management regarding whether or not we should spend the extra money to purchase new computers with Intel i7 CPUs (i7 950s) or whether we should buy Intel Core 2 Quad ...
5
votes
2answers
179 views

Learning Intel's TBB

Could anyone recommend good book about Intel's threading library and how to use it?
5
votes
4answers
3k views

Install Flash or AIR on INTEL Android (Android-x86)?

I'm porting a Flash 8 course to Android, and don't have an Android device. I've got the emulator installed, but find it deathly slow. I've also got Android 2.2 installed in VirtualBox using ...
5
votes
2answers
751 views

How to create a callback for “monitor plugged” on an intel graphics?

I've got an eeepc with an intel graphics. I'd like to hook a script to the event of a monitor plugged via VGA. How to do that?
5
votes
3answers
321 views

Intel C++ Compiler understanding what optimization is performed

I have a code segment which is as simple as : for( int i = 0; i < n; ++i) { if( data[i] > c && data[i] < r ) { --data[i]; } } It's a part of a large function and project. ...
5
votes
4answers
2k views

check if carry flag is set

Using inline assembler [gcc, intel, c], how to check if the carry flag is set after an operation?
5
votes
3answers
221 views

how do addressing modes work on a physical level?

I'm trying to learn this basic thing about processors that should be taught in every CS department of every university. Yet i can't find it on the net (Google doesn't help) and i can't find it in my ...
5
votes
5answers
642 views

Why increased pipeline depth does not always mean increased throughput?

This is perhaps more of a discussion question, but I thought stackoverflow could be the right place to ask it. I am studying the concept of instruction pipelining. I have been taught that a pipeline's ...
5
votes
3answers
3k views

ICC vs GCC - Optimization and CPU architecture

I'm interested in knowing how GCC differs from Intel's ICC in terms of the optimization levels and catering to specific processor architecture. I'm using GCC 4.1.2 20070626 and ICC v11.1 for Linux. ...
5
votes
2answers
779 views

Mac OS X: Intel vs. PPC marketshare

I was looking at my plugins, and ended up looking at Silverlight on several Mac systems. What I noticed (from Wikipedia), was that only Silverlight 1 runs on PPC. Without knowing about the technical ...
5
votes
2answers
3k views

How to use Intel C++ Compiler with Qt Creator

I am writing a program wherein i will need to do a stupendous number of numerical calculations. But since I am developing the front end of the program in Qt Creator, I have as yet been dealing with ...
5
votes
4answers
4k views

default template class argument confuses g++?

Yesterday I ran into a g++ (3.4.6) compiler problem for code that I have been compiling without a problem using the Intel (9.0) compiler. Here's a code snippet that shows what happened: ...
5
votes
5answers
3k views

Reading Program Counter directly

Can the program counter on Intel CPU's can be read directly (that is without 'tricks') in kernel mode or some other mode? Thanks :-).
5
votes
15answers
3k views

Does hyperthreading lead to unstable systems?

I'm building a PC with the new Intel I7 quad core processor. With hyperthreading turned on it will report 8 cores in Task Manager. Some of my colleagues are saying that hyperthreading will make the ...
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
1answer
58 views

Mapped memory and SSE

I found this paragraph in the Intel developer manual: From the chaper "PROGRAMMING WITH SSE3, SSSE3, SSE4 AND AESNI" Streaming loads must not be used to reference memory addresses that are ...
4
votes
1answer
99 views

Intel icc: how to dump optimized code as C file

Gcc's -fdump-tree-optimized option dumps an optimized version of your C code as a C file. Is there a way I can do the same using intel's icc compiler? I have a matrix multiplication code that I have ...
4
votes
3answers
81 views

How can executing more instructions speed up exection

When I run the following function, I get somewhat unexpected results. On my machine, the code below consistently takes about 6 seconds to run. However, if I uncomment the ";dec [variable + 24]" line, ...
4
votes
2answers
124 views

x86 32 Bit Assembly question

I am currently in the process of learning assembly and I was playing around with if statements. My current code is as follows. write: mov eax, 0x4 sub esp, 4 int 0x80 main: ...
4
votes
3answers
236 views

Variance in RDTSC overhead

I'm constructing a micro-benchmark to measure performance changes as I experiment with the use of SIMD instruction intrinsics in some primitive image processing operations. However, writing useful ...
4
votes
3answers
430 views

Intel TBB will work on AMD processors? [closed]

Possible Duplicate: AMD multi-core programming Is Intel TBB processor dependent? Will it work on amd or on ARM (under meeGo for example?)
4
votes
3answers
456 views

Intel x86 Opcode Reference?

What is a relatively quick and easy method of looking up what an arbitrary opcode means (say, 0xC8) in x86? The Intel Software Developer's manual isn't very fun to search through...
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
2answers
1k views

Disable Turbo Boost on Core i7 Mac?

Is there any way to programmatically disable Turbo Boost on a Core i7 mac running Mac OS X ? I need to be able to do this for benchmarking purposes during code optimisation etc. Failing that, any kind ...
4
votes
1answer
110 views

32-bit fixed point overflow

I'm doing some 'early computing' on a 32-bit Windows PC, and looking at the limits. Now, 2**32 is 4,294,967,296, and I find that 4294967290 + 5 is perfectly OK, and 4294967290 + 6 quite ...
4
votes
1answer
633 views

Intel 64 and IA-32 | Atomic operations including acquire / release semantic

According to the Intel 64 and IA-32 Architectures Software Developer's Manual the LOCK Signal Prefix "ensures that the processor has exclusive use of any shared memory while the signal is asserted". ...
4
votes
3answers
248 views

Coercing float into unsigned char on ARM vs. Intel

When I run the following C code on an Intel machine... float f = -512; unsigned char c; while ( f < 513 ) { c = f; printf( "%f -> %d\n", f, c ); f += 64; } ...the output is as ...
4
votes
1answer
237 views

How does loop address alignment affect the speed on Intel x86_64?

I'm seeing 15% performance degradation of the same C++ code compiled to exactly same machine instructions but located on differently aligned addresses. When my tiny main loop starts at 0x415220 it's ...
4
votes
3answers
1k views

what is intel microcode?

From what i've read its used to fix bugs in the cpu without modifying the BIOS. From my basic knowledge of assembler i know that assembly instructions are split into microcodes internally by the CPU ...
4
votes
3answers
418 views

Do Core i3/5/7 CPUs provide a mechanism to measure IPC?

All the Intel CPUs in the last decade (at least) include a set of performance monitors that count a variety of events. Do the latest Intel CPUs, Core i3, i5 and i7 (aka Nehalem) provide a mechanism ...
4
votes
3answers
255 views

Python execution speed: laptop vs desktop

I am running a program that does simple data processing: parses text populates dictionaries calculates some functions over the resulting data The program only uses CPU, RAM, and HDD: run from ...
4
votes
3answers
1k views

Turning off Hyper-Threading in 6-core Intel Xeon

We got a 12-core MacPro to do some Monte Carlo calculations. Its Intel Xeon processors have Hyper-Threading (HT) enabled, so in fact there should be 24 processes running in parallel to make them fully ...

1 2 3 4 5 7