#include #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 sort’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? */ template auto parse_file(std::ifstream &stream, std::vector &vec) -> void { std::string buf; T convbuf; while (std::getline(stream, buf)) { convbuf = static_cast(std::stoul(buf)); vec.emplace_back(std::move(convbuf)); } } auto main(int argc, char *argv[]) -> int { try { std::ifstream file("dataset.dat", std::ios_base::in); if (!file.is_open()) { fmt::print("Error opening file"); return -1; } fmt::print("Opened file {} sucessfully\n", "dummy"); std::vector dataset; parse_file(file, dataset); fmt::print("Read {} values from {}\n", dataset.size(), "dummy"); auto dataset_par = dataset; auto dataset_seq = dataset; auto t1 = std::chrono::high_resolution_clock::now(); algo::MergeSort_v1::sort(dataset_seq.begin(), dataset_seq.end(), [](int32_t a, int32_t b) { return (a > b); }); auto t2 = std::chrono::high_resolution_clock::now(); auto delay_ms = std::chrono::duration_cast(t2 - t1); fmt::print("Sorted {} entries within {} ms in sequential\n", dataset_seq.size(), delay_ms.count()); static constexpr int nthreads = 16; t1 = std::chrono::high_resolution_clock::now(); algo::MergeSort_v2::sort(dataset_par.begin(), dataset_par.end(), [](int32_t a, int32_t b) { return (a > b); }, nthreads); t2 = std::chrono::high_resolution_clock::now(); delay_ms = std::chrono::duration_cast(t2 - t1); fmt::print("Sorted {} entries within {} ms in parallel using {} threads\n", dataset_seq.size(), delay_ms.count(), nthreads); auto eq = (dataset_seq == dataset_par); fmt::print("Equality: {}\n", eq); fmt::print("Parallel dataset: {}; Sequential dataset: {}\n", dataset_par.size(), dataset_seq.size()); //fmt::print("Created {} recurstions", algo::MergeSort_v1::get_recursions()); std::ofstream ofile("dataset.out.dat", std::ios_base::out); if(!ofile.is_open()) { fmt::print("Error writing to file"); return -1; } for(auto &element : dataset_seq) { ofile << std::to_string(element) << '\n'; } file.close(); ofile.flush(); ofile.close(); fmt::print("Written to output file\n"); return 0; } catch (std::exception e) { fmt::print("Error occured: {}", e.what()); return -1; } }