我正在尝试在C中使用英特尔TBB。我为TBB获得的所有文档都针对C ++。 TBB是否与普通C一起使用?如果是,我如何定义原子整数。
在下面的代码中,我尝试使用模板 atomic<int> counter
(我知道这在C中不起作用)。有办法解决这个问题吗?
#include<pthread.h>
#include<stdio.h>
#include<tbb/atomic.h>
#define NUM_OF_THREADS 16
atomic<int> counter;
void *simpleCounter(void *threadId)
{
int i;
for(i=0;i<256;i++)
{
counter.fetch_and_add(1);
}
printf("T%ld \t Counter %d\n", (long) threadId, counter);
pthread_exit(NULL);
}
int main(int argc, char *argv[])
{
counter=0;
pthread_t threadArray[NUM_OF_THREADS];
long i;
for(i=0;i<NUM_OF_THREADS;i++)
{
pthread_create(&threadArray[i], NULL, simpleCounter, (void *)i);
}
pthread_exit(NULL);
}
-bash-4.1$ g++ simpleCounter.c -I$TBB_INCLUDE -Wl,-rpath,$TBB_LIBRARY_RELEASE -L$TBB_LIBRARY_RELEASE -ltbb
simpleCounter.c:7: error: expected constructor, destructor, or type conversion before ‘<’ token
simpleCounter.c: In function ‘void* simpleCounter(void*)’:
simpleCounter.c:16: error: ‘counter’ was not declared in this scope
simpleCounter.c:18: error: ‘counter’ was not declared in this scope
simpleCounter.c: In function ‘int main(int, char**)’:
simpleCounter.c:24: error: ‘counter’ was not declared in this scope
答案 0 :(得分:3)
hivert是对的,C和C ++是不同的语言。
试试这个:
#include<pthread.h>
#include<stdio.h>
#include<tbb/atomic.h>
#define NUM_OF_THREADS 16
tbb::atomic<int> counter;
void *simpleCounter(void *threadId)
{
int i;
for(i=0;i<256;i++)
{
counter.fetch_and_add(1);
}
printf("T%ld \t Counter %d\n", (long) threadId, (int)counter);
pthread_exit(NULL);
}
int main(int argc, char *argv[])
{
counter=0;
pthread_t threadArray[NUM_OF_THREADS];
long i;
for(i=0;i<NUM_OF_THREADS;i++)
{
pthread_create(&threadArray[i], NULL, simpleCounter, (void *)i);
}
for(i=0;i<NUM_OF_THREADS;i++)
pthread_join(threadArray[i], nullptr);
}
使用.cpp扩展名保存(g ++不需要)。我修改了缺少的命名空间tbb :: atomic,最后我还包括了一个连接,等待所有线程在退出main之前完成。它现在应该编译。添加-std = c ++ 11作为编译器选项,或将nullptr更改为NULL。
答案 1 :(得分:1)
C和C ++是不同的语言。英特尔TBB只是一个C ++库。
答案 2 :(得分:1)
不要那样做。即使代码编译也只会是灾难性的,因为在TBB的核心,有一个自动任务调度程序,它本身就是模板化的。 C不支持通用编程,TBB不适用于C. 如果您在TBB的页面上看到文档,使用建议和比较,他们很乐意建议您使用其他并行化结构而不是TBB。 如果您坚持使用C,请转到openMP。 OpenMP 3具有基于任务的并行性。然而,它仍然缺乏TBB上可用的复杂算法的强度。