描述你的问题
向下面这个程序输入 10000000 个随机数后再输出需要用掉约 18 秒时间,其中输入用掉约 15 秒,输出用掉约 3 秒。这个速度比一台配置较低的 Linux 系统(g++ 和 clang++ 都试过)和一台 Windows XP 虚拟机(g++)慢得多(不到 4 秒)。printf()
和 scanf()
的速度是正常的。
贴上相关代码
test.cpp:(random.txt 是随机数文件。编译选项为 clang++ test.cpp -o test
。)
#include <iostream>
#include <ctime>
#include <cstdio>
using namespace std;
const int length = 10000000;
int array[length] = {};
int main()
{
freopen("random.txt", "r", stdin);
freopen("out.txt", "w", stdout);
clock_t start1, end1, end2;
start1 = clock();
for (int i = 0; i < length; i++) cin >> array[i];
end1 = clock();
for (int i = 0; i < length; i++) cout << array[i];
end2 = clock();
freopen("result.txt", "w", stdout);
cout << (double)(end1 - start1) / CLOCKS_PER_SEC << endl;
cout << (double)(end2 - end1) / CLOCKS_PER_SEC << endl;
return 0;
}
贴上报错信息
无
贴上相关截图
无
已经尝试过哪些方法仍然没解决(附上相关链接)
用 Instruments.app 的 Time Profiler 看过,但是看不懂……网上搜索过也没有结果。
更新:刚才又看了一遍 Instruments.app,发现 _pthread_mutex_unlock_slow
和 _pthread_mutex_lock_slow
在输入中花掉了很多时间。但我不知道它们是做什么用的。
附:OS X 版本 10.11.3,Xcode 版本为 7.1.1。
clang 版本:
clang++ --version
Apple LLVM version 7.0.0 (clang-700.1.76)
Target: x86_64-apple-darwin15.3.0
Thread model: posix
原因可能有:
因為未知原因,與 stdio 的同步時間過長,請使用
std::ios::sync_with_stdio(false);
上一點實在是老生常談了。根據我自己所觀察,libc++ 對於 iostream 的實作非常慢,兩者同時關閉 stdio 同步的情況下,libstdc++ 要快 1100%。而 clang 預設指定的 -stdlib 是 libc++.
(對於上一點的解釋)根據 Instruments.app 的結果,有可能 libc++ 對於 iostream 實現了線程安全,我沒有看代碼,但是標準中對於線程安全的規定是由實現而定的。
由於上面進行測試的兩者版本都是 OS X 自帶的,而且 OS X 自帶的 libstdc++ 很老,也許新版本的 libstdc++ 也實現了線程安全。所以,請你重新進行指定 -stdlib=libstdc++ 的測試,並將 Instruments.app 的測試結果完善。