From 2a4675ec391dde8785815a96cafb21fa9aca5fe2 Mon Sep 17 00:00:00 2001 From: Nicholas Rianto Putra <nicholasmagbanua@gmail.com> Date: Fri, 12 Apr 2019 19:43:57 +0700 Subject: [PATCH] rename file --- Makefile | 2 +- src/{radix_sort_parallel.c => radix_sort_parallel.cu} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{radix_sort_parallel.c => radix_sort_parallel.cu} (100%) diff --git a/Makefile b/Makefile index 059f294..9243cc0 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,2 @@ radix_sort: - nvcc radix_sort_parallel.cu -o radix_sort + nvcc src/radix_sort_parallel.cu -o radix_sort diff --git a/src/radix_sort_parallel.c b/src/radix_sort_parallel.cu similarity index 100% rename from src/radix_sort_parallel.c rename to src/radix_sort_parallel.cu -- GitLab