我正在使用Makefile来设置mo代码所需的环境。我正在学习有关并行化的知识,感谢您的帮助。
# The list of packages used by the macro:
USED_PKGS = xAODRootAccess xAODTruth xAODJet xAODMissingET
test: test.o
`root-config --ld` -o $@ `root-config --libs` \
-L$(ROOTCOREDIR)/lib `rc get_ldflags $(USED_PKGS)` $^
clean:
rm -f test.o
rm -f test
.SUFFIXES: .C .o
.C.o:
`root-config --cxx` -c -o $@ `root-config --cflags` \
-I$(ROOTCOREDIR)/include `rc get_cxxflags $(USED_PKGS)` $<
我已经安装了OpenMPI,并将其添加到PATH和LD_LIBRARY_PATH。
我的代码非常简单,只想对照Makefile进行检查:
int main()
{
int i;
#pragma omp parallel for
for ( i = 0; i < 1e8; i++ )
{
int y = 2*i;
}
}
答案 0 :(得分:0)
好的,所以我在玩耍后自己弄清楚了。如果其他人正在寻找相同的东西,Makefile应该看起来像这样:
# The list of packages used by the macro:
USED_PKGS = xAODRootAccess xAODTruth xAODJet xAODMissingET
test: test.o
`root-config --ld` -o $@ `root-config --libs` \
-L$(ROOTCOREDIR)/lib `rc get_ldflags $(USED_PKGS)` $^ -fopenmp
clean:
rm -f test.o
rm -f test
.SUFFIXES: .C .o
.C.o:
`root-config --cxx` -c -o $@ `root-config --cflags` \
-I$(ROOTCOREDIR)/include `rc get_cxxflags $(USED_PKGS)` $< -fopenmp
-fopenmp应该添加到这两行。