From c07bcf12d3687e54e34f36fc29c32256037202cb Mon Sep 17 00:00:00 2001
From: azkanab <azkanabilah@gmail.com>
Date: Thu, 11 Apr 2019 21:24:40 +0700
Subject: [PATCH] haha

---
 src/radix_sort_parallel.cu | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/radix_sort_parallel.cu b/src/radix_sort_parallel.cu
index 1e32101..1935e1d 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
-- 
GitLab