Last active
February 19, 2019 14:00
-
-
Save Leviathan1995/640bb1631001409c828ca19d40c7b7f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <unistd.h> | |
#include <cstring> | |
#include <sys/mman.h> | |
#include <vector> | |
#include <thread> | |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#define likely(x) __builtin_expect(!!(x), 1) | |
#define unlikely(x) __builtin_expect(!!(x), 0) | |
static char data[4096] __attribute__((aligned(4096))) = {'a'}; | |
void writer(int index) { | |
std::string fname = "data" + std::to_string(index); | |
int data_fd = ::open(fname.c_str(), O_RDWR | O_CREAT | O_APPEND, 0645); | |
for (int32_t i = 0; i < 1000000; i++) { | |
::write(data_fd, data, 4096); | |
} | |
close(data_fd); | |
} | |
int main() { | |
std::vector<std::thread> threads; | |
for(int i = 0; i < 64; i++) { | |
std::thread worker(writer, i); | |
threads.push_back(std::move(worker)); | |
} | |
for (int i = 0; i < 64; i++) { | |
threads[i].join(); | |
} | |
return 0; | |
} | |
// g++ -std=c++11 -O2 -pthread buffer_io.cc -o benchmark |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment