diff --git a/src/radix_sort_parallel.cu b/src/radix_sort_parallel.cu index 1e32101f0afc340de516d29e95c57125733c49c4..1935e1da24b692609886ebe8e02761c26e7ac296 100644 --- a/src/radix_sort_parallel.cu +++ b/src/radix_sort_parallel.cu @@ -113,7 +113,7 @@ int main(int argc, char *argv[]) cudaEventSynchronize(stop); cudaEventElapsedTime(&time, start, stop); print(h_arr,count); - ofstream output("test\output.txt", std::ios::out | std::ios::trunc); + ofstream output("test/output.txt", std::ios::out | std::ios::trunc); for(int k = 0; k < count; k ++){ output << k << ":"<<h_arr[k] << " " ; } @@ -125,4 +125,3 @@ int main(int argc, char *argv[]) cudaEventDestroy(stop); return 0; } ->>>>>>> 2ccd6cd7d8a384702d5a60c7d95fe2a2808d9b80