- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 SSD,我试图用它来模拟我的程序 I/O 性能,但是,从我的程序计算出的 IOPS 比 IOMeter 快得多。
我的 SSD 是 PLEXTOR PX-128M3S,通过 IOMeter,其最大 512B 随机读取 IOPS 约为 94k(队列深度为 32)。但是我的程序(32 个 Windows 线程)可以达到大约 500k 512B IOPS,大约是 IOMeter 的 5 倍!我做了数据验证,但在数据获取中没有发现任何错误。是因为我的数据是按顺序获取的吗?
我把我的代码粘贴到下面(它主要是从文件中获取 512B 并释放它;我确实使用 4bytes(一个 int)来验证程序逻辑并且没有发现问题),任何人都可以帮我找出我错在哪里吗?
提前致谢!
#include <stdio.h>
#include <Windows.h>
//Global variables
long completeIOs = 0;
long completeBytes = 0;
int threadCount = 32;
unsigned long long length = 1073741824; //4G test file
int interval = 1024;
int resultArrayLen = 320000;
int *result = new int[resultArrayLen];
//Method declarison
double GetSecs(void); //Calculate out duration
int InitPool(long long,char*,int); //Initialize test data for testing, if successful, return 1; otherwise, return a non 1 value.
int * FileRead(char * path);
unsigned int DataVerification(int*, int sampleItem); //Verify data fetched from pool
int main()
{
int sampleItem = 0x1;
char * fPath = "G:\\workspace\\4G.bin";
unsigned int invalidIO = 0;
if (InitPool(length,fPath,sampleItem)!= 1)
printf("File write err... \n");
//start do random I/Os from initialized file
double start = GetSecs();
int * fetchResult = FileRead(fPath);
double end = GetSecs();
printf("File read IOPS is %.4f per second.. \n",completeIOs/(end - start));
//start data validation, for 4 bytes fetch only
// invalidIO = DataVerification(fetchResult,sampleItem);
// if (invalidIO !=0)
// {
// printf("Total invalid data fetch IOs are %d", invalidIO);
// }
return 0;
}
int InitPool(long long length, char* path, int sample)
{
printf("Start initializing test data ... \n");
FILE * fp = fopen(path,"wb");
if (fp == NULL)
{
printf("file open err... \n");
exit (-1);
}
else //initialize file for testing
{
fseek(fp,0L,SEEK_SET);
for (int i=0; i<length; i++)
{
fwrite(&sample,sizeof(int),1,fp);
}
fclose(fp);
fp = NULL;
printf("Data initialization is complete...\n");
return 1;
}
}
double GetSecs(void)
{
LARGE_INTEGER frequency;
LARGE_INTEGER start;
if(! QueryPerformanceFrequency(&frequency))
printf("QueryPerformanceFrequency Failed\n");
if(! QueryPerformanceCounter(&start))
printf("QueryPerformanceCounter Failed\n");
return ((double)start.QuadPart/(double)frequency.QuadPart);
}
class input
{
public:
char *path;
int starting;
input (int st, char * filePath):starting(st),path(filePath){}
};
//Workers
DWORD WINAPI FileReadThreadEntry(LPVOID lpThreadParameter)
{
input * in = (input*) lpThreadParameter;
char* path = in->path;
FILE * fp = fopen(path,"rb");
int sPos = in->starting;
// int * result = in->r;
if(fp != NULL)
{
fpos_t pos;
for (int i=0; i<resultArrayLen/threadCount;i++)
{
pos = i * interval;
fsetpos(fp,&pos);
//For 512 bytes fetch each time
unsigned char *c =new unsigned char [512];
if (fread(c,512,1,fp) ==1)
{
InterlockedIncrement(&completeIOs);
delete c;
}
//For 4 bytes fetch each time
/*if (fread(&result[sPos + i],sizeof(int),1,fp) ==1)
{
InterlockedIncrement(&completeIOs);
}*/
else
{
printf("file read err...\n");
exit(-1);
}
}
fclose(fp);
fp = NULL;
}
else
{
printf("File open err... \n");
exit(-1);
}
}
int * FileRead(char * p)
{
printf("Starting reading file ... \n");
HANDLE mWorkThread[256]; //max 256 threads
completeIOs = 0;
int slice = int (resultArrayLen/threadCount);
for(int i = 0; i < threadCount; i++)
{
mWorkThread[i] = CreateThread(
NULL,
0,
FileReadThreadEntry,
(LPVOID)(new input(i*slice,p)),
0,
NULL);
}
WaitForMultipleObjects(threadCount, mWorkThread, TRUE, INFINITE);
printf("File read complete... \n");
return result;
}
unsigned int DataVerification(int* result, int sampleItem)
{
unsigned int invalid = 0;
for (int i=0; i< resultArrayLen/interval;i++)
{
if (result[i]!=sampleItem)
{
invalid ++;
continue;
}
}
return invalid;
}
最佳答案
我没有查看足够详细的信息以确定,但我没有看到任何代码将数据刷新到磁盘和/或确保您的读取实际上来自磁盘。在这种情况下,您要测量的似乎主要是操作系统磁盘缓存的性能。虽然磁盘可能对您正在测量的性能有一点贡献,但它可能只是一个很小的贡献者,其他因素占主导地位。
由于代码显然是为 Windows 编写的,您可能会考虑(例如)使用 CreateFile 打开文件,并在这样做时传递 FILE_FLAG_NO_BUFFERING 标志。这将(至少大部分)从等式中移除操作系统缓存,并强制每次读取或写入直接处理磁盘本身。
关于c++ - 为什么 Windows C++ 多线程 IOPS 比 IOMeter 快得多?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9810709/
我正在使用开源IOMeter来测试我的系统的IO性能。我还是不明白iobw.tst文件的用法。我的意思是假设如果我在我的机器上启动一些 IO 进程,IOMeter 应该显示统计信息。 iobw.tst
我正在尝试设置测试自动化。我想运行几组不同的 IOMeter 测试,而不是单独点击所有测试。我如何使用 Python 做到这一点?如果您知道其他方法,那也可以。我只用 Python 完成了其余的测试自
我有一个 SSD,我试图用它来模拟我的程序 I/O 性能,但是,从我的程序计算出的 IOPS 比 IOMeter 快得多。 我的 SSD 是 PLEXTOR PX-128M3S,通过 IOMeter,
我是一名优秀的程序员,十分优秀!