gpt4 book ai didi

Lambda 使用 g++ 4.7 变慢 - 使用 g++ 4.6 更快

转载 作者:行者123 更新时间:2023-12-04 15:59:54 25 4
gpt4 key购买 nike

我使用的是 g++ 4.7,因为它是 g++ 的最新版本之一,并且是第一个真正支持 c++11 的版本。 .

出于测试目的,我正在考虑采用代码 from here .

You can find the complete source code here.

我将此源命名为 lambda.cpp 并使用以下命令编译它:

g++-4.6 -std=c++0x lambda.cpp -o lambda46

g++-4.7 -std=c++11 lambda.cpp -o lambda47

在 lambda 性能方面,lambda47 可执行文件比 lambda46 慢约半秒,令人惊讶的是迭代器部分通常比 lambda46 快。

我也尝试使用
g++-4.7 -std=c++0x lambda.cpp -o lambda47-0x

但基本上 g++-4.6 总是比 g++-4.7 生成更快的代码。

这是一个常见的行为还是一个错误?

有一个编译器可以更好地使用 C++11 吗?

g++-4.7 它已编译为

Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-4precise1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu



g++-4.6 与

Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu

最佳答案

就我而言,使用 g++ 4.6 和 4.7 的 lambda 版本更快(并且 g++ 4.7 生成的代码比 4.6 更快)。与您的唯一区别是我使用的是 32 位版本的编译器。

但是如果我用 -O3 编译你的代码,迭代器会快大约 2 秒。

关于Lambda 使用 g++ 4.7 变慢 - 使用 g++ 4.6 更快,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13068658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com