Tagged Questions

0
votes
3answers
154 views

High-performance Math library for .NET /C# and Java

We currently have a high-performance scientific application written in C++ that makes use of Intel Math Kernel Library. We are considering writing a benchmark application written in Java and .NET/C# …
0
votes
2answers
146 views

How to statically link to TBB?

How can I statically link the intel's TBB libraries to my application? I know all the caveats such as unfair load distribution of the scheduler, but I don't need the scheduler, just the containers, so …
1
vote
2answers
136 views

AMD multi-core programming

I want to start to write applications(C++) that will utilize the additional cores to execute portions of the code that have a need to perform lots of calculations and whose computations are …
2
votes
1answer
188 views

Did Visual Studio 2008 SP1 introduce runtime bugs or am I crazy?

I've been wracking my brains out trying to figure out what the heck is going on with the most recent (non beta) Visual Studio 2008 SP1: My app built with OpenMP runs incredibly slow in the debugger, …
3
votes
2answers
188 views

Threading Building Blocks (TBB) for Qt-based CD ripper?

I am building a CD ripper application in C++ and Qt. I would like to parallelize the application such that multiple tracks can be encoded concurrently. Therefore, I have structured the application …
1
vote
3answers
73 views

debugging Intel’s TBB containers

Recently we have started working with Intel's TBB and found that when debugging containers we cannot really watch the elements and their data. Is there a flag setting, a plugin or a tricky way to …
9
votes
7answers
626 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 …
2
votes
1answer
535 views

How does Intel TBB’s scalable_allocator work ?

What does the tbb::scalable_allocator in Intel Threading Building Blocks actually do under the hood ? It can certainly be effective. I've just used it to take 25% off an apps' execution time (and …
7
votes
5answers
1k views

C++ Parallelization Libraries: OpenMP vs. Thread Building Blocks

Hi, I'm going to retrofit my custom graphics engine so that it takes advantage of multicore CPUs. More exactly, I am looking for a library to parallelize loops. It seems to me that both OpenMP and …
0
votes
1answer
246 views

Intel’s Threading Building Blocks “runtime exception” license: What does it mean?

Just been looking at the threading building blocks, and as their license, they say it's the GPLv2 with the runtime exception. On the Intel page itself they say that the commercial license is the right …
8
votes
8answers
1k views

Is this C++ implementation for an Atomic float safe?

Edit: The code here still has some bugs in it, and it could do better in the performance department, but instead of trying to fix this, for the record I took the problem over to the Intel …