#include #include #include #include #include /* Create a simple sorting application that uses the mergesort algorithm to sort a large collection (e.g., 10^7 ) of 32-bit integers. The input data and output results should be stored in files, and the I/O operations should be considered a sequential part of the application. Mergesort is an algorithm that is considered appropriate for parallel execution, although it cannot be equally divided between an arbitrary number of processors, as Amdahl’s and Gustafson-Barsis’ laws require. Assuming that this equal division is possible, estimate α, i.e., the part of the program that can be parallelized, by using a profiler like gprof or valgrind to measure the duration of mergesort’s execution relative to the overall execution time. Use this number to estimate the predicted speedup for your program. Does α depend on the size of the input? If it does, how should you modify your predictions and their graphical illustration? */ int main(int argc, char *argv[]) { QFile file("dataset.dat"); if(!file.open(QIODevice::ReadOnly | QIODevice::Text)) { fmt::print("Could not open file"); return 0; } fmt::print("Opened file {} sucessfully!\n", file.fileName().toStdString()); std::vector dataset; int counter = 0; while(!file.atEnd()) { dataset.emplace_back(file.readLine().toInt()); } fmt::print("Read {} values from {}\n", dataset.size(), file.fileName().toStdString()); algo::mergesort(dataset.begin(), dataset.end(), [](int32_t a, int32_t b) { return (a>b); }); QFile outfile("dataset-sorted.dat"); if(!outfile.open(QIODevice::WriteOnly | QIODevice::Text)) { fmt::print("Error! Could not create output file"); } for(auto &val : dataset) { outfile.write(fmt::format("{}\n", val).c_str()); } file.close(); outfile.flush(); outfile.close(); return 0; }