diff --git a/README.md b/README.md
index 0e38ddb..ca19ecb 100644
--- a/README.md
+++ b/README.md
@@ -3,12 +3,47 @@ CUDA Stream Compaction
**University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 2**
-* (TODO) YOUR NAME HERE
+* Xuecheng Sun
* (TODO) [LinkedIn](), [personal website](), [twitter](), etc.
-* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab)
+* Tested on: Windows 10, R7-3700x @ 3.7GHz, 32GB, RTX 2070 super 8GB
-### (TODO: Your README)
+### Feature Implemented
-Include analysis, etc. (Remember, this is public, so don't put
-anything here that you don't want to share with the world.)
+1. CPU Scan/Compaction
+2. Naive Scan
+3. Work-Efficient Scan/Compaction
+4. Thrust Scan
+5. (Extra Credit Part 5) Thread Optimization for Work-Efficient Scan
+6. (Extra Credit Part 6) Radix Sort
+7. (Extra Credit Part 7.1) Shared Memory Optimization for Naive Scan
+
+### Implementation Details
+
+**Thread Optimization for Work-Efficient Scan**: It is very inefficient to process all entries of the given array. Because for each loop, we only process data when its index is equals to 2^d. So I set the thread number to "n / 2^(d + 1)" to limit the thread numbers. This highly improved performance about 80%. Because the original code of work-efficient sort is replaced by improved one, it is hard to compare these two versions. Therefore, all following work-efficient method is improved thread number method.
+
+**Radix Sort**: I wrote radix sort under the file efficient.cu and compared it with std::sort results to validate the result.
+
+**Shared Memory Optimization**: I only Implement shared memory optimization for naive scan. I set a 2 * blocksize shared memory for each blocks' data access. These shared memories are two ping-pong buffers, which will exchange during each scan. For each block, it will scan within the range of block itself. This array I called it **partial scan array**. And then I will take the biggest value for each block and scan this new biggest value array again. If this array is longer than block size, program will independently process its data in the range of block size again. This will separation processing will stop when the array size is smaller than block size. This is implemented by two for loops and two stacks. For the first loop, we move deeper and deeper until we have the biggest array which length is smaller than block size. During each loop, we will push all **partial scan array** into array stack (I actually push the first pointer of this array into stack), and also push its length into length stack. For the second loop, we add them together to get the final scan result. This process could cause memory leak, so be sure you release all memories in the second loop. After implement this, the performance of naive scan have a huge improvement. The efficiency is up to the work-efficient method without shared memory.
+
+### Results
+
+#### Scan Time Consumption under Different Block Size
+
+
+
+**Block Size:** Naive scan(NSM) will consume less time time when the block size is bigger and bigger, in comparison naive scan(SM) and work efficient methods are more static when block size is changing. For all naive scan method when block size is 128, they can have the best performance. For the shared memory method, the block size 128 will let each block hold 1KB shared memory, this setting doesn't reach the condition for block reducing in each SM. For normal naive scan, when the block size is bigger than 16 the time consuming are fluctuating around 2ms. This could because normally a warp will take 32 threads to compute, if we have a 16 threads block this cannot fully use the GPU SM processors.
+
+#### Scan Time Consumption for Different Array Size
+
+
+
+#### Compaction Time Consumption for Different Array Size
+
+
+
+**Array Size**: It is really interesting that when the array size is lower than 2 ^ 20, the cpu method is faster than any gpu methods. For naive scan(NSM), it always has biggest time consumption. This could because the naive scan (NSM) will always have a huge IO delay to access global memory and will access more times to global memory than CPU scan. After some optimization, naive scan(SM) can be improved to the performance of work efficient scan(NSM). For all gpu methods, although we will process data parallelly, the program will have more times to access data. So the balance between accessing delay and parallel processing will affect the final result of time consumption. When the array size growing, the affection of parallel processing will play a more important role in final performance.
+
+#### All Outputs of Program
+
+
diff --git a/build/.vs/cis565_stream_compaction_test/v16/.suo b/build/.vs/cis565_stream_compaction_test/v16/.suo
new file mode 100644
index 0000000..6c87956
Binary files /dev/null and b/build/.vs/cis565_stream_compaction_test/v16/.suo differ
diff --git a/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db b/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db
new file mode 100644
index 0000000..a1fbb34
Binary files /dev/null and b/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db differ
diff --git a/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db-shm b/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db-shm
new file mode 100644
index 0000000..c996f26
Binary files /dev/null and b/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db-shm differ
diff --git a/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db-wal b/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db-wal
new file mode 100644
index 0000000..02385fe
Binary files /dev/null and b/build/.vs/cis565_stream_compaction_test/v16/Solution.VC.db-wal differ
diff --git a/build/ALL_BUILD.vcxproj b/build/ALL_BUILD.vcxproj
new file mode 100644
index 0000000..d1ac041
--- /dev/null
+++ b/build/ALL_BUILD.vcxproj
@@ -0,0 +1,184 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {4D463489-5B21-337E-B42F-6491946E2327}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ ALL_BUILD
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v142
+
+
+ Utility
+ MultiByte
+ v142
+
+
+ Utility
+ MultiByte
+ v142
+
+
+ Utility
+ MultiByte
+ v142
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}
+ cis565_stream_compaction_test
+
+
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}
+ stream_compaction
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/ALL_BUILD.vcxproj.filters b/build/ALL_BUILD.vcxproj.filters
new file mode 100644
index 0000000..9dd8b4d
--- /dev/null
+++ b/build/ALL_BUILD.vcxproj.filters
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt
new file mode 100644
index 0000000..eb31266
--- /dev/null
+++ b/build/CMakeCache.txt
@@ -0,0 +1,654 @@
+# This is the CMakeCache file.
+# For build in directory: e:/Learning/CIS565/Project2-Stream-Compaction/build
+# It was generated by CMake: E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe
+# You can edit this file to change values found and used by cmake.
+# If you do not want to change any of the values, simply exit the editor.
+# If you do want to change a value, simply edit, save, and exit the editor.
+# The syntax for the file is as follows:
+# KEY:TYPE=VALUE
+# KEY is the name of a variable in the cache.
+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
+# VALUE is the current value for the KEY.
+
+########################
+# EXTERNAL cache entries
+########################
+
+//Semicolon separated list of supported configuration types, only
+// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything
+// else will be ignored.
+CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo
+
+//Flags used by the CXX compiler during all build types.
+CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc
+
+//Flags used by the CXX compiler during DEBUG builds.
+CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1
+
+//Flags used by the CXX compiler during MINSIZEREL builds.
+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
+
+//Flags used by the CXX compiler during RELEASE builds.
+CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
+
+//Flags used by the CXX compiler during RELWITHDEBINFO builds.
+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
+
+//Libraries linked by default with all C++ applications.
+CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
+
+//Flags used by the C compiler during all build types.
+CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3
+
+//Flags used by the C compiler during DEBUG builds.
+CMAKE_C_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1
+
+//Flags used by the C compiler during MINSIZEREL builds.
+CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
+
+//Flags used by the C compiler during RELEASE builds.
+CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
+
+//Flags used by the C compiler during RELWITHDEBINFO builds.
+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
+
+//Libraries linked by default with all C applications.
+CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
+
+//Flags used by the linker during all build types.
+CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during DEBUG builds.
+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during MINSIZEREL builds.
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during RELEASE builds.
+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during RELWITHDEBINFO builds.
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/cis565_stream_compaction_test
+
+//Path to a program.
+CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/link.exe
+
+//Flags used by the linker during the creation of modules during
+// all build types.
+CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of modules during
+// DEBUG builds.
+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during the creation of modules during
+// MINSIZEREL builds.
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of modules during
+// RELEASE builds.
+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of modules during
+// RELWITHDEBINFO builds.
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//Path to a program.
+CMAKE_MT:FILEPATH=C:/Program Files (x86)/Windows Kits/10/bin/10.0.18362.0/x64/mt.exe
+
+//Value Computed by CMake
+CMAKE_PROJECT_DESCRIPTION:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_NAME:STATIC=cis565_stream_compaction_test
+
+//RC compiler
+CMAKE_RC_COMPILER:FILEPATH=C:/Program Files (x86)/Windows Kits/10/bin/10.0.18362.0/x64/rc.exe
+
+//Flags for Windows Resource Compiler during all build types.
+CMAKE_RC_FLAGS:STRING=-DWIN32
+
+//Flags for Windows Resource Compiler during DEBUG builds.
+CMAKE_RC_FLAGS_DEBUG:STRING=-D_DEBUG
+
+//Flags for Windows Resource Compiler during MINSIZEREL builds.
+CMAKE_RC_FLAGS_MINSIZEREL:STRING=
+
+//Flags for Windows Resource Compiler during RELEASE builds.
+CMAKE_RC_FLAGS_RELEASE:STRING=
+
+//Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
+CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during all build types.
+CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of shared libraries
+// during DEBUG builds.
+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during the creation of shared libraries
+// during MINSIZEREL builds.
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of shared libraries
+// during RELEASE builds.
+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of shared libraries
+// during RELWITHDEBINFO builds.
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//If set, runtime paths are not added when installing shared libraries,
+// but are added when building.
+CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=NO
+
+//Flags used by the linker during the creation of static libraries
+// during all build types.
+CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of static libraries
+// during DEBUG builds.
+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during MINSIZEREL builds.
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELEASE builds.
+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELWITHDEBINFO builds.
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make. This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
+
+//Compile device code in 64 bit mode
+CUDA_64_BIT_DEVICE_CODE:BOOL=ON
+
+//Attach the build rule to the CUDA source file. Enable only when
+// the CUDA source file is added to at most one target.
+CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE:BOOL=ON
+
+//Generate and parse .cubin files in Device mode.
+CUDA_BUILD_CUBIN:BOOL=OFF
+
+//Build in Emulation mode
+CUDA_BUILD_EMULATION:BOOL=OFF
+
+//CUDA Compute Capability 20
+CUDA_COMPUTE_20:BOOL=OFF
+
+//CUDA Compute Capability 30
+CUDA_COMPUTE_30:BOOL=OFF
+
+//CUDA Compute Capability 32
+CUDA_COMPUTE_32:BOOL=OFF
+
+//CUDA Compute Capability 35
+CUDA_COMPUTE_35:BOOL=OFF
+
+//CUDA Compute Capability 37
+CUDA_COMPUTE_37:BOOL=OFF
+
+//CUDA Compute Capability 50
+CUDA_COMPUTE_50:BOOL=OFF
+
+//CUDA Compute Capability 52
+CUDA_COMPUTE_52:BOOL=OFF
+
+//CUDA Compute Capability 53
+CUDA_COMPUTE_53:BOOL=OFF
+
+//CUDA Compute Capability 60
+CUDA_COMPUTE_60:BOOL=OFF
+
+//CUDA Compute Capability 61
+CUDA_COMPUTE_61:BOOL=OFF
+
+//CUDA Compute Capability 62
+CUDA_COMPUTE_62:BOOL=OFF
+
+//CUDA Compute Capability 70
+CUDA_COMPUTE_70:BOOL=OFF
+
+//CUDA Compute Capability 72
+CUDA_COMPUTE_72:BOOL=OFF
+
+//CUDA Compute Capability 75
+CUDA_COMPUTE_75:BOOL=ON
+
+//Run autodetection of CUDA Architecture
+CUDA_COMPUTE_DETECT:BOOL=ON
+
+//"cudart" library
+CUDA_CUDART_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/cudart.lib
+
+//"cuda" library (older versions only).
+CUDA_CUDA_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/cuda.lib
+
+//Directory to put all the output files. If blank it will default
+// to the CMAKE_CURRENT_BINARY_DIR
+CUDA_GENERATED_OUTPUT_DIR:PATH=
+
+//Whether CUDA-capable GPU is present
+CUDA_HAVE_GPU:BOOL=TRUE
+
+//Generated file extension
+CUDA_HOST_COMPILATION_CPP:BOOL=ON
+
+//Host side compiler used by NVCC
+CUDA_HOST_COMPILER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe
+
+//Path to a program.
+CUDA_NVCC_EXECUTABLE:FILEPATH=D:/cuda/dev/bin/nvcc.exe
+
+//Semi-colon delimit multiple arguments. during all build types.
+CUDA_NVCC_FLAGS:STRING=
+
+//Semi-colon delimit multiple arguments. during DEBUG builds.
+CUDA_NVCC_FLAGS_DEBUG:STRING=
+
+//Semi-colon delimit multiple arguments. during MINSIZEREL builds.
+CUDA_NVCC_FLAGS_MINSIZEREL:STRING=
+
+//Semi-colon delimit multiple arguments. during RELEASE builds.
+CUDA_NVCC_FLAGS_RELEASE:STRING=
+
+//Semi-colon delimit multiple arguments. during RELWITHDEBINFO
+// builds.
+CUDA_NVCC_FLAGS_RELWITHDEBINFO:STRING=
+
+//"OpenCL" library
+CUDA_OpenCL_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/OpenCL.lib
+
+//Propagate C/CXX_FLAGS and friends to the host compiler via -Xcompile
+CUDA_PROPAGATE_HOST_FLAGS:BOOL=ON
+
+//Path to a file.
+CUDA_SDK_ROOT_DIR:PATH=CUDA_SDK_ROOT_DIR-NOTFOUND
+
+//Compile CUDA objects with separable compilation enabled. Requires
+// CUDA 5.0+
+CUDA_SEPARABLE_COMPILATION:BOOL=OFF
+
+//Path to a file.
+CUDA_TOOLKIT_INCLUDE:PATH=D:/cuda/dev/include
+
+//Toolkit location.
+CUDA_TOOLKIT_ROOT_DIR:PATH=D:/cuda/dev
+
+//Use the static version of the CUDA runtime library if available
+CUDA_USE_STATIC_CUDA_RUNTIME:BOOL=ON
+
+//Print out the commands run while compiling the CUDA source file.
+// With the Makefile generator this defaults to VERBOSE variable
+// specified on the command line, but can be forced on with this
+// option.
+CUDA_VERBOSE_BUILD:BOOL=OFF
+
+//Version of CUDA as computed from nvcc.
+CUDA_VERSION:STRING=11.0
+
+//"cublas" library
+CUDA_cublas_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/cublas.lib
+
+//"cudadevrt" library
+CUDA_cudadevrt_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/cudadevrt.lib
+
+//static CUDA runtime library
+CUDA_cudart_static_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/cudart_static.lib
+
+//"cufft" library
+CUDA_cufft_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/cufft.lib
+
+//"cupti" library
+CUDA_cupti_LIBRARY:FILEPATH=D:/cuda/dev/extras/CUPTI/lib64/cupti.lib
+
+//"curand" library
+CUDA_curand_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/curand.lib
+
+//"cusolver" library
+CUDA_cusolver_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/cusolver.lib
+
+//"cusparse" library
+CUDA_cusparse_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/cusparse.lib
+
+//"nppc" library
+CUDA_nppc_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppc.lib
+
+//"nppial" library
+CUDA_nppial_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppial.lib
+
+//"nppicc" library
+CUDA_nppicc_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppicc.lib
+
+//"nppicom" library
+CUDA_nppicom_LIBRARY:FILEPATH=CUDA_nppicom_LIBRARY-NOTFOUND
+
+//"nppidei" library
+CUDA_nppidei_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppidei.lib
+
+//"nppif" library
+CUDA_nppif_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppif.lib
+
+//"nppig" library
+CUDA_nppig_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppig.lib
+
+//"nppim" library
+CUDA_nppim_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppim.lib
+
+//"nppist" library
+CUDA_nppist_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppist.lib
+
+//"nppisu" library
+CUDA_nppisu_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppisu.lib
+
+//"nppitc" library
+CUDA_nppitc_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/nppitc.lib
+
+//"npps" library
+CUDA_npps_LIBRARY:FILEPATH=D:/cuda/dev/lib/x64/npps.lib
+
+//"nvToolsExt" library
+CUDA_nvToolsExt_LIBRARY:FILEPATH=CUDA_nvToolsExt_LIBRARY-NOTFOUND
+
+//"nvcuvenc" library
+CUDA_nvcuvenc_LIBRARY:FILEPATH=CUDA_nvcuvenc_LIBRARY-NOTFOUND
+
+//"nvcuvid" library
+CUDA_nvcuvid_LIBRARY:FILEPATH=CUDA_nvcuvid_LIBRARY-NOTFOUND
+
+//Value Computed by CMake
+cis565_stream_compaction_test_BINARY_DIR:STATIC=E:/Learning/CIS565/Project2-Stream-Compaction/build
+
+//Value Computed by CMake
+cis565_stream_compaction_test_SOURCE_DIR:STATIC=E:/Learning/CIS565/Project2-Stream-Compaction
+
+//Dependencies for the target
+stream_compaction_LIB_DEPENDS:STATIC=general;D:/cuda/dev/lib/x64/cudart_static.lib;
+
+
+########################
+# INTERNAL cache entries
+########################
+
+//This is the directory where this CMakeCache.txt was created
+CMAKE_CACHEFILE_DIR:INTERNAL=e:/Learning/CIS565/Project2-Stream-Compaction/build
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=17
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=E:/Learning/cmake-3.17.2-win64-x64/bin/cpack.exe
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=E:/Learning/cmake-3.17.2-win64-x64/bin/ctest.exe
+//ADVANCED property for variable: CMAKE_CXX_FLAGS
+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
+CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS
+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
+CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
+//Executable file format
+CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Name of external makefile project generator.
+CMAKE_EXTRA_GENERATOR:INTERNAL=
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Visual Studio 16 2019
+//Generator instance identifier.
+CMAKE_GENERATOR_INSTANCE:INTERNAL=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community
+//Name of generator platform.
+CMAKE_GENERATOR_PLATFORM:INTERNAL=x64
+//Name of generator toolset.
+CMAKE_GENERATOR_TOOLSET:INTERNAL=
+//Source directory with the top level CMakeLists.txt file for this
+// project
+CMAKE_HOME_DIRECTORY:INTERNAL=E:/Learning/CIS565/Project2-Stream-Compaction
+//ADVANCED property for variable: CMAKE_LINKER
+CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MT
+CMAKE_MT-ADVANCED:INTERNAL=1
+//number of local generators
+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2
+//Platform information initialized
+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_COMPILER
+CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
+CMAKE_RC_COMPILER_WORKS:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS
+CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG
+CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL
+CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE
+CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO
+CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Path to CMake installation.
+CMAKE_ROOT:INTERNAL=E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+//Result of TRY_COMPILE
+COMPILE_RESULT_VAR:INTERNAL=TRUE
+//ADVANCED property for variable: CUDA_64_BIT_DEVICE_CODE
+CUDA_64_BIT_DEVICE_CODE-ADVANCED:INTERNAL=1
+//List of intermediate files that are part of the cuda dependency
+// scanning.
+CUDA_ADDITIONAL_CLEAN_FILES:INTERNAL=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.depend;E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.depend;E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.depend;E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend;E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.depend
+//ADVANCED property for variable: CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE
+CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_BUILD_CUBIN
+CUDA_BUILD_CUBIN-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_BUILD_EMULATION
+CUDA_BUILD_EMULATION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_20
+CUDA_COMPUTE_20-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_30
+CUDA_COMPUTE_30-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_32
+CUDA_COMPUTE_32-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_35
+CUDA_COMPUTE_35-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_37
+CUDA_COMPUTE_37-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_50
+CUDA_COMPUTE_50-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_52
+CUDA_COMPUTE_52-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_53
+CUDA_COMPUTE_53-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_60
+CUDA_COMPUTE_60-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_61
+CUDA_COMPUTE_61-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_62
+CUDA_COMPUTE_62-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_70
+CUDA_COMPUTE_70-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_72
+CUDA_COMPUTE_72-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_75
+CUDA_COMPUTE_75-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_COMPUTE_DETECT
+CUDA_COMPUTE_DETECT-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_CUDART_LIBRARY
+CUDA_CUDART_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_CUDA_LIBRARY
+CUDA_CUDA_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_GENERATED_OUTPUT_DIR
+CUDA_GENERATED_OUTPUT_DIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_HOST_COMPILATION_CPP
+CUDA_HOST_COMPILATION_CPP-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_EXECUTABLE
+CUDA_NVCC_EXECUTABLE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS
+CUDA_NVCC_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_DEBUG
+CUDA_NVCC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_MINSIZEREL
+CUDA_NVCC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELEASE
+CUDA_NVCC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELWITHDEBINFO
+CUDA_NVCC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_OpenCL_LIBRARY
+CUDA_OpenCL_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_PROPAGATE_HOST_FLAGS
+CUDA_PROPAGATE_HOST_FLAGS-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_SDK_ROOT_DIR was set
+// successfully.
+CUDA_SDK_ROOT_DIR_INTERNAL:INTERNAL=CUDA_SDK_ROOT_DIR-NOTFOUND
+//ADVANCED property for variable: CUDA_SEPARABLE_COMPILATION
+CUDA_SEPARABLE_COMPILATION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_TOOLKIT_INCLUDE
+CUDA_TOOLKIT_INCLUDE-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_TOOLKIT_ROOT_DIR was
+// set successfully.
+CUDA_TOOLKIT_ROOT_DIR_INTERNAL:INTERNAL=D:/cuda/dev
+//This is the value of the last time CUDA_TOOLKIT_TARGET_DIR was
+// set successfully.
+CUDA_TOOLKIT_TARGET_DIR_INTERNAL:INTERNAL=D:/cuda/dev
+//ADVANCED property for variable: CUDA_VERBOSE_BUILD
+CUDA_VERBOSE_BUILD-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_VERSION
+CUDA_VERSION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cublas_LIBRARY
+CUDA_cublas_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cudadevrt_LIBRARY
+CUDA_cudadevrt_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cudart_static_LIBRARY
+CUDA_cudart_static_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cufft_LIBRARY
+CUDA_cufft_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cupti_LIBRARY
+CUDA_cupti_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_curand_LIBRARY
+CUDA_curand_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cusolver_LIBRARY
+CUDA_cusolver_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cusparse_LIBRARY
+CUDA_cusparse_LIBRARY-ADVANCED:INTERNAL=1
+//Location of make2cmake.cmake
+CUDA_make2cmake:INTERNAL=E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake
+//ADVANCED property for variable: CUDA_nppc_LIBRARY
+CUDA_nppc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppial_LIBRARY
+CUDA_nppial_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppicc_LIBRARY
+CUDA_nppicc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppicom_LIBRARY
+CUDA_nppicom_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppidei_LIBRARY
+CUDA_nppidei_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppif_LIBRARY
+CUDA_nppif_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppig_LIBRARY
+CUDA_nppig_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppim_LIBRARY
+CUDA_nppim_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppist_LIBRARY
+CUDA_nppist_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppisu_LIBRARY
+CUDA_nppisu_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppitc_LIBRARY
+CUDA_nppitc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_npps_LIBRARY
+CUDA_npps_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvToolsExt_LIBRARY
+CUDA_nvToolsExt_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvcuvenc_LIBRARY
+CUDA_nvcuvenc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvcuvid_LIBRARY
+CUDA_nvcuvid_LIBRARY-ADVANCED:INTERNAL=1
+//Location of parse_cubin.cmake
+CUDA_parse_cubin:INTERNAL=E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake
+//Location of run_nvcc.cmake
+CUDA_run_nvcc:INTERNAL=E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/run_nvcc.cmake
+//Details about finding CUDA
+FIND_PACKAGE_MESSAGE_DETAILS_CUDA:INTERNAL=[D:/cuda/dev][D:/cuda/dev/bin/nvcc.exe][D:/cuda/dev/include][D:/cuda/dev/lib/x64/cudart_static.lib][v11.0(10)]
+//Result of TRY_RUN
+RUN_RESULT_VAR:INTERNAL=0
+
diff --git a/build/CMakeFiles/3.17.2/CMakeCCompiler.cmake b/build/CMakeFiles/3.17.2/CMakeCCompiler.cmake
new file mode 100644
index 0000000..57dc207
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CMakeCCompiler.cmake
@@ -0,0 +1,76 @@
+set(CMAKE_C_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe")
+set(CMAKE_C_COMPILER_ARG1 "")
+set(CMAKE_C_COMPILER_ID "MSVC")
+set(CMAKE_C_COMPILER_VERSION "19.24.28319.0")
+set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
+set(CMAKE_C_COMPILER_WRAPPER "")
+set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "90")
+set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_std_99;c_std_11;c_function_prototypes;c_variadic_macros")
+set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
+set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_variadic_macros")
+set(CMAKE_C11_COMPILE_FEATURES "c_std_11")
+
+set(CMAKE_C_PLATFORM_ID "Windows")
+set(CMAKE_C_SIMULATE_ID "")
+set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
+set(CMAKE_C_SIMULATE_VERSION "")
+set(CMAKE_C_COMPILER_ARCHITECTURE_ID x64)
+set(MSVC_C_ARCHITECTURE_ID x64)
+
+set(CMAKE_AR "")
+set(CMAKE_C_COMPILER_AR "")
+set(CMAKE_RANLIB "")
+set(CMAKE_C_COMPILER_RANLIB "")
+set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/link.exe")
+set(CMAKE_MT "C:/Program Files (x86)/Windows Kits/10/bin/10.0.18362.0/x64/mt.exe")
+set(CMAKE_COMPILER_IS_GNUCC )
+set(CMAKE_C_COMPILER_LOADED 1)
+set(CMAKE_C_COMPILER_WORKS TRUE)
+set(CMAKE_C_ABI_COMPILED TRUE)
+set(CMAKE_COMPILER_IS_MINGW )
+set(CMAKE_COMPILER_IS_CYGWIN )
+if(CMAKE_COMPILER_IS_CYGWIN)
+ set(CYGWIN 1)
+ set(UNIX 1)
+endif()
+
+set(CMAKE_C_COMPILER_ENV_VAR "CC")
+
+if(CMAKE_COMPILER_IS_MINGW)
+ set(MINGW 1)
+endif()
+set(CMAKE_C_COMPILER_ID_RUN 1)
+set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
+set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
+set(CMAKE_C_LINKER_PREFERENCE 10)
+
+# Save compiler ABI information.
+set(CMAKE_C_SIZEOF_DATA_PTR "8")
+set(CMAKE_C_COMPILER_ABI "")
+set(CMAKE_C_LIBRARY_ARCHITECTURE "")
+
+if(CMAKE_C_SIZEOF_DATA_PTR)
+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
+endif()
+
+if(CMAKE_C_COMPILER_ABI)
+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
+endif()
+
+if(CMAKE_C_LIBRARY_ARCHITECTURE)
+ set(CMAKE_LIBRARY_ARCHITECTURE "")
+endif()
+
+set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
+if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
+endif()
+
+
+
+
+
+set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "")
+set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
+set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
diff --git a/build/CMakeFiles/3.17.2/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.17.2/CMakeCXXCompiler.cmake
new file mode 100644
index 0000000..c7c671a
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CMakeCXXCompiler.cmake
@@ -0,0 +1,88 @@
+set(CMAKE_CXX_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe")
+set(CMAKE_CXX_COMPILER_ARG1 "")
+set(CMAKE_CXX_COMPILER_ID "MSVC")
+set(CMAKE_CXX_COMPILER_VERSION "19.24.28319.0")
+set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
+set(CMAKE_CXX_COMPILER_WRAPPER "")
+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20")
+set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
+set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
+set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
+set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
+set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
+
+set(CMAKE_CXX_PLATFORM_ID "Windows")
+set(CMAKE_CXX_SIMULATE_ID "")
+set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
+set(CMAKE_CXX_SIMULATE_VERSION "")
+set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID x64)
+set(MSVC_CXX_ARCHITECTURE_ID x64)
+
+set(CMAKE_AR "")
+set(CMAKE_CXX_COMPILER_AR "")
+set(CMAKE_RANLIB "")
+set(CMAKE_CXX_COMPILER_RANLIB "")
+set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/link.exe")
+set(CMAKE_MT "C:/Program Files (x86)/Windows Kits/10/bin/10.0.18362.0/x64/mt.exe")
+set(CMAKE_COMPILER_IS_GNUCXX )
+set(CMAKE_CXX_COMPILER_LOADED 1)
+set(CMAKE_CXX_COMPILER_WORKS TRUE)
+set(CMAKE_CXX_ABI_COMPILED TRUE)
+set(CMAKE_COMPILER_IS_MINGW )
+set(CMAKE_COMPILER_IS_CYGWIN )
+if(CMAKE_COMPILER_IS_CYGWIN)
+ set(CYGWIN 1)
+ set(UNIX 1)
+endif()
+
+set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
+
+if(CMAKE_COMPILER_IS_MINGW)
+ set(MINGW 1)
+endif()
+set(CMAKE_CXX_COMPILER_ID_RUN 1)
+set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
+set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
+
+foreach (lang C OBJC OBJCXX)
+ if (CMAKE_${lang}_COMPILER_ID_RUN)
+ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
+ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
+ endforeach()
+ endif()
+endforeach()
+
+set(CMAKE_CXX_LINKER_PREFERENCE 30)
+set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
+
+# Save compiler ABI information.
+set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
+set(CMAKE_CXX_COMPILER_ABI "")
+set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
+
+if(CMAKE_CXX_SIZEOF_DATA_PTR)
+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
+endif()
+
+if(CMAKE_CXX_COMPILER_ABI)
+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
+endif()
+
+if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
+ set(CMAKE_LIBRARY_ARCHITECTURE "")
+endif()
+
+set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
+if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
+endif()
+
+
+
+
+
+set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
diff --git a/build/CMakeFiles/3.17.2/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.17.2/CMakeDetermineCompilerABI_C.bin
new file mode 100644
index 0000000..4d2ac1d
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CMakeDetermineCompilerABI_C.bin differ
diff --git a/build/CMakeFiles/3.17.2/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.17.2/CMakeDetermineCompilerABI_CXX.bin
new file mode 100644
index 0000000..4b79c24
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CMakeDetermineCompilerABI_CXX.bin differ
diff --git a/build/CMakeFiles/3.17.2/CMakeRCCompiler.cmake b/build/CMakeFiles/3.17.2/CMakeRCCompiler.cmake
new file mode 100644
index 0000000..97eaaf6
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CMakeRCCompiler.cmake
@@ -0,0 +1,6 @@
+set(CMAKE_RC_COMPILER "C:/Program Files (x86)/Windows Kits/10/bin/10.0.18362.0/x64/rc.exe")
+set(CMAKE_RC_COMPILER_ARG1 "")
+set(CMAKE_RC_COMPILER_LOADED 1)
+set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC)
+set(CMAKE_RC_OUTPUT_EXTENSION .res)
+set(CMAKE_RC_COMPILER_ENV_VAR "RC")
diff --git a/build/CMakeFiles/3.17.2/CMakeSystem.cmake b/build/CMakeFiles/3.17.2/CMakeSystem.cmake
new file mode 100644
index 0000000..8a1d242
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CMakeSystem.cmake
@@ -0,0 +1,15 @@
+set(CMAKE_HOST_SYSTEM "Windows-10.0.18362")
+set(CMAKE_HOST_SYSTEM_NAME "Windows")
+set(CMAKE_HOST_SYSTEM_VERSION "10.0.18362")
+set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
+
+
+
+set(CMAKE_SYSTEM "Windows-10.0.18362")
+set(CMAKE_SYSTEM_NAME "Windows")
+set(CMAKE_SYSTEM_VERSION "10.0.18362")
+set(CMAKE_SYSTEM_PROCESSOR "AMD64")
+
+set(CMAKE_CROSSCOMPILING "FALSE")
+
+set(CMAKE_SYSTEM_LOADED 1)
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.17.2/CompilerIdC/CMakeCCompilerId.c
new file mode 100644
index 0000000..d884b50
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CompilerIdC/CMakeCCompilerId.c
@@ -0,0 +1,671 @@
+#ifdef __cplusplus
+# error "A C++ compiler has been selected for C."
+#endif
+
+#if defined(__18CXX)
+# define ID_VOID_MAIN
+#endif
+#if defined(__CLASSIC_C__)
+/* cv-qualifiers did not exist in K&R C */
+# define const
+# define volatile
+#endif
+
+
+/* Version number components: V=Version, R=Revision, P=Patch
+ Version date components: YYYY=Year, MM=Month, DD=Day */
+
+#if defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_ID "GNU"
+# endif
+ /* __INTEL_COMPILER = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
+# if defined(__INTEL_COMPILER_UPDATE)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
+# else
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
+# endif
+# if defined(__INTEL_COMPILER_BUILD_DATE)
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
+# endif
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+# elif defined(__GNUG__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(__PATHCC__)
+# define COMPILER_ID "PathScale"
+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
+# if defined(__PATHCC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
+# endif
+
+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
+# define COMPILER_ID "Embarcadero"
+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+ /* __BORLANDC__ = 0xVRR */
+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
+
+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
+# define COMPILER_ID "Watcom"
+ /* __WATCOMC__ = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "OpenWatcom"
+ /* __WATCOMC__ = VVRP + 1100 */
+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__SUNPRO_C)
+# define COMPILER_ID "SunPro"
+# if __SUNPRO_C >= 0x5100
+ /* __SUNPRO_C = 0xVRRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
+# else
+ /* __SUNPRO_CC = 0xVRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
+# endif
+
+#elif defined(__HP_cc)
+# define COMPILER_ID "HP"
+ /* __HP_cc = VVRRPP */
+# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
+# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
+
+#elif defined(__DECC)
+# define COMPILER_ID "Compaq"
+ /* __DECC_VER = VVRRTPPPP */
+# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
+# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
+# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
+
+#elif defined(__IBMC__) && defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__ibmxl__) && defined(__clang__)
+# define COMPILER_ID "XLClang"
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+
+
+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
+# define COMPILER_ID "XL"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
+# define COMPILER_ID "VisualAge"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
+# if defined(__PGIC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
+# endif
+
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
+
+#elif defined(__TI_COMPILER_VERSION__)
+# define COMPILER_ID "TI"
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
+
+#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
+# define COMPILER_ID "Fujitsu"
+
+#elif defined(__ghs__)
+# define COMPILER_ID "GHS"
+/* __GHS_VERSION_NUMBER = VVVVRP */
+# ifdef __GHS_VERSION_NUMBER
+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
+# endif
+
+#elif defined(__TINYC__)
+# define COMPILER_ID "TinyCC"
+
+#elif defined(__BCC__)
+# define COMPILER_ID "Bruce"
+
+#elif defined(__SCO_VERSION__)
+# define COMPILER_ID "SCO"
+
+#elif defined(__ARMCC_VERSION) && !defined(__clang__)
+# define COMPILER_ID "ARMCC"
+#if __ARMCC_VERSION >= 1000000
+ /* __ARMCC_VERSION = VRRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#else
+ /* __ARMCC_VERSION = VRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#endif
+
+
+#elif defined(__clang__) && defined(__apple_build_version__)
+# define COMPILER_ID "AppleClang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
+
+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
+# define COMPILER_ID "ARMClang"
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__GNUC__)
+# define COMPILER_ID "GNU"
+# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
+# if defined(__GNUC_MINOR__)
+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+ /* _MSC_VER = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
+# if defined(_MSC_FULL_VER)
+# if _MSC_VER >= 1400
+ /* _MSC_FULL_VER = VVRRPPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
+# else
+ /* _MSC_FULL_VER = VVRRPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
+# endif
+# endif
+# if defined(_MSC_BUILD)
+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
+# endif
+
+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+# define COMPILER_ID "ADSP"
+#if defined(__VISUALDSPVERSION__)
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
+#endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# define COMPILER_ID "IAR"
+# if defined(__VER__) && defined(__ICCARM__)
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# endif
+
+#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
+# define COMPILER_ID "SDCC"
+# if defined(__SDCC_VERSION_MAJOR)
+# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
+# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
+# else
+ /* SDCC = VRP */
+# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
+# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
+# endif
+
+
+/* These compilers are either not known or too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+#ifdef SIMULATE_ID
+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
+#endif
+
+#ifdef __QNXNTO__
+char const* qnxnto = "INFO" ":" "qnxnto[]";
+#endif
+
+#if defined(__CRAYXE) || defined(__CRAYXC)
+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
+#endif
+
+#define STRINGIFY_HELPER(X) #X
+#define STRINGIFY(X) STRINGIFY_HELPER(X)
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU__)
+# define PLATFORM_ID "Haiku"
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#elif defined(__WATCOMC__)
+# if defined(__LINUX__)
+# define PLATFORM_ID "Linux"
+
+# elif defined(__DOS__)
+# define PLATFORM_ID "DOS"
+
+# elif defined(__OS2__)
+# define PLATFORM_ID "OS2"
+
+# elif defined(__WINDOWS__)
+# define PLATFORM_ID "Windows3x"
+
+# else /* unknown platform */
+# define PLATFORM_ID
+# endif
+
+#elif defined(__INTEGRITY)
+# if defined(INT_178B)
+# define PLATFORM_ID "Integrity178"
+
+# else /* regular Integrity */
+# define PLATFORM_ID "Integrity"
+# endif
+
+#else /* unknown platform */
+# define PLATFORM_ID
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is because
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# elif defined(_M_ARM64)
+# define ARCHITECTURE_ID "ARM64"
+
+# elif defined(_M_ARM)
+# if _M_ARM == 4
+# define ARCHITECTURE_ID "ARMV4I"
+# elif _M_ARM == 5
+# define ARCHITECTURE_ID "ARMV5I"
+# else
+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
+# endif
+
+# elif defined(_M_MIPS)
+# define ARCHITECTURE_ID "MIPS"
+
+# elif defined(_M_SH)
+# define ARCHITECTURE_ID "SHx"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__WATCOMC__)
+# if defined(_M_I86)
+# define ARCHITECTURE_ID "I86"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# if defined(__ICCARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__ICCRX__)
+# define ARCHITECTURE_ID "RX"
+
+# elif defined(__ICCRH850__)
+# define ARCHITECTURE_ID "RH850"
+
+# elif defined(__ICCRL78__)
+# define ARCHITECTURE_ID "RL78"
+
+# elif defined(__ICCRISCV__)
+# define ARCHITECTURE_ID "RISCV"
+
+# elif defined(__ICCAVR__)
+# define ARCHITECTURE_ID "AVR"
+
+# elif defined(__ICC430__)
+# define ARCHITECTURE_ID "MSP430"
+
+# elif defined(__ICCV850__)
+# define ARCHITECTURE_ID "V850"
+
+# elif defined(__ICC8051__)
+# define ARCHITECTURE_ID "8051"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__ghs__)
+# if defined(__PPC64__)
+# define ARCHITECTURE_ID "PPC64"
+
+# elif defined(__ppc__)
+# define ARCHITECTURE_ID "PPC"
+
+# elif defined(__ARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__x86_64__)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(__i386__)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+#else
+# define ARCHITECTURE_ID
+#endif
+
+/* Convert integer to decimal digit literals. */
+#define DEC(n) \
+ ('0' + (((n) / 10000000)%10)), \
+ ('0' + (((n) / 1000000)%10)), \
+ ('0' + (((n) / 100000)%10)), \
+ ('0' + (((n) / 10000)%10)), \
+ ('0' + (((n) / 1000)%10)), \
+ ('0' + (((n) / 100)%10)), \
+ ('0' + (((n) / 10)%10)), \
+ ('0' + ((n) % 10))
+
+/* Convert integer to hex digit literals. */
+#define HEX(n) \
+ ('0' + ((n)>>28 & 0xF)), \
+ ('0' + ((n)>>24 & 0xF)), \
+ ('0' + ((n)>>20 & 0xF)), \
+ ('0' + ((n)>>16 & 0xF)), \
+ ('0' + ((n)>>12 & 0xF)), \
+ ('0' + ((n)>>8 & 0xF)), \
+ ('0' + ((n)>>4 & 0xF)), \
+ ('0' + ((n) & 0xF))
+
+/* Construct a string literal encoding the version number components. */
+#ifdef COMPILER_VERSION_MAJOR
+char const info_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
+ COMPILER_VERSION_MAJOR,
+# ifdef COMPILER_VERSION_MINOR
+ '.', COMPILER_VERSION_MINOR,
+# ifdef COMPILER_VERSION_PATCH
+ '.', COMPILER_VERSION_PATCH,
+# ifdef COMPILER_VERSION_TWEAK
+ '.', COMPILER_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct a string literal encoding the internal version number. */
+#ifdef COMPILER_VERSION_INTERNAL
+char const info_version_internal[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
+ 'i','n','t','e','r','n','a','l','[',
+ COMPILER_VERSION_INTERNAL,']','\0'};
+#endif
+
+/* Construct a string literal encoding the version number components. */
+#ifdef SIMULATE_VERSION_MAJOR
+char const info_simulate_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
+ SIMULATE_VERSION_MAJOR,
+# ifdef SIMULATE_VERSION_MINOR
+ '.', SIMULATE_VERSION_MINOR,
+# ifdef SIMULATE_VERSION_PATCH
+ '.', SIMULATE_VERSION_PATCH,
+# ifdef SIMULATE_VERSION_TWEAK
+ '.', SIMULATE_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+
+#if !defined(__STDC__)
+# if (defined(_MSC_VER) && !defined(__clang__)) \
+ || (defined(__ibmxl__) || defined(__IBMC__))
+# define C_DIALECT "90"
+# else
+# define C_DIALECT
+# endif
+#elif __STDC_VERSION__ >= 201000L
+# define C_DIALECT "11"
+#elif __STDC_VERSION__ >= 199901L
+# define C_DIALECT "99"
+#else
+# define C_DIALECT "90"
+#endif
+const char* info_language_dialect_default =
+ "INFO" ":" "dialect_default[" C_DIALECT "]";
+
+/*--------------------------------------------------------------------------*/
+
+#ifdef ID_VOID_MAIN
+void main() {}
+#else
+# if defined(__CLASSIC_C__)
+int main(argc, argv) int argc; char *argv[];
+# else
+int main(int argc, char* argv[])
+# endif
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+ require += info_arch[argc];
+#ifdef COMPILER_VERSION_MAJOR
+ require += info_version[argc];
+#endif
+#ifdef COMPILER_VERSION_INTERNAL
+ require += info_version_internal[argc];
+#endif
+#ifdef SIMULATE_ID
+ require += info_simulate[argc];
+#endif
+#ifdef SIMULATE_VERSION_MAJOR
+ require += info_simulate_version[argc];
+#endif
+#if defined(__CRAYXE) || defined(__CRAYXC)
+ require += info_cray[argc];
+#endif
+ require += info_language_dialect_default[argc];
+ (void)argv;
+ return require;
+}
+#endif
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/CompilerIdC.exe b/build/CMakeFiles/3.17.2/CompilerIdC/CompilerIdC.exe
new file mode 100644
index 0000000..1306a77
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdC/CompilerIdC.exe differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/CompilerIdC.vcxproj b/build/CMakeFiles/3.17.2/CompilerIdC/CompilerIdC.vcxproj
new file mode 100644
index 0000000..bdc556d
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CompilerIdC/CompilerIdC.vcxproj
@@ -0,0 +1,71 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {CAE07175-D007-4FC3-BFE8-47B392814159}
+ CompilerIdC
+ Win32Proj
+
+
+ 10.0.18362.0
+
+
+
+
+
+
+
+
+ x64
+
+
+ Application
+ v142
+ MultiByte
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ %(PreprocessorDefinitions)
+ false
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ TurnOffAllWarnings
+
+
+
+
+
+ false
+ Console
+
+
+
+ for %%i in (cl.exe) do %40echo CMAKE_C_COMPILER=%%~$PATH:i
+
+
+
+
+
+
+
+
+
+
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CMakeCCompilerId.obj b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CMakeCCompilerId.obj
new file mode 100644
index 0000000..3a00b66
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CMakeCCompilerId.obj differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..2de8ffe
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..0fd1642
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..2af5ef2
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate
new file mode 100644
index 0000000..e6d19cb
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CompilerIdC\|
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog
new file mode 100644
index 0000000..9a33d75
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog
new file mode 100644
index 0000000..e9a5b55
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog
new file mode 100644
index 0000000..923b02a
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.17.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
new file mode 100644
index 0000000..69cfdba
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
@@ -0,0 +1,660 @@
+/* This source file must have a .cpp extension so that all C++ compilers
+ recognize the extension without flags. Borland does not know .cxx for
+ example. */
+#ifndef __cplusplus
+# error "A C compiler has been selected for C++."
+#endif
+
+
+/* Version number components: V=Version, R=Revision, P=Patch
+ Version date components: YYYY=Year, MM=Month, DD=Day */
+
+#if defined(__COMO__)
+# define COMPILER_ID "Comeau"
+ /* __COMO_VERSION__ = VRR */
+# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
+# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
+
+#elif defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_ID "GNU"
+# endif
+ /* __INTEL_COMPILER = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
+# if defined(__INTEL_COMPILER_UPDATE)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
+# else
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
+# endif
+# if defined(__INTEL_COMPILER_BUILD_DATE)
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
+# endif
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+# elif defined(__GNUG__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(__PATHCC__)
+# define COMPILER_ID "PathScale"
+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
+# if defined(__PATHCC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
+# endif
+
+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
+# define COMPILER_ID "Embarcadero"
+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+ /* __BORLANDC__ = 0xVRR */
+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
+
+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
+# define COMPILER_ID "Watcom"
+ /* __WATCOMC__ = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "OpenWatcom"
+ /* __WATCOMC__ = VVRP + 1100 */
+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__SUNPRO_CC)
+# define COMPILER_ID "SunPro"
+# if __SUNPRO_CC >= 0x5100
+ /* __SUNPRO_CC = 0xVRRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# else
+ /* __SUNPRO_CC = 0xVRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# endif
+
+#elif defined(__HP_aCC)
+# define COMPILER_ID "HP"
+ /* __HP_aCC = VVRRPP */
+# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
+# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
+
+#elif defined(__DECCXX)
+# define COMPILER_ID "Compaq"
+ /* __DECCXX_VER = VVRRTPPPP */
+# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
+# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
+# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
+
+#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__ibmxl__) && defined(__clang__)
+# define COMPILER_ID "XLClang"
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
+# define COMPILER_ID "XL"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
+# define COMPILER_ID "VisualAge"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
+# if defined(__PGIC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
+# endif
+
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
+
+#elif defined(__TI_COMPILER_VERSION__)
+# define COMPILER_ID "TI"
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
+
+#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
+# define COMPILER_ID "Fujitsu"
+
+#elif defined(__ghs__)
+# define COMPILER_ID "GHS"
+/* __GHS_VERSION_NUMBER = VVVVRP */
+# ifdef __GHS_VERSION_NUMBER
+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
+# endif
+
+#elif defined(__SCO_VERSION__)
+# define COMPILER_ID "SCO"
+
+#elif defined(__ARMCC_VERSION) && !defined(__clang__)
+# define COMPILER_ID "ARMCC"
+#if __ARMCC_VERSION >= 1000000
+ /* __ARMCC_VERSION = VRRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#else
+ /* __ARMCC_VERSION = VRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#endif
+
+
+#elif defined(__clang__) && defined(__apple_build_version__)
+# define COMPILER_ID "AppleClang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
+
+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
+# define COMPILER_ID "ARMClang"
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__GNUC__) || defined(__GNUG__)
+# define COMPILER_ID "GNU"
+# if defined(__GNUC__)
+# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
+# else
+# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+ /* _MSC_VER = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
+# if defined(_MSC_FULL_VER)
+# if _MSC_VER >= 1400
+ /* _MSC_FULL_VER = VVRRPPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
+# else
+ /* _MSC_FULL_VER = VVRRPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
+# endif
+# endif
+# if defined(_MSC_BUILD)
+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
+# endif
+
+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+# define COMPILER_ID "ADSP"
+#if defined(__VISUALDSPVERSION__)
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
+#endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# define COMPILER_ID "IAR"
+# if defined(__VER__) && defined(__ICCARM__)
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# endif
+
+
+/* These compilers are either not known or too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+#ifdef SIMULATE_ID
+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
+#endif
+
+#ifdef __QNXNTO__
+char const* qnxnto = "INFO" ":" "qnxnto[]";
+#endif
+
+#if defined(__CRAYXE) || defined(__CRAYXC)
+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
+#endif
+
+#define STRINGIFY_HELPER(X) #X
+#define STRINGIFY(X) STRINGIFY_HELPER(X)
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU__)
+# define PLATFORM_ID "Haiku"
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#elif defined(__WATCOMC__)
+# if defined(__LINUX__)
+# define PLATFORM_ID "Linux"
+
+# elif defined(__DOS__)
+# define PLATFORM_ID "DOS"
+
+# elif defined(__OS2__)
+# define PLATFORM_ID "OS2"
+
+# elif defined(__WINDOWS__)
+# define PLATFORM_ID "Windows3x"
+
+# else /* unknown platform */
+# define PLATFORM_ID
+# endif
+
+#elif defined(__INTEGRITY)
+# if defined(INT_178B)
+# define PLATFORM_ID "Integrity178"
+
+# else /* regular Integrity */
+# define PLATFORM_ID "Integrity"
+# endif
+
+#else /* unknown platform */
+# define PLATFORM_ID
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is because
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# elif defined(_M_ARM64)
+# define ARCHITECTURE_ID "ARM64"
+
+# elif defined(_M_ARM)
+# if _M_ARM == 4
+# define ARCHITECTURE_ID "ARMV4I"
+# elif _M_ARM == 5
+# define ARCHITECTURE_ID "ARMV5I"
+# else
+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
+# endif
+
+# elif defined(_M_MIPS)
+# define ARCHITECTURE_ID "MIPS"
+
+# elif defined(_M_SH)
+# define ARCHITECTURE_ID "SHx"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__WATCOMC__)
+# if defined(_M_I86)
+# define ARCHITECTURE_ID "I86"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# if defined(__ICCARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__ICCRX__)
+# define ARCHITECTURE_ID "RX"
+
+# elif defined(__ICCRH850__)
+# define ARCHITECTURE_ID "RH850"
+
+# elif defined(__ICCRL78__)
+# define ARCHITECTURE_ID "RL78"
+
+# elif defined(__ICCRISCV__)
+# define ARCHITECTURE_ID "RISCV"
+
+# elif defined(__ICCAVR__)
+# define ARCHITECTURE_ID "AVR"
+
+# elif defined(__ICC430__)
+# define ARCHITECTURE_ID "MSP430"
+
+# elif defined(__ICCV850__)
+# define ARCHITECTURE_ID "V850"
+
+# elif defined(__ICC8051__)
+# define ARCHITECTURE_ID "8051"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__ghs__)
+# if defined(__PPC64__)
+# define ARCHITECTURE_ID "PPC64"
+
+# elif defined(__ppc__)
+# define ARCHITECTURE_ID "PPC"
+
+# elif defined(__ARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__x86_64__)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(__i386__)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+#else
+# define ARCHITECTURE_ID
+#endif
+
+/* Convert integer to decimal digit literals. */
+#define DEC(n) \
+ ('0' + (((n) / 10000000)%10)), \
+ ('0' + (((n) / 1000000)%10)), \
+ ('0' + (((n) / 100000)%10)), \
+ ('0' + (((n) / 10000)%10)), \
+ ('0' + (((n) / 1000)%10)), \
+ ('0' + (((n) / 100)%10)), \
+ ('0' + (((n) / 10)%10)), \
+ ('0' + ((n) % 10))
+
+/* Convert integer to hex digit literals. */
+#define HEX(n) \
+ ('0' + ((n)>>28 & 0xF)), \
+ ('0' + ((n)>>24 & 0xF)), \
+ ('0' + ((n)>>20 & 0xF)), \
+ ('0' + ((n)>>16 & 0xF)), \
+ ('0' + ((n)>>12 & 0xF)), \
+ ('0' + ((n)>>8 & 0xF)), \
+ ('0' + ((n)>>4 & 0xF)), \
+ ('0' + ((n) & 0xF))
+
+/* Construct a string literal encoding the version number components. */
+#ifdef COMPILER_VERSION_MAJOR
+char const info_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
+ COMPILER_VERSION_MAJOR,
+# ifdef COMPILER_VERSION_MINOR
+ '.', COMPILER_VERSION_MINOR,
+# ifdef COMPILER_VERSION_PATCH
+ '.', COMPILER_VERSION_PATCH,
+# ifdef COMPILER_VERSION_TWEAK
+ '.', COMPILER_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct a string literal encoding the internal version number. */
+#ifdef COMPILER_VERSION_INTERNAL
+char const info_version_internal[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
+ 'i','n','t','e','r','n','a','l','[',
+ COMPILER_VERSION_INTERNAL,']','\0'};
+#endif
+
+/* Construct a string literal encoding the version number components. */
+#ifdef SIMULATE_VERSION_MAJOR
+char const info_simulate_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
+ SIMULATE_VERSION_MAJOR,
+# ifdef SIMULATE_VERSION_MINOR
+ '.', SIMULATE_VERSION_MINOR,
+# ifdef SIMULATE_VERSION_PATCH
+ '.', SIMULATE_VERSION_PATCH,
+# ifdef SIMULATE_VERSION_TWEAK
+ '.', SIMULATE_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+
+#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
+# if defined(__INTEL_CXX11_MODE__)
+# if defined(__cpp_aggregate_nsdmi)
+# define CXX_STD 201402L
+# else
+# define CXX_STD 201103L
+# endif
+# else
+# define CXX_STD 199711L
+# endif
+#elif defined(_MSC_VER) && defined(_MSVC_LANG)
+# define CXX_STD _MSVC_LANG
+#else
+# define CXX_STD __cplusplus
+#endif
+
+const char* info_language_dialect_default = "INFO" ":" "dialect_default["
+#if CXX_STD > 201703L
+ "20"
+#elif CXX_STD >= 201703L
+ "17"
+#elif CXX_STD >= 201402L
+ "14"
+#elif CXX_STD >= 201103L
+ "11"
+#else
+ "98"
+#endif
+"]";
+
+/*--------------------------------------------------------------------------*/
+
+int main(int argc, char* argv[])
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+#ifdef COMPILER_VERSION_MAJOR
+ require += info_version[argc];
+#endif
+#ifdef COMPILER_VERSION_INTERNAL
+ require += info_version_internal[argc];
+#endif
+#ifdef SIMULATE_ID
+ require += info_simulate[argc];
+#endif
+#ifdef SIMULATE_VERSION_MAJOR
+ require += info_simulate_version[argc];
+#endif
+#if defined(__CRAYXE) || defined(__CRAYXC)
+ require += info_cray[argc];
+#endif
+ require += info_language_dialect_default[argc];
+ (void)argv;
+ return require;
+}
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/CompilerIdCXX.exe b/build/CMakeFiles/3.17.2/CompilerIdCXX/CompilerIdCXX.exe
new file mode 100644
index 0000000..f1bb09f
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdCXX/CompilerIdCXX.exe differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/CompilerIdCXX.vcxproj b/build/CMakeFiles/3.17.2/CompilerIdCXX/CompilerIdCXX.vcxproj
new file mode 100644
index 0000000..4d83e14
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CompilerIdCXX/CompilerIdCXX.vcxproj
@@ -0,0 +1,71 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {CAE07175-D007-4FC3-BFE8-47B392814159}
+ CompilerIdCXX
+ Win32Proj
+
+
+ 10.0.18362.0
+
+
+
+
+
+
+
+
+ x64
+
+
+ Application
+ v142
+ MultiByte
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ %(PreprocessorDefinitions)
+ false
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ TurnOffAllWarnings
+
+
+
+
+
+ false
+ Console
+
+
+
+ for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i
+
+
+
+
+
+
+
+
+
+
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj
new file mode 100644
index 0000000..471a99f
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..c1413b0
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..c9b6fed
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..be20ed3
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate
new file mode 100644
index 0000000..c42f0eb
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CompilerIdCXX\|
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog
new file mode 100644
index 0000000..32d7c0b
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog
new file mode 100644
index 0000000..0560ead
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog
new file mode 100644
index 0000000..1f05125
Binary files /dev/null and b/build/CMakeFiles/3.17.2/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog differ
diff --git a/build/CMakeFiles/3.17.2/VCTargetsPath.txt b/build/CMakeFiles/3.17.2/VCTargetsPath.txt
new file mode 100644
index 0000000..ac4817f
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/VCTargetsPath.txt
@@ -0,0 +1 @@
+C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Microsoft/VC/v160
diff --git a/build/CMakeFiles/3.17.2/VCTargetsPath.vcxproj b/build/CMakeFiles/3.17.2/VCTargetsPath.vcxproj
new file mode 100644
index 0000000..7cd1354
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/VCTargetsPath.vcxproj
@@ -0,0 +1,31 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {F3FC6D86-508D-3FB1-96D2-995F08B142EC}
+ Win32Proj
+ x64
+ 10.0.18362.0
+
+
+
+ x64
+
+
+ Utility
+ MultiByte
+ v142
+
+
+
+
+ echo VCTargetsPath=$(VCTargetsPath)
+
+
+
+
diff --git a/build/CMakeFiles/3.17.2/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate b/build/CMakeFiles/3.17.2/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate
new file mode 100644
index 0000000..2707058
--- /dev/null
+++ b/build/CMakeFiles/3.17.2/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\|
diff --git a/build/CMakeFiles/4b5aa6f63330001ffd0e1c0f96efec8b/generate.stamp.rule b/build/CMakeFiles/4b5aa6f63330001ffd0e1c0f96efec8b/generate.stamp.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/build/CMakeFiles/4b5aa6f63330001ffd0e1c0f96efec8b/generate.stamp.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log
new file mode 100644
index 0000000..601e7be
--- /dev/null
+++ b/build/CMakeFiles/CMakeOutput.log
@@ -0,0 +1,147 @@
+The system is: Windows - 10.0.18362 - AMD64
+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
+Compiler:
+Build flags:
+Id flags:
+
+The output was:
+0
+用于 .NET Framework 的 Microsoft (R) 生成引擎版本 16.4.0+e901037fe
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+生成启动时间为 2020/9/15 10:45:15。
+节点 1 上的项目“E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CompilerIdC\CompilerIdC.vcxproj”(默认目标)。
+PrepareForBuild:
+ 正在创建目录“Debug\”。
+ 正在创建目录“Debug\CompilerIdC.tlog\”。
+InitializeBuildStatus:
+ 正在创建“Debug\CompilerIdC.tlog\unsuccessfulbuild”,因为已指定“AlwaysCreate”。
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\bin\HostX64\x64\CL.exe /c /nologo /W0 /WX- /diagnostics:column /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\\" /Fd"Debug\vc142.pdb" /Gd /TC /FC /errorReport:queue CMakeCCompilerId.c
+ CMakeCCompilerId.c
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\bin\HostX64\x64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdC.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdC.lib" /MACHINE:X64 Debug\CMakeCCompilerId.obj
+ CompilerIdC.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CompilerIdC\.\CompilerIdC.exe
+PostBuildEvent:
+ for %%i in (cl.exe) do @echo CMAKE_C_COMPILER=%%~$PATH:i
+ :VCEnd
+ CMAKE_C_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\bin\Hostx64\x64\cl.exe
+FinalizeBuildStatus:
+ 正在删除文件“Debug\CompilerIdC.tlog\unsuccessfulbuild”。
+ 正在对“Debug\CompilerIdC.tlog\CompilerIdC.lastbuildstate”执行 Touch 任务。
+已完成生成项目“E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CompilerIdC\CompilerIdC.vcxproj”(默认目标)的操作。
+
+已成功生成。
+ 0 个警告
+ 0 个错误
+
+已用时间 00:00:01.01
+
+
+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.exe"
+
+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.vcxproj"
+
+The C compiler identification is MSVC, found in "E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/3.17.2/CompilerIdC/CompilerIdC.exe"
+
+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
+Compiler:
+Build flags:
+Id flags:
+
+The output was:
+0
+用于 .NET Framework 的 Microsoft (R) 生成引擎版本 16.4.0+e901037fe
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+生成启动时间为 2020/9/15 10:45:16。
+节点 1 上的项目“E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CompilerIdCXX\CompilerIdCXX.vcxproj”(默认目标)。
+PrepareForBuild:
+ 正在创建目录“Debug\”。
+ 正在创建目录“Debug\CompilerIdCXX.tlog\”。
+InitializeBuildStatus:
+ 正在创建“Debug\CompilerIdCXX.tlog\unsuccessfulbuild”,因为已指定“AlwaysCreate”。
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\bin\HostX64\x64\CL.exe /c /nologo /W0 /WX- /diagnostics:column /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\\" /Fd"Debug\vc142.pdb" /Gd /TP /FC /errorReport:queue CMakeCXXCompilerId.cpp
+ CMakeCXXCompilerId.cpp
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\bin\HostX64\x64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdCXX.lib" /MACHINE:X64 Debug\CMakeCXXCompilerId.obj
+ CompilerIdCXX.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CompilerIdCXX\.\CompilerIdCXX.exe
+PostBuildEvent:
+ for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i
+ :VCEnd
+ CMAKE_CXX_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\bin\Hostx64\x64\cl.exe
+FinalizeBuildStatus:
+ 正在删除文件“Debug\CompilerIdCXX.tlog\unsuccessfulbuild”。
+ 正在对“Debug\CompilerIdCXX.tlog\CompilerIdCXX.lastbuildstate”执行 Touch 任务。
+已完成生成项目“E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CompilerIdCXX\CompilerIdCXX.vcxproj”(默认目标)的操作。
+
+已成功生成。
+ 0 个警告
+ 0 个错误
+
+已用时间 00:00:00.58
+
+
+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe"
+
+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj"
+
+The CXX compiler identification is MSVC, found in "E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/3.17.2/CompilerIdCXX/CompilerIdCXX.exe"
+
+Determining if the C compiler works passed with the following output:
+Change Dir: E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/CMakeTmp
+
+Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_8b73b.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && 用于 .NET Framework 的 Microsoft (R) 生成引擎版本 16.4.0+e901037fe
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+ 用于 x64 的 Microsoft (R) C/C++ 优化编译器 19.24.28319 版
+ testCCompiler.c
+ 版权所有(C) Microsoft Corporation。保留所有权利。
+ cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8b73b.dir\Debug\\" /Fd"cmTC_8b73b.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\CMakeTmp\testCCompiler.c"
+ cmTC_8b73b.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\CMakeTmp\Debug\cmTC_8b73b.exe
+
+
+
+Detecting C compiler ABI info compiled with the following output:
+Change Dir: E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/CMakeTmp
+
+Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_bc1bf.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && 用于 .NET Framework 的 Microsoft (R) 生成引擎版本 16.4.0+e901037fe
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+ 用于 x64 的 Microsoft (R) C/C++ 优化编译器 19.24.28319 版
+ CMakeCCompilerABI.c
+ 版权所有(C) Microsoft Corporation。保留所有权利。
+ cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_bc1bf.dir\Debug\\" /Fd"cmTC_bc1bf.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCCompilerABI.c"
+ cmTC_bc1bf.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\CMakeTmp\Debug\cmTC_bc1bf.exe
+
+
+
+Determining if the CXX compiler works passed with the following output:
+Change Dir: E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/CMakeTmp
+
+Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_b0578.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && 用于 .NET Framework 的 Microsoft (R) 生成引擎版本 16.4.0+e901037fe
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+ 用于 x64 的 Microsoft (R) C/C++ 优化编译器 19.24.28319 版
+ testCXXCompiler.cxx
+ 版权所有(C) Microsoft Corporation。保留所有权利。
+ cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_b0578.dir\Debug\\" /Fd"cmTC_b0578.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue "E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\CMakeTmp\testCXXCompiler.cxx"
+ cmTC_b0578.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\CMakeTmp\Debug\cmTC_b0578.exe
+
+
+
+Detecting CXX compiler ABI info compiled with the following output:
+Change Dir: E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/CMakeTmp
+
+Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_21e0e.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && 用于 .NET Framework 的 Microsoft (R) 生成引擎版本 16.4.0+e901037fe
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+ 用于 x64 的 Microsoft (R) C/C++ 优化编译器 19.24.28319 版
+ CMakeCXXCompilerABI.cpp
+ 版权所有(C) Microsoft Corporation。保留所有权利。
+ cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_21e0e.dir\Debug\\" /Fd"cmTC_21e0e.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue "E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXCompilerABI.cpp"
+ cmTC_21e0e.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\CMakeTmp\Debug\cmTC_21e0e.exe
+
+
+
diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt
new file mode 100644
index 0000000..541b32e
--- /dev/null
+++ b/build/CMakeFiles/TargetDirectories.txt
@@ -0,0 +1,4 @@
+E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/cis565_stream_compaction_test.dir
+E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/ALL_BUILD.dir
+E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/ZERO_CHECK.dir
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir
diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache
new file mode 100644
index 0000000..3dccd73
--- /dev/null
+++ b/build/CMakeFiles/cmake.check_cache
@@ -0,0 +1 @@
+# This file is generated by cmake for dependency checking of the CMakeCache.txt file
diff --git a/build/CMakeFiles/generate.stamp b/build/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/build/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/build/CMakeFiles/generate.stamp.depend b/build/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..e9b007d
--- /dev/null
+++ b/build/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,29 @@
+# CMake generation dependency list for this directory.
+E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/3.17.2/CMakeCCompiler.cmake
+E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/3.17.2/CMakeCXXCompiler.cmake
+E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/3.17.2/CMakeRCCompiler.cmake
+E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/3.17.2/CMakeSystem.cmake
+E:/Learning/CIS565/Project2-Stream-Compaction/cmake/CUDAComputesList.cmake
+E:/Learning/CIS565/Project2-Stream-Compaction/cmake/cuda_compute_capability.cpp
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeCInformation.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeCXXInformation.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeCommonLanguageInclude.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeGenericSystem.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeInitializeConfigs.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeLanguageInformation.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeRCInformation.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeSystemSpecificInformation.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/CMakeSystemSpecificInitialize.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/Compiler/CMakeCommonCompilerMacros.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/Compiler/MSVC-C.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/Compiler/MSVC-CXX.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/select_compute_arch.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindPackageHandleStandardArgs.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindPackageMessage.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/Platform/Windows-MSVC-C.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/Platform/Windows-MSVC-CXX.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/Platform/Windows-MSVC.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/Platform/Windows.cmake
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/Platform/WindowsPaths.cmake
diff --git a/build/CMakeFiles/generate.stamp.list b/build/CMakeFiles/generate.stamp.list
new file mode 100644
index 0000000..ac0d2b6
--- /dev/null
+++ b/build/CMakeFiles/generate.stamp.list
@@ -0,0 +1,2 @@
+E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/generate.stamp
diff --git a/build/ZERO_CHECK.vcxproj b/build/ZERO_CHECK.vcxproj
new file mode 100644
index 0000000..80c9e15
--- /dev/null
+++ b/build/ZERO_CHECK.vcxproj
@@ -0,0 +1,170 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ ZERO_CHECK
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v142
+
+
+ Utility
+ MultiByte
+ v142
+
+
+ Utility
+ MultiByte
+ v142
+
+
+ Utility
+ MultiByte
+ v142
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ Checking Build System
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file E:/Learning/CIS565/Project2-Stream-Compaction/build/cis565_stream_compaction_test.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\CMakeLists.txt;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\CMakeLists.txt;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\run_nvcc.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file E:/Learning/CIS565/Project2-Stream-Compaction/build/cis565_stream_compaction_test.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\CMakeLists.txt;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\CMakeLists.txt;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\run_nvcc.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file E:/Learning/CIS565/Project2-Stream-Compaction/build/cis565_stream_compaction_test.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\CMakeLists.txt;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\CMakeLists.txt;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\run_nvcc.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file E:/Learning/CIS565/Project2-Stream-Compaction/build/cis565_stream_compaction_test.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\CMakeLists.txt;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\CMakeLists.txt;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\run_nvcc.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/ZERO_CHECK.vcxproj.filters b/build/ZERO_CHECK.vcxproj.filters
new file mode 100644
index 0000000..229c27a
--- /dev/null
+++ b/build/ZERO_CHECK.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {EB34A0B7-743C-3D57-B64F-48007E8EC352}
+
+
+
diff --git a/build/bin/Debug/cis565_stream_compaction_test.exe b/build/bin/Debug/cis565_stream_compaction_test.exe
new file mode 100644
index 0000000..f1952dc
Binary files /dev/null and b/build/bin/Debug/cis565_stream_compaction_test.exe differ
diff --git a/build/bin/Debug/cis565_stream_compaction_test.ilk b/build/bin/Debug/cis565_stream_compaction_test.ilk
new file mode 100644
index 0000000..c846303
Binary files /dev/null and b/build/bin/Debug/cis565_stream_compaction_test.ilk differ
diff --git a/build/bin/Debug/cis565_stream_compaction_test.pdb b/build/bin/Debug/cis565_stream_compaction_test.pdb
new file mode 100644
index 0000000..db130e3
Binary files /dev/null and b/build/bin/Debug/cis565_stream_compaction_test.pdb differ
diff --git a/build/bin/Release/cis565_stream_compaction_test.exe b/build/bin/Release/cis565_stream_compaction_test.exe
new file mode 100644
index 0000000..7e7eca0
Binary files /dev/null and b/build/bin/Release/cis565_stream_compaction_test.exe differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.command.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..2996ceb
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.command.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.read.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..ab81276
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.read.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.write.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..01d9b09
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CL.write.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.command.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.command.1.tlog
new file mode 100644
index 0000000..de12642
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.command.1.tlog
@@ -0,0 +1,10 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKELISTS.TXT
+setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.read.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.read.1.tlog
new file mode 100644
index 0000000..856a9cc
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.read.1.tlog
@@ -0,0 +1,28 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKECCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKECXXCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKERCCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKESYSTEM.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKE\CUDACOMPUTESLIST.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKE\CUDA_COMPUTE_CAPABILITY.CPP
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECXXINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECOMMONLANGUAGEINCLUDE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKEGENERICSYSTEM.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKEINITIALIZECONFIGS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKELANGUAGEINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKERCINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKESYSTEMSPECIFICINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKESYSTEMSPECIFICINITIALIZE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\CMAKECOMMONCOMPILERMACROS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\MSVC-C.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\MSVC-CXX.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA\SELECT_COMPUTE_ARCH.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDPACKAGEHANDLESTANDARDARGS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDPACKAGEMESSAGE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC-C.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC-CXX.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWSPATHS.CMAKE
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.write.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.write.1.tlog
new file mode 100644
index 0000000..2e97178
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/CustomBuild.write.1.tlog
@@ -0,0 +1,2 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\GENERATE.STAMP
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/cis565_stream_compaction_test.lastbuildstate b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/cis565_stream_compaction_test.lastbuildstate
new file mode 100644
index 0000000..5490b87
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/cis565_stream_compaction_test.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\|
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/cis565_stream_compaction_test.write.1u.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/cis565_stream_compaction_test.write.1u.tlog
new file mode 100644
index 0000000..5a07378
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/cis565_stream_compaction_test.write.1u.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.29296.delete.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.29296.delete.1.tlog
new file mode 100644
index 0000000..d4db029
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.29296.delete.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.command.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.command.1.tlog
new file mode 100644
index 0000000..e21bead
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.command.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.read.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.read.1.tlog
new file mode 100644
index 0000000..1747ba3
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.read.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.write.1.tlog b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.write.1.tlog
new file mode 100644
index 0000000..c2e29e3
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/cis565_s.152415EE.tlog/link.write.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_stream_compaction_test.Build.CppClean.log b/build/cis565_stream_compaction_test.dir/Debug/cis565_stream_compaction_test.Build.CppClean.log
new file mode 100644
index 0000000..3d01f1d
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Debug/cis565_stream_compaction_test.Build.CppClean.log
@@ -0,0 +1,18 @@
+e:\learning\cis565\project2-stream-compaction\build\lib\debug\cis565_stream_compaction_test.lib
+e:\learning\cis565\project2-stream-compaction\build\lib\debug\cis565_stream_compaction_test.exp
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\vc142.pdb
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\main.obj
+e:\learning\cis565\project2-stream-compaction\build\cmakefiles\generate.stamp
+e:\learning\cis565\project2-stream-compaction\build\bin\debug\cis565_stream_compaction_test.exe
+e:\learning\cis565\project2-stream-compaction\build\bin\debug\cis565_stream_compaction_test.ilk
+e:\learning\cis565\project2-stream-compaction\build\bin\debug\cis565_stream_compaction_test.pdb
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\cis565_stream_compaction_test.write.1u.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\cl.command.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\cl.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\cl.write.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\custombuild.command.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\custombuild.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\custombuild.write.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\link.command.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\link.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\cis565_stream_compaction_test.dir\debug\cis565_s.152415ee.tlog\link.write.1.tlog
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_stream_compaction_test.log b/build/cis565_stream_compaction_test.dir/Debug/cis565_stream_compaction_test.log
new file mode 100644
index 0000000..e4ccc6f
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Debug/cis565_stream_compaction_test.log
@@ -0,0 +1 @@
+ cis565_stream_compaction_test.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\bin\Debug\cis565_stream_compaction_test.exe
diff --git a/build/cis565_stream_compaction_test.dir/Debug/cis565_stream_compaction_test.vcxproj.FileListAbsolute.txt b/build/cis565_stream_compaction_test.dir/Debug/cis565_stream_compaction_test.vcxproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e69de29
diff --git a/build/cis565_stream_compaction_test.dir/Debug/main.obj b/build/cis565_stream_compaction_test.dir/Debug/main.obj
new file mode 100644
index 0000000..3596e3d
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/main.obj differ
diff --git a/build/cis565_stream_compaction_test.dir/Debug/vc142.pdb b/build/cis565_stream_compaction_test.dir/Debug/vc142.pdb
new file mode 100644
index 0000000..4b9491e
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Debug/vc142.pdb differ
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.command.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..05e5ec7
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.command.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.read.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..ab81276
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.read.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.write.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..d914f01
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CL.write.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.command.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.command.1.tlog
new file mode 100644
index 0000000..de12642
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.command.1.tlog
@@ -0,0 +1,10 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKELISTS.TXT
+setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.read.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.read.1.tlog
new file mode 100644
index 0000000..856a9cc
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.read.1.tlog
@@ -0,0 +1,28 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKECCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKECXXCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKERCCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKESYSTEM.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKE\CUDACOMPUTESLIST.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKE\CUDA_COMPUTE_CAPABILITY.CPP
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECXXINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECOMMONLANGUAGEINCLUDE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKEGENERICSYSTEM.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKEINITIALIZECONFIGS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKELANGUAGEINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKERCINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKESYSTEMSPECIFICINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKESYSTEMSPECIFICINITIALIZE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\CMAKECOMMONCOMPILERMACROS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\MSVC-C.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\MSVC-CXX.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA\SELECT_COMPUTE_ARCH.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDPACKAGEHANDLESTANDARDARGS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDPACKAGEMESSAGE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC-C.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC-CXX.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWSPATHS.CMAKE
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.write.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.write.1.tlog
new file mode 100644
index 0000000..2e97178
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/CustomBuild.write.1.tlog
@@ -0,0 +1,2 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\GENERATE.STAMP
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/cis565_stream_compaction_test.lastbuildstate b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/cis565_stream_compaction_test.lastbuildstate
new file mode 100644
index 0000000..96fd0d1
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/cis565_stream_compaction_test.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\|
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/cis565_stream_compaction_test.write.1u.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/cis565_stream_compaction_test.write.1u.tlog
new file mode 100644
index 0000000..afa6273
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/cis565_stream_compaction_test.write.1u.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.command.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.command.1.tlog
new file mode 100644
index 0000000..3410305
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.command.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.read.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.read.1.tlog
new file mode 100644
index 0000000..6af4c6e
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.read.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.write.1.tlog b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.write.1.tlog
new file mode 100644
index 0000000..d951a21
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Release/cis565_s.152415EE.tlog/link.write.1.tlog differ
diff --git a/build/cis565_stream_compaction_test.dir/Release/cis565_stream_compaction_test.log b/build/cis565_stream_compaction_test.dir/Release/cis565_stream_compaction_test.log
new file mode 100644
index 0000000..1b829a7
--- /dev/null
+++ b/build/cis565_stream_compaction_test.dir/Release/cis565_stream_compaction_test.log
@@ -0,0 +1,4 @@
+ main.cpp
+E:\Learning\CIS565\Project2-Stream-Compaction\src\testing_helpers.hpp(53,15): warning C4244: 'argument': conversion from 'time_t' to 'unsigned int', possible loss of data
+ Creating library E:/Learning/CIS565/Project2-Stream-Compaction/build/lib/Release/cis565_stream_compaction_test.lib and object E:/Learning/CIS565/Project2-Stream-Compaction/build/lib/Release/cis565_stream_compaction_test.exp
+ cis565_stream_compaction_test.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\bin\Release\cis565_stream_compaction_test.exe
diff --git a/build/cis565_stream_compaction_test.dir/Release/main.obj b/build/cis565_stream_compaction_test.dir/Release/main.obj
new file mode 100644
index 0000000..cca9db5
Binary files /dev/null and b/build/cis565_stream_compaction_test.dir/Release/main.obj differ
diff --git a/build/cis565_stream_compaction_test.sln b/build/cis565_stream_compaction_test.sln
new file mode 100644
index 0000000..0ccdfe7
--- /dev/null
+++ b/build/cis565_stream_compaction_test.sln
@@ -0,0 +1,73 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 16
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CMakePredefinedTargets", "CMakePredefinedTargets", "{C5BA9711-0E22-3948-B867-F8436F281B3C}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{4D463489-5B21-337E-B42F-6491946E2327}"
+ ProjectSection(ProjectDependencies) = postProject
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7} = {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0} = {152415EE-0B18-3803-B1CF-76F1CB61ABE0}
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905} = {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "ZERO_CHECK.vcxproj", "{0942912F-C31A-3AF4-8DA7-3B093E11CFC7}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cis565_stream_compaction_test", "cis565_stream_compaction_test.vcxproj", "{152415EE-0B18-3803-B1CF-76F1CB61ABE0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7} = {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905} = {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "stream_compaction", "stream_compaction\stream_compaction.vcxproj", "{D0E00BE7-A37E-3655-97D1-AEB25F9AE905}"
+ ProjectSection(ProjectDependencies) = postProject
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7} = {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Release|x64 = Release|x64
+ MinSizeRel|x64 = MinSizeRel|x64
+ RelWithDebInfo|x64 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {4D463489-5B21-337E-B42F-6491946E2327}.Debug|x64.ActiveCfg = Debug|x64
+ {4D463489-5B21-337E-B42F-6491946E2327}.Release|x64.ActiveCfg = Release|x64
+ {4D463489-5B21-337E-B42F-6491946E2327}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {4D463489-5B21-337E-B42F-6491946E2327}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}.Debug|x64.ActiveCfg = Debug|x64
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}.Debug|x64.Build.0 = Debug|x64
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}.Release|x64.ActiveCfg = Release|x64
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}.Release|x64.Build.0 = Release|x64
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}.Debug|x64.ActiveCfg = Debug|x64
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}.Debug|x64.Build.0 = Debug|x64
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}.Release|x64.ActiveCfg = Release|x64
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}.Release|x64.Build.0 = Release|x64
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}.Debug|x64.ActiveCfg = Debug|x64
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}.Debug|x64.Build.0 = Debug|x64
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}.Release|x64.ActiveCfg = Release|x64
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}.Release|x64.Build.0 = Release|x64
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ {4D463489-5B21-337E-B42F-6491946E2327} = {C5BA9711-0E22-3948-B867-F8436F281B3C}
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7} = {C5BA9711-0E22-3948-B867-F8436F281B3C}
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {DC5975E6-E2C7-3916-9F3E-59DF44678D37}
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
diff --git a/build/cis565_stream_compaction_test.sln.nvsettings b/build/cis565_stream_compaction_test.sln.nvsettings
new file mode 100644
index 0000000..5fe0dca
--- /dev/null
+++ b/build/cis565_stream_compaction_test.sln.nvsettings
@@ -0,0 +1,2 @@
+[WarpWatch]
+Expressions=threadIdx.x + (blockIdx.x * blockDim.x), n, finalSum[0], idata[257]
diff --git a/build/cis565_stream_compaction_test.vcxproj b/build/cis565_stream_compaction_test.vcxproj
new file mode 100644
index 0000000..254b005
--- /dev/null
+++ b/build/cis565_stream_compaction_test.vcxproj
@@ -0,0 +1,337 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {152415EE-0B18-3803-B1CF-76F1CB61ABE0}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ cis565_stream_compaction_test
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v142
+
+
+ Application
+ MultiByte
+ v142
+
+
+ Application
+ MultiByte
+ v142
+
+
+ Application
+ MultiByte
+ v142
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\bin\Debug\
+ cis565_stream_compaction_test.dir\Debug\
+ cis565_stream_compaction_test
+ .exe
+ true
+ true
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\bin\Release\
+ cis565_stream_compaction_test.dir\Release\
+ cis565_stream_compaction_test
+ .exe
+ false
+ true
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\bin\MinSizeRel\
+ cis565_stream_compaction_test.dir\MinSizeRel\
+ cis565_stream_compaction_test
+ .exe
+ false
+ true
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\bin\RelWithDebInfo\
+ cis565_stream_compaction_test.dir\RelWithDebInfo\
+ cis565_stream_compaction_test
+ .exe
+ true
+ true
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ CompileAsCpp
+ ProgramDatabase
+ Sync
+ Disabled
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ true
+ false
+ Level3
+ WIN32;_WINDOWS;CUDA_COMPUTE_75;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;_WINDOWS;CUDA_COMPUTE_75;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ D:\cuda\dev\lib\x64\cudart_static.lib;lib\Debug\stream_compaction.lib;D:\cuda\dev\lib\x64\cudart_static.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ E:/Learning/CIS565/Project2-Stream-Compaction/build/lib/Debug/cis565_stream_compaction_test.lib
+ E:/Learning/CIS565/Project2-Stream-Compaction/build/bin/Debug/cis565_stream_compaction_test.pdb
+ Console
+
+
+ false
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ CompileAsCpp
+ Sync
+ AnySuitable
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ true
+ false
+ Level3
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+
+
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ D:\cuda\dev\lib\x64\cudart_static.lib;lib\Release\stream_compaction.lib;D:\cuda\dev\lib\x64\cudart_static.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ E:/Learning/CIS565/Project2-Stream-Compaction/build/lib/Release/cis565_stream_compaction_test.lib
+ E:/Learning/CIS565/Project2-Stream-Compaction/build/bin/Release/cis565_stream_compaction_test.pdb
+ Console
+
+
+ false
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ CompileAsCpp
+ Sync
+ OnlyExplicitInline
+ MinSpace
+ NotUsing
+ MultiThreadedDLL
+ true
+ false
+ Level3
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR="MinSizeRel";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+
+
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR=\"MinSizeRel\";%(PreprocessorDefinitions)
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ D:\cuda\dev\lib\x64\cudart_static.lib;lib\MinSizeRel\stream_compaction.lib;D:\cuda\dev\lib\x64\cudart_static.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ E:/Learning/CIS565/Project2-Stream-Compaction/build/lib/MinSizeRel/cis565_stream_compaction_test.lib
+ E:/Learning/CIS565/Project2-Stream-Compaction/build/bin/MinSizeRel/cis565_stream_compaction_test.pdb
+ Console
+
+
+ false
+
+
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ CompileAsCpp
+ ProgramDatabase
+ Sync
+ OnlyExplicitInline
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ true
+ false
+ Level3
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR="RelWithDebInfo";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR=\"RelWithDebInfo\";%(PreprocessorDefinitions)
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+
+
+ E:\Learning\CIS565\Project2-Stream-Compaction\.;D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ D:\cuda\dev\lib\x64\cudart_static.lib;lib\RelWithDebInfo\stream_compaction.lib;D:\cuda\dev\lib\x64\cudart_static.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ E:/Learning/CIS565/Project2-Stream-Compaction/build/lib/RelWithDebInfo/cis565_stream_compaction_test.lib
+ E:/Learning/CIS565/Project2-Stream-Compaction/build/bin/RelWithDebInfo/cis565_stream_compaction_test.pdb
+ Console
+
+
+ false
+
+
+
+
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeCXXCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeRCCompiler.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\3.17.2\CMakeSystem.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\CUDAComputesList.cmake;E:\Learning\CIS565\Project2-Stream-Compaction\cmake\cuda_compute_capability.cpp;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCXXInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeCommonLanguageInclude.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeGenericSystem.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeInitializeConfigs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeLanguageInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeRCInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInformation.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\CMakeSystemSpecificInitialize.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\CMakeCommonCompilerMacros.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Compiler\MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\select_compute_arch.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageHandleStandardArgs.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindPackageMessage.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-C.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC-CXX.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows-MSVC.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\Windows.cmake;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\Platform\WindowsPaths.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}
+ stream_compaction
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/cis565_stream_compaction_test.vcxproj.filters b/build/cis565_stream_compaction_test.vcxproj.filters
new file mode 100644
index 0000000..79517b1
--- /dev/null
+++ b/build/cis565_stream_compaction_test.vcxproj.filters
@@ -0,0 +1,24 @@
+
+
+
+
+ Sources
+
+
+
+
+ Headers
+
+
+
+
+
+
+
+ {F114EF2B-665C-3BD7-9D65-4975B5FBBF4E}
+
+
+ {3E844CD1-D290-3E9E-ABC5-807467FD7887}
+
+
+
diff --git a/build/cis565_stream_compaction_test.vcxproj.user b/build/cis565_stream_compaction_test.vcxproj.user
new file mode 100644
index 0000000..88a5509
--- /dev/null
+++ b/build/cis565_stream_compaction_test.vcxproj.user
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake
new file mode 100644
index 0000000..7774e27
--- /dev/null
+++ b/build/cmake_install.cmake
@@ -0,0 +1,50 @@
+# Install script for directory: E:/Learning/CIS565/Project2-Stream-Compaction
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/cis565_stream_compaction_test")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for each subdirectory.
+ include("E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/cmake_install.cmake")
+
+endif()
+
+if(CMAKE_INSTALL_COMPONENT)
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
+else()
+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
+endif()
+
+string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
+ "${CMAKE_INSTALL_MANIFEST_FILES}")
+file(WRITE "E:/Learning/CIS565/Project2-Stream-Compaction/build/${CMAKE_INSTALL_MANIFEST}"
+ "${CMAKE_INSTALL_MANIFEST_CONTENT}")
diff --git a/build/lib/Debug/cis565_stream_compaction_test.exp b/build/lib/Debug/cis565_stream_compaction_test.exp
new file mode 100644
index 0000000..b01a672
Binary files /dev/null and b/build/lib/Debug/cis565_stream_compaction_test.exp differ
diff --git a/build/lib/Debug/cis565_stream_compaction_test.lib b/build/lib/Debug/cis565_stream_compaction_test.lib
new file mode 100644
index 0000000..77e7e8c
Binary files /dev/null and b/build/lib/Debug/cis565_stream_compaction_test.lib differ
diff --git a/build/lib/Debug/stream_compaction.lib b/build/lib/Debug/stream_compaction.lib
new file mode 100644
index 0000000..e0720fb
Binary files /dev/null and b/build/lib/Debug/stream_compaction.lib differ
diff --git a/build/lib/Release/cis565_stream_compaction_test.exp b/build/lib/Release/cis565_stream_compaction_test.exp
new file mode 100644
index 0000000..829c401
Binary files /dev/null and b/build/lib/Release/cis565_stream_compaction_test.exp differ
diff --git a/build/lib/Release/cis565_stream_compaction_test.lib b/build/lib/Release/cis565_stream_compaction_test.lib
new file mode 100644
index 0000000..77e7e8c
Binary files /dev/null and b/build/lib/Release/cis565_stream_compaction_test.lib differ
diff --git a/build/lib/Release/stream_compaction.lib b/build/lib/Release/stream_compaction.lib
new file mode 100644
index 0000000..0ec5565
Binary files /dev/null and b/build/lib/Release/stream_compaction.lib differ
diff --git a/build/stream_compaction/CMakeFiles/generate.stamp b/build/stream_compaction/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/build/stream_compaction/CMakeFiles/generate.stamp.depend b/build/stream_compaction/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..5bb8a98
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,13 @@
+# CMake generation dependency list for this directory.
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.cmake.pre-gen
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.depend
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.cmake.pre-gen
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.depend
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.cmake.pre-gen
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.depend
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.cmake.pre-gen
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.depend
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.cmake.pre-gen
+E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.depend
+E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt
+E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/run_nvcc.cmake
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_common.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_common.cu.obj
new file mode 100644
index 0000000..0419dd0
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_common.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_cpu.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_cpu.cu.obj
new file mode 100644
index 0000000..bc47215
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_cpu.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_efficient.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_efficient.cu.obj
new file mode 100644
index 0000000..67e24a7
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_efficient.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_naive.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_naive.cu.obj
new file mode 100644
index 0000000..c98fa2a
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_naive.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_thrust.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_thrust.cu.obj
new file mode 100644
index 0000000..6fcc989
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_thrust.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_common.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_common.cu.obj
new file mode 100644
index 0000000..40673e9
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_common.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_cpu.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_cpu.cu.obj
new file mode 100644
index 0000000..f836661
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_cpu.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_efficient.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_efficient.cu.obj
new file mode 100644
index 0000000..4e833ae
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_efficient.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_naive.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_naive.cu.obj
new file mode 100644
index 0000000..8676922
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_naive.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_thrust.cu.obj b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_thrust.cu.obj
new file mode 100644
index 0000000..7c17ade
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_thrust.cu.obj differ
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.Debug.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.Debug.cmake
new file mode 100644
index 0000000..7a031b0
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.MinSizeRel.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.MinSizeRel.cmake
new file mode 100644
index 0000000..7a031b0
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.MinSizeRel.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.RelWithDebInfo.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.RelWithDebInfo.cmake
new file mode 100644
index 0000000..7a031b0
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.RelWithDebInfo.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.Release.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.Release.cmake
new file mode 100644
index 0000000..7a031b0
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.cmake.pre-gen b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..bc70a2b
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.depend b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.depend
new file mode 100644
index 0000000..c1243d4
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_common.cu.obj.depend
@@ -0,0 +1,138 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/algorithm"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cfloat"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/chrono"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/climits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cmath"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/concurrencysal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/crtdefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdarg"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdint"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdlib"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cwchar"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/eh.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/exception"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/initializer_list"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/intrin0.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/iosfwd"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/new"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/ratio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/sal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdarg.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdexcept"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdint.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/type_traits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/use_ansi.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/utility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vadefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_exception.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new_debug.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_string.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xatomic.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xkeycheck.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xmemory"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtgmath.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtimec.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtr1common"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xutility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals_core.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "D:/cuda/dev/include/builtin_types.h"
+ "D:/cuda/dev/include/channel_descriptor.h"
+ "D:/cuda/dev/include/crt/common_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.hpp"
+ "D:/cuda/dev/include/crt/device_functions.h"
+ "D:/cuda/dev/include/crt/device_functions.hpp"
+ "D:/cuda/dev/include/crt/host_config.h"
+ "D:/cuda/dev/include/crt/host_defines.h"
+ "D:/cuda/dev/include/crt/math_functions.h"
+ "D:/cuda/dev/include/crt/math_functions.hpp"
+ "D:/cuda/dev/include/crt/sm_70_rt.h"
+ "D:/cuda/dev/include/crt/sm_70_rt.hpp"
+ "D:/cuda/dev/include/crt/sm_80_rt.h"
+ "D:/cuda/dev/include/crt/sm_80_rt.hpp"
+ "D:/cuda/dev/include/cuda.h"
+ "D:/cuda/dev/include/cuda_device_runtime_api.h"
+ "D:/cuda/dev/include/cuda_runtime.h"
+ "D:/cuda/dev/include/cuda_runtime_api.h"
+ "D:/cuda/dev/include/cuda_surface_types.h"
+ "D:/cuda/dev/include/cuda_texture_types.h"
+ "D:/cuda/dev/include/device_atomic_functions.h"
+ "D:/cuda/dev/include/device_atomic_functions.hpp"
+ "D:/cuda/dev/include/device_launch_parameters.h"
+ "D:/cuda/dev/include/device_types.h"
+ "D:/cuda/dev/include/driver_functions.h"
+ "D:/cuda/dev/include/driver_types.h"
+ "D:/cuda/dev/include/library_types.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_20_intrinsics.h"
+ "D:/cuda/dev/include/sm_20_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_30_intrinsics.h"
+ "D:/cuda/dev/include/sm_30_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_32_atomic_functions.h"
+ "D:/cuda/dev/include/sm_32_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_32_intrinsics.h"
+ "D:/cuda/dev/include/sm_32_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_35_atomic_functions.h"
+ "D:/cuda/dev/include/sm_35_intrinsics.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_61_intrinsics.h"
+ "D:/cuda/dev/include/sm_61_intrinsics.hpp"
+ "D:/cuda/dev/include/surface_functions.h"
+ "D:/cuda/dev/include/surface_indirect_functions.h"
+ "D:/cuda/dev/include/surface_types.h"
+ "D:/cuda/dev/include/texture_fetch_functions.h"
+ "D:/cuda/dev/include/texture_indirect_functions.h"
+ "D:/cuda/dev/include/texture_types.h"
+ "D:/cuda/dev/include/vector_functions.h"
+ "D:/cuda/dev/include/vector_functions.hpp"
+ "D:/cuda/dev/include/vector_types.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.cu"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.h"
+)
+
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.Debug.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.Debug.cmake
new file mode 100644
index 0000000..0892286
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/cpu.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.MinSizeRel.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.MinSizeRel.cmake
new file mode 100644
index 0000000..0892286
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.MinSizeRel.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/cpu.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.RelWithDebInfo.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.RelWithDebInfo.cmake
new file mode 100644
index 0000000..0892286
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.RelWithDebInfo.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/cpu.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.Release.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.Release.cmake
new file mode 100644
index 0000000..0892286
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/cpu.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.cmake.pre-gen b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..af34064
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/cpu.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.depend b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.depend
new file mode 100644
index 0000000..ca36fd1
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_cpu.cu.obj.depend
@@ -0,0 +1,139 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/algorithm"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cfloat"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/chrono"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/climits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cmath"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/concurrencysal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/crtdefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdarg"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdint"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdlib"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cwchar"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/eh.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/exception"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/initializer_list"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/intrin0.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/iosfwd"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/new"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/ratio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/sal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdarg.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdexcept"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdint.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/type_traits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/use_ansi.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/utility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vadefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_exception.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new_debug.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_string.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xatomic.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xkeycheck.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xmemory"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtgmath.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtimec.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtr1common"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xutility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals_core.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "D:/cuda/dev/include/builtin_types.h"
+ "D:/cuda/dev/include/channel_descriptor.h"
+ "D:/cuda/dev/include/crt/common_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.hpp"
+ "D:/cuda/dev/include/crt/device_functions.h"
+ "D:/cuda/dev/include/crt/device_functions.hpp"
+ "D:/cuda/dev/include/crt/host_config.h"
+ "D:/cuda/dev/include/crt/host_defines.h"
+ "D:/cuda/dev/include/crt/math_functions.h"
+ "D:/cuda/dev/include/crt/math_functions.hpp"
+ "D:/cuda/dev/include/crt/sm_70_rt.h"
+ "D:/cuda/dev/include/crt/sm_70_rt.hpp"
+ "D:/cuda/dev/include/crt/sm_80_rt.h"
+ "D:/cuda/dev/include/crt/sm_80_rt.hpp"
+ "D:/cuda/dev/include/cuda.h"
+ "D:/cuda/dev/include/cuda_device_runtime_api.h"
+ "D:/cuda/dev/include/cuda_runtime.h"
+ "D:/cuda/dev/include/cuda_runtime_api.h"
+ "D:/cuda/dev/include/cuda_surface_types.h"
+ "D:/cuda/dev/include/cuda_texture_types.h"
+ "D:/cuda/dev/include/device_atomic_functions.h"
+ "D:/cuda/dev/include/device_atomic_functions.hpp"
+ "D:/cuda/dev/include/device_launch_parameters.h"
+ "D:/cuda/dev/include/device_types.h"
+ "D:/cuda/dev/include/driver_functions.h"
+ "D:/cuda/dev/include/driver_types.h"
+ "D:/cuda/dev/include/library_types.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_20_intrinsics.h"
+ "D:/cuda/dev/include/sm_20_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_30_intrinsics.h"
+ "D:/cuda/dev/include/sm_30_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_32_atomic_functions.h"
+ "D:/cuda/dev/include/sm_32_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_32_intrinsics.h"
+ "D:/cuda/dev/include/sm_32_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_35_atomic_functions.h"
+ "D:/cuda/dev/include/sm_35_intrinsics.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_61_intrinsics.h"
+ "D:/cuda/dev/include/sm_61_intrinsics.hpp"
+ "D:/cuda/dev/include/surface_functions.h"
+ "D:/cuda/dev/include/surface_indirect_functions.h"
+ "D:/cuda/dev/include/surface_types.h"
+ "D:/cuda/dev/include/texture_fetch_functions.h"
+ "D:/cuda/dev/include/texture_indirect_functions.h"
+ "D:/cuda/dev/include/texture_types.h"
+ "D:/cuda/dev/include/vector_functions.h"
+ "D:/cuda/dev/include/vector_functions.hpp"
+ "D:/cuda/dev/include/vector_types.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/cpu.cu"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/cpu.h"
+)
+
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.Debug.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.Debug.cmake
new file mode 100644
index 0000000..d67e421
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/efficient.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.MinSizeRel.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.MinSizeRel.cmake
new file mode 100644
index 0000000..d67e421
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.MinSizeRel.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/efficient.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.RelWithDebInfo.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.RelWithDebInfo.cmake
new file mode 100644
index 0000000..d67e421
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.RelWithDebInfo.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/efficient.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.Release.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.Release.cmake
new file mode 100644
index 0000000..d67e421
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/efficient.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.cmake.pre-gen b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..b741b35
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/efficient.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.depend b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.depend
new file mode 100644
index 0000000..60c2050
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_efficient.cu.obj.depend
@@ -0,0 +1,139 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/algorithm"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cfloat"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/chrono"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/climits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cmath"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/concurrencysal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/crtdefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdarg"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdint"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdlib"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cwchar"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/eh.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/exception"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/initializer_list"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/intrin0.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/iosfwd"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/new"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/ratio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/sal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdarg.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdexcept"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdint.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/type_traits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/use_ansi.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/utility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vadefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_exception.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new_debug.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_string.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xatomic.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xkeycheck.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xmemory"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtgmath.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtimec.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtr1common"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xutility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals_core.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "D:/cuda/dev/include/builtin_types.h"
+ "D:/cuda/dev/include/channel_descriptor.h"
+ "D:/cuda/dev/include/crt/common_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.hpp"
+ "D:/cuda/dev/include/crt/device_functions.h"
+ "D:/cuda/dev/include/crt/device_functions.hpp"
+ "D:/cuda/dev/include/crt/host_config.h"
+ "D:/cuda/dev/include/crt/host_defines.h"
+ "D:/cuda/dev/include/crt/math_functions.h"
+ "D:/cuda/dev/include/crt/math_functions.hpp"
+ "D:/cuda/dev/include/crt/sm_70_rt.h"
+ "D:/cuda/dev/include/crt/sm_70_rt.hpp"
+ "D:/cuda/dev/include/crt/sm_80_rt.h"
+ "D:/cuda/dev/include/crt/sm_80_rt.hpp"
+ "D:/cuda/dev/include/cuda.h"
+ "D:/cuda/dev/include/cuda_device_runtime_api.h"
+ "D:/cuda/dev/include/cuda_runtime.h"
+ "D:/cuda/dev/include/cuda_runtime_api.h"
+ "D:/cuda/dev/include/cuda_surface_types.h"
+ "D:/cuda/dev/include/cuda_texture_types.h"
+ "D:/cuda/dev/include/device_atomic_functions.h"
+ "D:/cuda/dev/include/device_atomic_functions.hpp"
+ "D:/cuda/dev/include/device_launch_parameters.h"
+ "D:/cuda/dev/include/device_types.h"
+ "D:/cuda/dev/include/driver_functions.h"
+ "D:/cuda/dev/include/driver_types.h"
+ "D:/cuda/dev/include/library_types.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_20_intrinsics.h"
+ "D:/cuda/dev/include/sm_20_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_30_intrinsics.h"
+ "D:/cuda/dev/include/sm_30_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_32_atomic_functions.h"
+ "D:/cuda/dev/include/sm_32_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_32_intrinsics.h"
+ "D:/cuda/dev/include/sm_32_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_35_atomic_functions.h"
+ "D:/cuda/dev/include/sm_35_intrinsics.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_61_intrinsics.h"
+ "D:/cuda/dev/include/sm_61_intrinsics.hpp"
+ "D:/cuda/dev/include/surface_functions.h"
+ "D:/cuda/dev/include/surface_indirect_functions.h"
+ "D:/cuda/dev/include/surface_types.h"
+ "D:/cuda/dev/include/texture_fetch_functions.h"
+ "D:/cuda/dev/include/texture_indirect_functions.h"
+ "D:/cuda/dev/include/texture_types.h"
+ "D:/cuda/dev/include/vector_functions.h"
+ "D:/cuda/dev/include/vector_functions.hpp"
+ "D:/cuda/dev/include/vector_types.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/efficient.cu"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/efficient.h"
+)
+
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.Debug.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.Debug.cmake
new file mode 100644
index 0000000..bdc580d
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.MinSizeRel.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.MinSizeRel.cmake
new file mode 100644
index 0000000..bdc580d
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.MinSizeRel.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.RelWithDebInfo.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.RelWithDebInfo.cmake
new file mode 100644
index 0000000..bdc580d
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.RelWithDebInfo.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.Release.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.Release.cmake
new file mode 100644
index 0000000..bdc580d
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.cmake.pre-gen b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..a1be53b
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.depend b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.depend
new file mode 100644
index 0000000..efacf25
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_naive.cu.obj.depend
@@ -0,0 +1,141 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/algorithm"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cfloat"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/chrono"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/climits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cmath"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/concurrencysal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/crtdefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdarg"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdint"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdlib"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cwchar"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/deque"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/eh.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/exception"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/initializer_list"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/intrin0.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/iosfwd"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/new"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/ratio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/sal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stack"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdarg.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdexcept"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdint.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/type_traits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/use_ansi.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/utility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vadefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_exception.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new_debug.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_string.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xatomic.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xkeycheck.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xmemory"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtgmath.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtimec.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtr1common"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xutility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals_core.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "D:/cuda/dev/include/builtin_types.h"
+ "D:/cuda/dev/include/channel_descriptor.h"
+ "D:/cuda/dev/include/crt/common_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.hpp"
+ "D:/cuda/dev/include/crt/device_functions.h"
+ "D:/cuda/dev/include/crt/device_functions.hpp"
+ "D:/cuda/dev/include/crt/host_config.h"
+ "D:/cuda/dev/include/crt/host_defines.h"
+ "D:/cuda/dev/include/crt/math_functions.h"
+ "D:/cuda/dev/include/crt/math_functions.hpp"
+ "D:/cuda/dev/include/crt/sm_70_rt.h"
+ "D:/cuda/dev/include/crt/sm_70_rt.hpp"
+ "D:/cuda/dev/include/crt/sm_80_rt.h"
+ "D:/cuda/dev/include/crt/sm_80_rt.hpp"
+ "D:/cuda/dev/include/cuda.h"
+ "D:/cuda/dev/include/cuda_device_runtime_api.h"
+ "D:/cuda/dev/include/cuda_runtime.h"
+ "D:/cuda/dev/include/cuda_runtime_api.h"
+ "D:/cuda/dev/include/cuda_surface_types.h"
+ "D:/cuda/dev/include/cuda_texture_types.h"
+ "D:/cuda/dev/include/device_atomic_functions.h"
+ "D:/cuda/dev/include/device_atomic_functions.hpp"
+ "D:/cuda/dev/include/device_launch_parameters.h"
+ "D:/cuda/dev/include/device_types.h"
+ "D:/cuda/dev/include/driver_functions.h"
+ "D:/cuda/dev/include/driver_types.h"
+ "D:/cuda/dev/include/library_types.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_20_intrinsics.h"
+ "D:/cuda/dev/include/sm_20_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_30_intrinsics.h"
+ "D:/cuda/dev/include/sm_30_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_32_atomic_functions.h"
+ "D:/cuda/dev/include/sm_32_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_32_intrinsics.h"
+ "D:/cuda/dev/include/sm_32_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_35_atomic_functions.h"
+ "D:/cuda/dev/include/sm_35_intrinsics.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_61_intrinsics.h"
+ "D:/cuda/dev/include/sm_61_intrinsics.hpp"
+ "D:/cuda/dev/include/surface_functions.h"
+ "D:/cuda/dev/include/surface_indirect_functions.h"
+ "D:/cuda/dev/include/surface_types.h"
+ "D:/cuda/dev/include/texture_fetch_functions.h"
+ "D:/cuda/dev/include/texture_indirect_functions.h"
+ "D:/cuda/dev/include/texture_types.h"
+ "D:/cuda/dev/include/vector_functions.h"
+ "D:/cuda/dev/include/vector_functions.hpp"
+ "D:/cuda/dev/include/vector_types.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.h"
+)
+
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.Debug.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.Debug.cmake
new file mode 100644
index 0000000..799c39a
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/thrust.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.MinSizeRel.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.MinSizeRel.cmake
new file mode 100644
index 0000000..799c39a
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.MinSizeRel.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/thrust.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.RelWithDebInfo.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.RelWithDebInfo.cmake
new file mode 100644
index 0000000..799c39a
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.RelWithDebInfo.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/thrust.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.Release.cmake b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.Release.cmake
new file mode 100644
index 0000000..799c39a
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/thrust.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;D:/cuda/dev/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[CUDA_COMPUTE_75]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.cmake.pre-gen b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..e02e09d
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe") # path
+set(source_file "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/thrust.cu") # path
+set(NVCC_generated_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.depend") # path
+set(CUDA_make2cmake "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)") # path
+set(generated_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj") # path
+set(generated_cubin_file_internal "E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "D:/cuda/dev/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS -gencode arch=compute_75,code=sm_75 ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -g -G ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[D:/cuda/dev/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 11.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.depend b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.depend
new file mode 100644
index 0000000..098c6d0
--- /dev/null
+++ b/build/stream_compaction/CMakeFiles/stream_compaction.dir/stream_compaction_generated_thrust.cu.obj.depend
@@ -0,0 +1,743 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/algorithm"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/array"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/atomic"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cassert"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cctype"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cerrno"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cfloat"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/chrono"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/climits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cmath"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/concurrencysal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/crtdefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdarg"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdint"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstdlib"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/cwchar"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/eh.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/exception"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/functional"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/initializer_list"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/intrin0.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/ios"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/iosfwd"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/iostream"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/istream"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/iterator"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/limits.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/memory"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/new"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/ostream"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/ratio"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/sal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdarg.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdexcept"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/stdint.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/streambuf"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/string"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/system_error"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/tuple"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/type_traits"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/typeinfo"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/use_ansi.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/utility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vadefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_exception.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_new_debug.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_string.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vcruntime_typeinfo.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/vector"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xatomic.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xcall_once.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xerrc.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xfacet"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xiosbase"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xkeycheck.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xlocale"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xlocinfo"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xlocinfo.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xlocnum"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xmemory"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtgmath.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtimec.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xtr1common"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/xutility"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/include/yvals_core.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "D:/cuda/dev/include/builtin_types.h"
+ "D:/cuda/dev/include/channel_descriptor.h"
+ "D:/cuda/dev/include/crt/common_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.h"
+ "D:/cuda/dev/include/crt/device_double_functions.hpp"
+ "D:/cuda/dev/include/crt/device_functions.h"
+ "D:/cuda/dev/include/crt/device_functions.hpp"
+ "D:/cuda/dev/include/crt/host_config.h"
+ "D:/cuda/dev/include/crt/host_defines.h"
+ "D:/cuda/dev/include/crt/math_functions.h"
+ "D:/cuda/dev/include/crt/math_functions.hpp"
+ "D:/cuda/dev/include/crt/sm_70_rt.h"
+ "D:/cuda/dev/include/crt/sm_70_rt.hpp"
+ "D:/cuda/dev/include/crt/sm_80_rt.h"
+ "D:/cuda/dev/include/crt/sm_80_rt.hpp"
+ "D:/cuda/dev/include/cub/agent/agent_radix_sort_downsweep.cuh"
+ "D:/cuda/dev/include/cub/agent/agent_radix_sort_upsweep.cuh"
+ "D:/cuda/dev/include/cub/agent/agent_reduce.cuh"
+ "D:/cuda/dev/include/cub/agent/agent_reduce_by_key.cuh"
+ "D:/cuda/dev/include/cub/agent/agent_scan.cuh"
+ "D:/cuda/dev/include/cub/agent/agent_select_if.cuh"
+ "D:/cuda/dev/include/cub/agent/single_pass_scan_operators.cuh"
+ "D:/cuda/dev/include/cub/block/block_adjacent_difference.cuh"
+ "D:/cuda/dev/include/cub/block/block_discontinuity.cuh"
+ "D:/cuda/dev/include/cub/block/block_exchange.cuh"
+ "D:/cuda/dev/include/cub/block/block_load.cuh"
+ "D:/cuda/dev/include/cub/block/block_radix_rank.cuh"
+ "D:/cuda/dev/include/cub/block/block_radix_sort.cuh"
+ "D:/cuda/dev/include/cub/block/block_raking_layout.cuh"
+ "D:/cuda/dev/include/cub/block/block_reduce.cuh"
+ "D:/cuda/dev/include/cub/block/block_scan.cuh"
+ "D:/cuda/dev/include/cub/block/block_store.cuh"
+ "D:/cuda/dev/include/cub/block/specializations/block_reduce_raking.cuh"
+ "D:/cuda/dev/include/cub/block/specializations/block_reduce_raking_commutative_only.cuh"
+ "D:/cuda/dev/include/cub/block/specializations/block_reduce_warp_reductions.cuh"
+ "D:/cuda/dev/include/cub/block/specializations/block_scan_raking.cuh"
+ "D:/cuda/dev/include/cub/block/specializations/block_scan_warp_scans.cuh"
+ "D:/cuda/dev/include/cub/config.cuh"
+ "D:/cuda/dev/include/cub/device/device_partition.cuh"
+ "D:/cuda/dev/include/cub/device/device_radix_sort.cuh"
+ "D:/cuda/dev/include/cub/device/device_reduce.cuh"
+ "D:/cuda/dev/include/cub/device/device_scan.cuh"
+ "D:/cuda/dev/include/cub/device/device_select.cuh"
+ "D:/cuda/dev/include/cub/device/dispatch/dispatch_radix_sort.cuh"
+ "D:/cuda/dev/include/cub/device/dispatch/dispatch_reduce.cuh"
+ "D:/cuda/dev/include/cub/device/dispatch/dispatch_reduce_by_key.cuh"
+ "D:/cuda/dev/include/cub/device/dispatch/dispatch_scan.cuh"
+ "D:/cuda/dev/include/cub/device/dispatch/dispatch_select_if.cuh"
+ "D:/cuda/dev/include/cub/grid/grid_even_share.cuh"
+ "D:/cuda/dev/include/cub/grid/grid_mapping.cuh"
+ "D:/cuda/dev/include/cub/grid/grid_queue.cuh"
+ "D:/cuda/dev/include/cub/iterator/arg_index_input_iterator.cuh"
+ "D:/cuda/dev/include/cub/iterator/cache_modified_input_iterator.cuh"
+ "D:/cuda/dev/include/cub/iterator/constant_input_iterator.cuh"
+ "D:/cuda/dev/include/cub/thread/thread_load.cuh"
+ "D:/cuda/dev/include/cub/thread/thread_operators.cuh"
+ "D:/cuda/dev/include/cub/thread/thread_reduce.cuh"
+ "D:/cuda/dev/include/cub/thread/thread_scan.cuh"
+ "D:/cuda/dev/include/cub/thread/thread_store.cuh"
+ "D:/cuda/dev/include/cub/util_arch.cuh"
+ "D:/cuda/dev/include/cub/util_compiler.cuh"
+ "D:/cuda/dev/include/cub/util_cpp_dialect.cuh"
+ "D:/cuda/dev/include/cub/util_debug.cuh"
+ "D:/cuda/dev/include/cub/util_deprecated.cuh"
+ "D:/cuda/dev/include/cub/util_device.cuh"
+ "D:/cuda/dev/include/cub/util_macro.cuh"
+ "D:/cuda/dev/include/cub/util_namespace.cuh"
+ "D:/cuda/dev/include/cub/util_ptx.cuh"
+ "D:/cuda/dev/include/cub/util_type.cuh"
+ "D:/cuda/dev/include/cub/version.cuh"
+ "D:/cuda/dev/include/cub/warp/specializations/warp_reduce_shfl.cuh"
+ "D:/cuda/dev/include/cub/warp/specializations/warp_reduce_smem.cuh"
+ "D:/cuda/dev/include/cub/warp/specializations/warp_scan_shfl.cuh"
+ "D:/cuda/dev/include/cub/warp/specializations/warp_scan_smem.cuh"
+ "D:/cuda/dev/include/cub/warp/warp_reduce.cuh"
+ "D:/cuda/dev/include/cub/warp/warp_scan.cuh"
+ "D:/cuda/dev/include/cuda.h"
+ "D:/cuda/dev/include/cuda_device_runtime_api.h"
+ "D:/cuda/dev/include/cuda_fp16.h"
+ "D:/cuda/dev/include/cuda_fp16.hpp"
+ "D:/cuda/dev/include/cuda_occupancy.h"
+ "D:/cuda/dev/include/cuda_runtime.h"
+ "D:/cuda/dev/include/cuda_runtime_api.h"
+ "D:/cuda/dev/include/cuda_surface_types.h"
+ "D:/cuda/dev/include/cuda_texture_types.h"
+ "D:/cuda/dev/include/device_atomic_functions.h"
+ "D:/cuda/dev/include/device_atomic_functions.hpp"
+ "D:/cuda/dev/include/device_launch_parameters.h"
+ "D:/cuda/dev/include/device_types.h"
+ "D:/cuda/dev/include/driver_functions.h"
+ "D:/cuda/dev/include/driver_types.h"
+ "D:/cuda/dev/include/library_types.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.h"
+ "D:/cuda/dev/include/sm_20_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_20_intrinsics.h"
+ "D:/cuda/dev/include/sm_20_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_30_intrinsics.h"
+ "D:/cuda/dev/include/sm_30_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_32_atomic_functions.h"
+ "D:/cuda/dev/include/sm_32_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_32_intrinsics.h"
+ "D:/cuda/dev/include/sm_32_intrinsics.hpp"
+ "D:/cuda/dev/include/sm_35_atomic_functions.h"
+ "D:/cuda/dev/include/sm_35_intrinsics.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.h"
+ "D:/cuda/dev/include/sm_60_atomic_functions.hpp"
+ "D:/cuda/dev/include/sm_61_intrinsics.h"
+ "D:/cuda/dev/include/sm_61_intrinsics.hpp"
+ "D:/cuda/dev/include/surface_functions.h"
+ "D:/cuda/dev/include/surface_indirect_functions.h"
+ "D:/cuda/dev/include/surface_types.h"
+ "D:/cuda/dev/include/texture_fetch_functions.h"
+ "D:/cuda/dev/include/texture_indirect_functions.h"
+ "D:/cuda/dev/include/texture_types.h"
+ "D:/cuda/dev/include/thrust/adjacent_difference.h"
+ "D:/cuda/dev/include/thrust/advance.h"
+ "D:/cuda/dev/include/thrust/copy.h"
+ "D:/cuda/dev/include/thrust/count.h"
+ "D:/cuda/dev/include/thrust/detail/adjacent_difference.inl"
+ "D:/cuda/dev/include/thrust/detail/advance.inl"
+ "D:/cuda/dev/include/thrust/detail/alignment.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/allocator_traits.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/allocator_traits.inl"
+ "D:/cuda/dev/include/thrust/detail/allocator/copy_construct_range.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/copy_construct_range.inl"
+ "D:/cuda/dev/include/thrust/detail/allocator/default_construct_range.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/default_construct_range.inl"
+ "D:/cuda/dev/include/thrust/detail/allocator/destroy_range.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/destroy_range.inl"
+ "D:/cuda/dev/include/thrust/detail/allocator/fill_construct_range.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/fill_construct_range.inl"
+ "D:/cuda/dev/include/thrust/detail/allocator/no_throw_allocator.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/tagged_allocator.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/tagged_allocator.inl"
+ "D:/cuda/dev/include/thrust/detail/allocator/temporary_allocator.h"
+ "D:/cuda/dev/include/thrust/detail/allocator/temporary_allocator.inl"
+ "D:/cuda/dev/include/thrust/detail/allocator_aware_execution_policy.h"
+ "D:/cuda/dev/include/thrust/detail/config.h"
+ "D:/cuda/dev/include/thrust/detail/config/compiler.h"
+ "D:/cuda/dev/include/thrust/detail/config/config.h"
+ "D:/cuda/dev/include/thrust/detail/config/cpp_compatibility.h"
+ "D:/cuda/dev/include/thrust/detail/config/cpp_dialect.h"
+ "D:/cuda/dev/include/thrust/detail/config/debug.h"
+ "D:/cuda/dev/include/thrust/detail/config/deprecated.h"
+ "D:/cuda/dev/include/thrust/detail/config/device_system.h"
+ "D:/cuda/dev/include/thrust/detail/config/exec_check_disable.h"
+ "D:/cuda/dev/include/thrust/detail/config/forceinline.h"
+ "D:/cuda/dev/include/thrust/detail/config/global_workarounds.h"
+ "D:/cuda/dev/include/thrust/detail/config/host_device.h"
+ "D:/cuda/dev/include/thrust/detail/config/host_system.h"
+ "D:/cuda/dev/include/thrust/detail/config/simple_defines.h"
+ "D:/cuda/dev/include/thrust/detail/contiguous_storage.h"
+ "D:/cuda/dev/include/thrust/detail/contiguous_storage.inl"
+ "D:/cuda/dev/include/thrust/detail/copy.h"
+ "D:/cuda/dev/include/thrust/detail/copy.inl"
+ "D:/cuda/dev/include/thrust/detail/copy_if.h"
+ "D:/cuda/dev/include/thrust/detail/copy_if.inl"
+ "D:/cuda/dev/include/thrust/detail/count.inl"
+ "D:/cuda/dev/include/thrust/detail/cpp11_required.h"
+ "D:/cuda/dev/include/thrust/detail/cstdint.h"
+ "D:/cuda/dev/include/thrust/detail/dependencies_aware_execution_policy.h"
+ "D:/cuda/dev/include/thrust/detail/device_ptr.inl"
+ "D:/cuda/dev/include/thrust/detail/device_reference.inl"
+ "D:/cuda/dev/include/thrust/detail/device_vector.inl"
+ "D:/cuda/dev/include/thrust/detail/distance.inl"
+ "D:/cuda/dev/include/thrust/detail/equal.inl"
+ "D:/cuda/dev/include/thrust/detail/execute_with_allocator.h"
+ "D:/cuda/dev/include/thrust/detail/execute_with_allocator_fwd.h"
+ "D:/cuda/dev/include/thrust/detail/execute_with_dependencies.h"
+ "D:/cuda/dev/include/thrust/detail/execution_policy.h"
+ "D:/cuda/dev/include/thrust/detail/extrema.inl"
+ "D:/cuda/dev/include/thrust/detail/fill.inl"
+ "D:/cuda/dev/include/thrust/detail/find.inl"
+ "D:/cuda/dev/include/thrust/detail/for_each.inl"
+ "D:/cuda/dev/include/thrust/detail/function.h"
+ "D:/cuda/dev/include/thrust/detail/functional.inl"
+ "D:/cuda/dev/include/thrust/detail/functional/actor.h"
+ "D:/cuda/dev/include/thrust/detail/functional/actor.inl"
+ "D:/cuda/dev/include/thrust/detail/functional/argument.h"
+ "D:/cuda/dev/include/thrust/detail/functional/composite.h"
+ "D:/cuda/dev/include/thrust/detail/functional/operators.h"
+ "D:/cuda/dev/include/thrust/detail/functional/operators/arithmetic_operators.h"
+ "D:/cuda/dev/include/thrust/detail/functional/operators/assignment_operator.h"
+ "D:/cuda/dev/include/thrust/detail/functional/operators/bitwise_operators.h"
+ "D:/cuda/dev/include/thrust/detail/functional/operators/compound_assignment_operators.h"
+ "D:/cuda/dev/include/thrust/detail/functional/operators/logical_operators.h"
+ "D:/cuda/dev/include/thrust/detail/functional/operators/operator_adaptors.h"
+ "D:/cuda/dev/include/thrust/detail/functional/operators/relational_operators.h"
+ "D:/cuda/dev/include/thrust/detail/functional/placeholder.h"
+ "D:/cuda/dev/include/thrust/detail/functional/value.h"
+ "D:/cuda/dev/include/thrust/detail/generate.inl"
+ "D:/cuda/dev/include/thrust/detail/get_iterator_value.h"
+ "D:/cuda/dev/include/thrust/detail/host_vector.inl"
+ "D:/cuda/dev/include/thrust/detail/integer_math.h"
+ "D:/cuda/dev/include/thrust/detail/integer_traits.h"
+ "D:/cuda/dev/include/thrust/detail/internal_functional.h"
+ "D:/cuda/dev/include/thrust/detail/malloc_and_free.h"
+ "D:/cuda/dev/include/thrust/detail/merge.inl"
+ "D:/cuda/dev/include/thrust/detail/minmax.h"
+ "D:/cuda/dev/include/thrust/detail/mismatch.inl"
+ "D:/cuda/dev/include/thrust/detail/mpl/math.h"
+ "D:/cuda/dev/include/thrust/detail/numeric_traits.h"
+ "D:/cuda/dev/include/thrust/detail/overlapped_copy.h"
+ "D:/cuda/dev/include/thrust/detail/pair.inl"
+ "D:/cuda/dev/include/thrust/detail/partition.inl"
+ "D:/cuda/dev/include/thrust/detail/pointer.h"
+ "D:/cuda/dev/include/thrust/detail/pointer.inl"
+ "D:/cuda/dev/include/thrust/detail/preprocessor.h"
+ "D:/cuda/dev/include/thrust/detail/range/head_flags.h"
+ "D:/cuda/dev/include/thrust/detail/raw_pointer_cast.h"
+ "D:/cuda/dev/include/thrust/detail/raw_reference_cast.h"
+ "D:/cuda/dev/include/thrust/detail/reduce.inl"
+ "D:/cuda/dev/include/thrust/detail/reference.h"
+ "D:/cuda/dev/include/thrust/detail/reference.inl"
+ "D:/cuda/dev/include/thrust/detail/reference_forward_declaration.h"
+ "D:/cuda/dev/include/thrust/detail/remove.inl"
+ "D:/cuda/dev/include/thrust/detail/replace.inl"
+ "D:/cuda/dev/include/thrust/detail/reverse.inl"
+ "D:/cuda/dev/include/thrust/detail/scan.inl"
+ "D:/cuda/dev/include/thrust/detail/scatter.inl"
+ "D:/cuda/dev/include/thrust/detail/seq.h"
+ "D:/cuda/dev/include/thrust/detail/sequence.inl"
+ "D:/cuda/dev/include/thrust/detail/set_operations.inl"
+ "D:/cuda/dev/include/thrust/detail/sort.inl"
+ "D:/cuda/dev/include/thrust/detail/static_assert.h"
+ "D:/cuda/dev/include/thrust/detail/swap.h"
+ "D:/cuda/dev/include/thrust/detail/swap.inl"
+ "D:/cuda/dev/include/thrust/detail/swap_ranges.inl"
+ "D:/cuda/dev/include/thrust/detail/tabulate.inl"
+ "D:/cuda/dev/include/thrust/detail/temporary_array.h"
+ "D:/cuda/dev/include/thrust/detail/temporary_array.inl"
+ "D:/cuda/dev/include/thrust/detail/temporary_buffer.h"
+ "D:/cuda/dev/include/thrust/detail/transform.inl"
+ "D:/cuda/dev/include/thrust/detail/transform_reduce.inl"
+ "D:/cuda/dev/include/thrust/detail/trivial_sequence.h"
+ "D:/cuda/dev/include/thrust/detail/tuple.inl"
+ "D:/cuda/dev/include/thrust/detail/tuple_meta_transform.h"
+ "D:/cuda/dev/include/thrust/detail/tuple_transform.h"
+ "D:/cuda/dev/include/thrust/detail/type_deduction.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/algorithm/intermediate_type_from_function_and_iterators.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/function_traits.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/has_member_function.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/has_nested_type.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/has_trivial_assign.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/is_call_possible.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/is_metafunction_defined.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/iterator/is_output_iterator.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/minimum_type.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/pointer_traits.h"
+ "D:/cuda/dev/include/thrust/detail/type_traits/result_of_adaptable_function.h"
+ "D:/cuda/dev/include/thrust/detail/uninitialized_fill.inl"
+ "D:/cuda/dev/include/thrust/detail/unique.inl"
+ "D:/cuda/dev/include/thrust/detail/use_default.h"
+ "D:/cuda/dev/include/thrust/detail/vector_base.h"
+ "D:/cuda/dev/include/thrust/detail/vector_base.inl"
+ "D:/cuda/dev/include/thrust/device_allocator.h"
+ "D:/cuda/dev/include/thrust/device_ptr.h"
+ "D:/cuda/dev/include/thrust/device_reference.h"
+ "D:/cuda/dev/include/thrust/device_vector.h"
+ "D:/cuda/dev/include/thrust/distance.h"
+ "D:/cuda/dev/include/thrust/equal.h"
+ "D:/cuda/dev/include/thrust/execution_policy.h"
+ "D:/cuda/dev/include/thrust/extrema.h"
+ "D:/cuda/dev/include/thrust/fill.h"
+ "D:/cuda/dev/include/thrust/find.h"
+ "D:/cuda/dev/include/thrust/for_each.h"
+ "D:/cuda/dev/include/thrust/functional.h"
+ "D:/cuda/dev/include/thrust/generate.h"
+ "D:/cuda/dev/include/thrust/host_vector.h"
+ "D:/cuda/dev/include/thrust/iterator/constant_iterator.h"
+ "D:/cuda/dev/include/thrust/iterator/counting_iterator.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/any_assign.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/any_system_tag.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/constant_iterator_base.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/counting_iterator.inl"
+ "D:/cuda/dev/include/thrust/iterator/detail/device_system_tag.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/distance_from_result.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/host_system_tag.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/is_iterator_category.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/iterator_adaptor_base.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/iterator_category_to_system.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/iterator_category_to_traversal.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/iterator_category_with_system_and_traversal.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/iterator_facade_category.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/iterator_traits.inl"
+ "D:/cuda/dev/include/thrust/iterator/detail/iterator_traversal_tags.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/minimum_category.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/minimum_system.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/normal_iterator.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/permutation_iterator_base.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/reverse_iterator.inl"
+ "D:/cuda/dev/include/thrust/iterator/detail/reverse_iterator_base.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/tagged_iterator.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/transform_iterator.inl"
+ "D:/cuda/dev/include/thrust/iterator/detail/tuple_of_iterator_references.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/universal_categories.h"
+ "D:/cuda/dev/include/thrust/iterator/detail/zip_iterator.inl"
+ "D:/cuda/dev/include/thrust/iterator/detail/zip_iterator_base.h"
+ "D:/cuda/dev/include/thrust/iterator/iterator_adaptor.h"
+ "D:/cuda/dev/include/thrust/iterator/iterator_categories.h"
+ "D:/cuda/dev/include/thrust/iterator/iterator_facade.h"
+ "D:/cuda/dev/include/thrust/iterator/iterator_traits.h"
+ "D:/cuda/dev/include/thrust/iterator/permutation_iterator.h"
+ "D:/cuda/dev/include/thrust/iterator/reverse_iterator.h"
+ "D:/cuda/dev/include/thrust/iterator/transform_iterator.h"
+ "D:/cuda/dev/include/thrust/iterator/zip_iterator.h"
+ "D:/cuda/dev/include/thrust/memory.h"
+ "D:/cuda/dev/include/thrust/memory/detail/device_system_resource.h"
+ "D:/cuda/dev/include/thrust/memory/detail/host_system_resource.h"
+ "D:/cuda/dev/include/thrust/merge.h"
+ "D:/cuda/dev/include/thrust/mismatch.h"
+ "D:/cuda/dev/include/thrust/mr/allocator.h"
+ "D:/cuda/dev/include/thrust/mr/detail/config.h"
+ "D:/cuda/dev/include/thrust/mr/fancy_pointer_resource.h"
+ "D:/cuda/dev/include/thrust/mr/memory_resource.h"
+ "D:/cuda/dev/include/thrust/mr/new.h"
+ "D:/cuda/dev/include/thrust/mr/polymorphic_adaptor.h"
+ "D:/cuda/dev/include/thrust/mr/validator.h"
+ "D:/cuda/dev/include/thrust/pair.h"
+ "D:/cuda/dev/include/thrust/partition.h"
+ "D:/cuda/dev/include/thrust/reduce.h"
+ "D:/cuda/dev/include/thrust/remove.h"
+ "D:/cuda/dev/include/thrust/replace.h"
+ "D:/cuda/dev/include/thrust/reverse.h"
+ "D:/cuda/dev/include/thrust/scan.h"
+ "D:/cuda/dev/include/thrust/scatter.h"
+ "D:/cuda/dev/include/thrust/sequence.h"
+ "D:/cuda/dev/include/thrust/set_operations.h"
+ "D:/cuda/dev/include/thrust/sort.h"
+ "D:/cuda/dev/include/thrust/swap.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/adjacent_difference.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/assign_value.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/binary_search.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/copy.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/copy_if.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/count.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/equal.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/execution_policy.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/extrema.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/fill.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/find.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/for_each.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/gather.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/generate.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/get_value.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/inner_product.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/iter_swap.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/logical.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/malloc_and_free.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/merge.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/mismatch.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/par.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/partition.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/pointer.inl"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/reduce.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/reduce_by_key.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/remove.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/replace.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/reverse.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/scan.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/scan_by_key.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/scatter.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/sequence.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/set_operations.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/sort.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/swap_ranges.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/tabulate.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/temporary_buffer.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/transform.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/transform_reduce.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/transform_scan.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/uninitialized_copy.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/uninitialized_fill.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/unique.h"
+ "D:/cuda/dev/include/thrust/system/cpp/detail/unique_by_key.h"
+ "D:/cuda/dev/include/thrust/system/cpp/execution_policy.h"
+ "D:/cuda/dev/include/thrust/system/cpp/memory_resource.h"
+ "D:/cuda/dev/include/thrust/system/cpp/pointer.h"
+ "D:/cuda/dev/include/thrust/system/cuda/config.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/adjacent_difference.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/assign_value.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/binary_search.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/copy.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/copy_if.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/core/agent_launcher.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/core/alignment.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/core/triple_chevron_launch.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/core/util.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/count.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/cross_system.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/dispatch.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/equal.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/error.inl"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/execution_policy.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/extrema.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/fill.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/find.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/for_each.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/gather.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/generate.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/get_value.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/guarded_cuda_runtime_api.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/guarded_driver_types.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/inner_product.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/internal/copy_cross_system.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/internal/copy_device_to_device.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/iter_swap.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/make_unsigned_special.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/malloc_and_free.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/managed_memory_pointer.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/merge.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/mismatch.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/par.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/par_to_seq.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/parallel_for.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/partition.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/pointer.inl"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/reduce.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/reduce_by_key.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/remove.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/replace.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/reverse.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/scan.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/scan_by_key.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/scatter.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/sequence.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/set_operations.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/sort.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/swap_ranges.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/tabulate.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/temporary_buffer.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/terminate.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/transform.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/transform_reduce.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/transform_scan.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/uninitialized_copy.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/uninitialized_fill.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/unique.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/unique_by_key.h"
+ "D:/cuda/dev/include/thrust/system/cuda/detail/util.h"
+ "D:/cuda/dev/include/thrust/system/cuda/error.h"
+ "D:/cuda/dev/include/thrust/system/cuda/execution_policy.h"
+ "D:/cuda/dev/include/thrust/system/cuda/memory_resource.h"
+ "D:/cuda/dev/include/thrust/system/cuda/pointer.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/adjacent_difference.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/assign_value.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/copy.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/copy_if.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/count.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/equal.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/extrema.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/fill.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/find.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/for_each.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/generate.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/get_value.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/iter_swap.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/malloc_and_free.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/merge.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/mismatch.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/partition.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/reduce.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/reduce_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/remove.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/replace.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/reverse.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/scan.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/scan_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/scatter.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/sequence.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/set_operations.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/sort.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/swap_ranges.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/tabulate.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/temporary_buffer.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/transform.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/transform_reduce.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/uninitialized_fill.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/unique.h"
+ "D:/cuda/dev/include/thrust/system/detail/adl/unique_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/bad_alloc.h"
+ "D:/cuda/dev/include/thrust/system/detail/errno.h"
+ "D:/cuda/dev/include/thrust/system/detail/error_category.inl"
+ "D:/cuda/dev/include/thrust/system/detail/error_code.inl"
+ "D:/cuda/dev/include/thrust/system/detail/error_condition.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/adjacent_difference.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/adjacent_difference.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/advance.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/advance.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/copy.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/copy.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/copy_if.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/copy_if.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/count.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/count.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/distance.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/distance.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/equal.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/equal.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/extrema.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/extrema.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/fill.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/find.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/find.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/for_each.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/generate.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/generate.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/memory.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/memory.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/merge.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/merge.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/mismatch.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/mismatch.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/partition.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/partition.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/reduce.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/reduce.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/reduce_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/reduce_by_key.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/remove.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/remove.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/replace.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/replace.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/reverse.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/reverse.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/scan.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/scan.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/scan_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/scan_by_key.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/scatter.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/scatter.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/select_system.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/select_system.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/select_system_exists.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/sequence.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/sequence.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/set_operations.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/set_operations.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/sort.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/sort.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/swap_ranges.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/swap_ranges.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/tabulate.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/tabulate.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/tag.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/temporary_buffer.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/temporary_buffer.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/transform.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/transform.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/transform_reduce.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/transform_reduce.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/uninitialized_fill.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/uninitialized_fill.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/unique.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/unique.inl"
+ "D:/cuda/dev/include/thrust/system/detail/generic/unique_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/generic/unique_by_key.inl"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/adjacent_difference.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/assign_value.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/binary_search.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/copy.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/copy.inl"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/copy_backward.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/copy_if.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/count.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/equal.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/execution_policy.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/extrema.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/fill.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/find.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/for_each.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/general_copy.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/generate.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/get_value.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/insertion_sort.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/iter_swap.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/malloc_and_free.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/merge.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/merge.inl"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/mismatch.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/partition.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/reduce.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/reduce_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/remove.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/replace.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/reverse.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/scan.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/scan_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/scatter.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/sequence.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/set_operations.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/sort.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/sort.inl"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/stable_merge_sort.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/stable_merge_sort.inl"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/stable_primitive_sort.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/stable_primitive_sort.inl"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/stable_radix_sort.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/stable_radix_sort.inl"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/swap_ranges.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/tabulate.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/temporary_buffer.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/transform.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/transform_reduce.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/trivial_copy.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/uninitialized_fill.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/unique.h"
+ "D:/cuda/dev/include/thrust/system/detail/sequential/unique_by_key.h"
+ "D:/cuda/dev/include/thrust/system/detail/system_error.inl"
+ "D:/cuda/dev/include/thrust/system/error_code.h"
+ "D:/cuda/dev/include/thrust/system/system_error.h"
+ "D:/cuda/dev/include/thrust/system_error.h"
+ "D:/cuda/dev/include/thrust/tabulate.h"
+ "D:/cuda/dev/include/thrust/transform.h"
+ "D:/cuda/dev/include/thrust/transform_reduce.h"
+ "D:/cuda/dev/include/thrust/tuple.h"
+ "D:/cuda/dev/include/thrust/type_traits/is_contiguous_iterator.h"
+ "D:/cuda/dev/include/thrust/type_traits/is_trivially_relocatable.h"
+ "D:/cuda/dev/include/thrust/type_traits/remove_cvref.h"
+ "D:/cuda/dev/include/thrust/type_traits/void_t.h"
+ "D:/cuda/dev/include/thrust/uninitialized_fill.h"
+ "D:/cuda/dev/include/thrust/unique.h"
+ "D:/cuda/dev/include/thrust/version.h"
+ "D:/cuda/dev/include/vector_functions.h"
+ "D:/cuda/dev/include/vector_functions.hpp"
+ "D:/cuda/dev/include/vector_types.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/common.h"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/thrust.cu"
+ "E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/thrust.h"
+)
+
diff --git a/build/stream_compaction/CMakeFiles/stream_compaction.dir/vc140.pdb b/build/stream_compaction/CMakeFiles/stream_compaction.dir/vc140.pdb
new file mode 100644
index 0000000..11b950f
Binary files /dev/null and b/build/stream_compaction/CMakeFiles/stream_compaction.dir/vc140.pdb differ
diff --git a/build/stream_compaction/cmake_install.cmake b/build/stream_compaction/cmake_install.cmake
new file mode 100644
index 0000000..48e756f
--- /dev/null
+++ b/build/stream_compaction/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/cis565_stream_compaction_test")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.command.1.tlog b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.command.1.tlog
new file mode 100644
index 0000000..7b8856b
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.command.1.tlog
@@ -0,0 +1,90 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Debug -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_common.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_common.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CPU.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Debug -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_cpu.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_cpu.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\EFFICIENT.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Debug -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_efficient.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_efficient.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\NAIVE.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Debug -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_naive.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_naive.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\THRUST.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Debug -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_thrust.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_thrust.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CMAKELISTS.TXT
+setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.read.1.tlog b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.read.1.tlog
new file mode 100644
index 0000000..305014e
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.read.1.tlog
@@ -0,0 +1,1297 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ.DEBUG.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CPU.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CPU.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ.DEBUG.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\EFFICIENT.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\EFFICIENT.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ.DEBUG.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\NAIVE.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\DEQUE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STACK
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\NAIVE.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ.DEBUG.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\THRUST.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ARRAY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ATOMIC
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CASSERT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CCTYPE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CERRNO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\FUNCTIONAL
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSTREAM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ISTREAM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ITERATOR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\MEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\OSTREAM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STREAMBUF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SYSTEM_ERROR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TUPLE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPEINFO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_TYPEINFO.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VECTOR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XCALL_ONCE.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XERRC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XFACET
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XIOSBASE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XLOCALE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XLOCINFO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XLOCINFO.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XLOCNUM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\LOCALE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_RADIX_SORT_DOWNSWEEP.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_RADIX_SORT_UPSWEEP.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_REDUCE_BY_KEY.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_SELECT_IF.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\SINGLE_PASS_SCAN_OPERATORS.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_ADJACENT_DIFFERENCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_DISCONTINUITY.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_EXCHANGE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_LOAD.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_RADIX_RANK.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_RADIX_SORT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_RAKING_LAYOUT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_STORE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_REDUCE_RAKING.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_REDUCE_RAKING_COMMUTATIVE_ONLY.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_REDUCE_WARP_REDUCTIONS.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_SCAN_RAKING.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_SCAN_WARP_SCANS.CUH
+D:\CUDA\DEV\INCLUDE\CUB\CONFIG.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_PARTITION.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_RADIX_SORT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_SELECT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_RADIX_SORT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_REDUCE_BY_KEY.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_SELECT_IF.CUH
+D:\CUDA\DEV\INCLUDE\CUB\GRID\GRID_EVEN_SHARE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\GRID\GRID_MAPPING.CUH
+D:\CUDA\DEV\INCLUDE\CUB\GRID\GRID_QUEUE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\ITERATOR\ARG_INDEX_INPUT_ITERATOR.CUH
+D:\CUDA\DEV\INCLUDE\CUB\ITERATOR\CACHE_MODIFIED_INPUT_ITERATOR.CUH
+D:\CUDA\DEV\INCLUDE\CUB\ITERATOR\CONSTANT_INPUT_ITERATOR.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_LOAD.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_OPERATORS.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_STORE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_ARCH.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_COMPILER.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_CPP_DIALECT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_DEBUG.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_DEPRECATED.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_DEVICE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_MACRO.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_NAMESPACE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_PTX.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_TYPE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\VERSION.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\SPECIALIZATIONS\WARP_REDUCE_SHFL.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\SPECIALIZATIONS\WARP_REDUCE_SMEM.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\SPECIALIZATIONS\WARP_SCAN_SHFL.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\SPECIALIZATIONS\WARP_SCAN_SMEM.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\WARP_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\WARP_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_FP16.H
+D:\CUDA\DEV\INCLUDE\CUDA_FP16.HPP
+D:\CUDA\DEV\INCLUDE\CUDA_OCCUPANCY.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\THRUST\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ADVANCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ADJACENT_DIFFERENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ADVANCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALIGNMENT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\ALLOCATOR_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\ALLOCATOR_TRAITS.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\COPY_CONSTRUCT_RANGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\COPY_CONSTRUCT_RANGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\DEFAULT_CONSTRUCT_RANGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\DEFAULT_CONSTRUCT_RANGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\DESTROY_RANGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\DESTROY_RANGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\FILL_CONSTRUCT_RANGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\FILL_CONSTRUCT_RANGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\NO_THROW_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\TAGGED_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\TAGGED_ALLOCATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\TEMPORARY_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\TEMPORARY_ALLOCATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR_AWARE_EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\COMPILER.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\CONFIG.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\CPP_COMPATIBILITY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\CPP_DIALECT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\DEBUG.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\DEPRECATED.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\DEVICE_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\EXEC_CHECK_DISABLE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\FORCEINLINE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\GLOBAL_WORKAROUNDS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\HOST_DEVICE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\HOST_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\SIMPLE_DEFINES.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONTIGUOUS_STORAGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONTIGUOUS_STORAGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COPY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COPY_IF.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COUNT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CPP11_REQUIRED.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CSTDINT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DEPENDENCIES_AWARE_EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DEVICE_PTR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DEVICE_REFERENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DEVICE_VECTOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DISTANCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EQUAL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXECUTE_WITH_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXECUTE_WITH_ALLOCATOR_FWD.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXECUTE_WITH_DEPENDENCIES.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXTREMA.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FILL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FIND.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FOR_EACH.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\ACTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\ACTOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\ARGUMENT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\COMPOSITE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\ARITHMETIC_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\ASSIGNMENT_OPERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\BITWISE_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\COMPOUND_ASSIGNMENT_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\LOGICAL_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\OPERATOR_ADAPTORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\RELATIONAL_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\PLACEHOLDER.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\GENERATE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\GET_ITERATOR_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\HOST_VECTOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\INTEGER_MATH.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\INTEGER_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\INTERNAL_FUNCTIONAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MERGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MINMAX.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MISMATCH.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MPL\MATH.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\NUMERIC_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\OVERLAPPED_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\PAIR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\PARTITION.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\POINTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\POINTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\PREPROCESSOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\RANGE\HEAD_FLAGS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\RAW_POINTER_CAST.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\RAW_REFERENCE_CAST.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REDUCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REFERENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REFERENCE_FORWARD_DECLARATION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REMOVE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REPLACE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REVERSE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SCAN.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SCATTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SEQ.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SEQUENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SET_OPERATIONS.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\STATIC_ASSERT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SWAP.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SWAP_RANGES.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TABULATE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TEMPORARY_ARRAY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TEMPORARY_ARRAY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TRANSFORM.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TRANSFORM_REDUCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TRIVIAL_SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TUPLE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TUPLE_META_TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TUPLE_TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_DEDUCTION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\ALGORITHM\INTERMEDIATE_TYPE_FROM_FUNCTION_AND_ITERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\FUNCTION_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\HAS_MEMBER_FUNCTION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\HAS_NESTED_TYPE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\HAS_TRIVIAL_ASSIGN.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\IS_CALL_POSSIBLE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\IS_METAFUNCTION_DEFINED.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\ITERATOR\IS_OUTPUT_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\MINIMUM_TYPE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\POINTER_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\RESULT_OF_ADAPTABLE_FUNCTION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\UNINITIALIZED_FILL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\UNIQUE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\USE_DEFAULT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\VECTOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\VECTOR_BASE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DEVICE_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DEVICE_PTR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DEVICE_REFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DEVICE_VECTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DISTANCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\FUNCTIONAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\HOST_VECTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\CONSTANT_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\COUNTING_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ANY_ASSIGN.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ANY_SYSTEM_TAG.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\CONSTANT_ITERATOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\COUNTING_ITERATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\DEVICE_SYSTEM_TAG.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\DISTANCE_FROM_RESULT.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\HOST_SYSTEM_TAG.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\IS_ITERATOR_CATEGORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_ADAPTOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_CATEGORY_TO_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_CATEGORY_TO_TRAVERSAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_CATEGORY_WITH_SYSTEM_AND_TRAVERSAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_FACADE_CATEGORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_TRAITS.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_TRAVERSAL_TAGS.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\MINIMUM_CATEGORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\MINIMUM_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\NORMAL_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\PERMUTATION_ITERATOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\REVERSE_ITERATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\REVERSE_ITERATOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\TAGGED_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\TRANSFORM_ITERATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\TUPLE_OF_ITERATOR_REFERENCES.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\UNIVERSAL_CATEGORIES.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ZIP_ITERATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ZIP_ITERATOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ITERATOR_ADAPTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ITERATOR_CATEGORIES.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ITERATOR_FACADE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ITERATOR_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\PERMUTATION_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\REVERSE_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\TRANSFORM_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ZIP_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\MEMORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\MEMORY\DETAIL\DEVICE_SYSTEM_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MEMORY\DETAIL\HOST_SYSTEM_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\DETAIL\CONFIG.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\FANCY_POINTER_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\MEMORY_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\NEW.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\POLYMORPHIC_ADAPTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\VALIDATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\PAIR.H
+D:\CUDA\DEV\INCLUDE\THRUST\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\ASSIGN_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\BINARY_SEARCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\GATHER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\GET_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\INNER_PRODUCT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\ITER_SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\LOGICAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\PAR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\POINTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TRANSFORM_SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\UNINITIALIZED_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\MEMORY_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\POINTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\CONFIG.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\ASSIGN_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\BINARY_SEARCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CORE\AGENT_LAUNCHER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CORE\ALIGNMENT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CORE\TRIPLE_CHEVRON_LAUNCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CORE\UTIL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CROSS_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\DISPATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\ERROR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GATHER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GET_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GUARDED_CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GUARDED_DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\INNER_PRODUCT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\INTERNAL\COPY_CROSS_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\INTERNAL\COPY_DEVICE_TO_DEVICE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\ITER_SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MAKE_UNSIGNED_SPECIAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MANAGED_MEMORY_POINTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\PAR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\PAR_TO_SEQ.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\PARALLEL_FOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\POINTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TERMINATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TRANSFORM_SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UNINITIALIZED_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UTIL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\ERROR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\MEMORY_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\POINTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\ASSIGN_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\GET_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\ITER_SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\BAD_ALLOC.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ERRNO.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ERROR_CATEGORY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ERROR_CODE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ERROR_CONDITION.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\ADJACENT_DIFFERENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\ADVANCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\ADVANCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COPY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COPY_IF.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COUNT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\DISTANCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\DISTANCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\EQUAL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\EXTREMA.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\FIND.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\GENERATE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MEMORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MEMORY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MERGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MISMATCH.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\PARTITION.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REDUCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REDUCE_BY_KEY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REMOVE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REPLACE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REVERSE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCAN.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCAN_BY_KEY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCATTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SELECT_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SELECT_SYSTEM.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SELECT_SYSTEM_EXISTS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SEQUENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SET_OPERATIONS.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SWAP_RANGES.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TABULATE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TAG.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TEMPORARY_BUFFER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TRANSFORM.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TRANSFORM_REDUCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNINITIALIZED_FILL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNIQUE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNIQUE_BY_KEY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\ASSIGN_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\BINARY_SEARCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COPY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COPY_BACKWARD.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\GENERAL_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\GET_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\INSERTION_SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\ITER_SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\MERGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_MERGE_SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_MERGE_SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_PRIMITIVE_SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_PRIMITIVE_SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_RADIX_SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_RADIX_SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TRIVIAL_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SYSTEM_ERROR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\ERROR_CODE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\SYSTEM_ERROR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM_ERROR.H
+D:\CUDA\DEV\INCLUDE\THRUST\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\TUPLE.H
+D:\CUDA\DEV\INCLUDE\THRUST\TYPE_TRAITS\IS_CONTIGUOUS_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\TYPE_TRAITS\IS_TRIVIALLY_RELOCATABLE.H
+D:\CUDA\DEV\INCLUDE\THRUST\TYPE_TRAITS\REMOVE_CVREF.H
+D:\CUDA\DEV\INCLUDE\THRUST\TYPE_TRAITS\VOID_T.H
+D:\CUDA\DEV\INCLUDE\THRUST\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\VERSION.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\THRUST.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ.DEBUG.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ.DEPEND
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA\RUN_NVCC.CMAKE
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.write.1.tlog b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.write.1.tlog
new file mode 100644
index 0000000..cfb9a88
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/CustomBuild.write.1.tlog
@@ -0,0 +1,12 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\DEBUG\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CPU.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\DEBUG\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\EFFICIENT.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\DEBUG\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\NAIVE.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\DEBUG\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\THRUST.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\DEBUG\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\GENERATE.STAMP
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib-link.read.1.tlog b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib-link.read.1.tlog
new file mode 100644
index 0000000..90b5ec4
Binary files /dev/null and b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib-link.read.1.tlog differ
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib-link.write.1.tlog b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib-link.write.1.tlog
new file mode 100644
index 0000000..613a5c3
Binary files /dev/null and b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib-link.write.1.tlog differ
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib.command.1.tlog b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib.command.1.tlog
new file mode 100644
index 0000000..5069aa6
Binary files /dev/null and b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/Lib.command.1.tlog differ
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/stream_compaction.lastbuildstate b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/stream_compaction.lastbuildstate
new file mode 100644
index 0000000..5490b87
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Debug/stream_c.D0E00BE7.tlog/stream_compaction.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\|
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_compaction.Build.CppClean.log b/build/stream_compaction/stream_compaction.dir/Debug/stream_compaction.Build.CppClean.log
new file mode 100644
index 0000000..f0bfc68
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Debug/stream_compaction.Build.CppClean.log
@@ -0,0 +1,13 @@
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\debug\stream_compaction_generated_common.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\debug\stream_compaction_generated_cpu.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\debug\stream_compaction_generated_efficient.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\debug\stream_compaction_generated_naive.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\debug\stream_compaction_generated_thrust.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\generate.stamp
+e:\learning\cis565\project2-stream-compaction\build\lib\debug\stream_compaction.lib
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\debug\stream_c.d0e00be7.tlog\custombuild.command.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\debug\stream_c.d0e00be7.tlog\custombuild.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\debug\stream_c.d0e00be7.tlog\custombuild.write.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\debug\stream_c.d0e00be7.tlog\lib-link.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\debug\stream_c.d0e00be7.tlog\lib-link.write.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\debug\stream_c.d0e00be7.tlog\lib.command.1.tlog
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_compaction.log b/build/stream_compaction/stream_compaction.dir/Debug/stream_compaction.log
new file mode 100644
index 0000000..4c9f8b3
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Debug/stream_compaction.log
@@ -0,0 +1,20 @@
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/Debug/stream_compaction_generated_naive.cu.obj
+ -- Removing E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_naive.cu.obj
+ E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe -E rm -f E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_naive.cu.obj
+ -- Generating dependency file: E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend
+ D:/cuda/dev/bin/nvcc.exe -M -D__CUDACC__ E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu -o E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend -ccbin "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe" -m64 -DCUDA_COMPUTE_75 -Xcompiler ,\"/DWIN32\",\"/D_WINDOWS\",\"/W3\",\"/GR\",\"/EHsc\",\"/MDd\",\"/Zi\",\"/Ob0\",\"/Od\",\"/RTC1\" -gencode arch=compute_75,code=sm_75 -g -G -DNVCC -ID:/cuda/dev/include
+ naive.cu
+ -- Generating temporary cmake readable file: E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp
+ E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe -D input_file:FILEPATH=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend -D output_file:FILEPATH=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp -D verbose=ON -P E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake
+ -- Copy if different E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp to E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend
+ E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe -E copy_if_different E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend
+ -- Removing E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp and E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend
+ E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe -E rm -f E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend
+ -- Generating E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_naive.cu.obj
+ D:/cuda/dev/bin/nvcc.exe E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu -c -o E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_naive.cu.obj -ccbin "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe" -m64 -DCUDA_COMPUTE_75 -Xcompiler ,\"/DWIN32\",\"/D_WINDOWS\",\"/W3\",\"/GR\",\"/EHsc\",\"/MDd\",\"/Zi\",\"/Ob0\",\"/Od\",\"/RTC1\" -gencode arch=compute_75,code=sm_75 -g -G -DNVCC -ID:/cuda/dev/include
+E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu(112): warning : variable "dev_finalData" was declared but never referenced
+
+ naive.cu
+E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu(112): warning C4101: 'dev_finalData': unreferenced local variable
+ Generated E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Debug/stream_compaction_generated_naive.cu.obj successfully.
+ stream_compaction.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\lib\Debug\stream_compaction.lib
diff --git a/build/stream_compaction/stream_compaction.dir/Debug/stream_compaction.vcxproj.FileListAbsolute.txt b/build/stream_compaction/stream_compaction.dir/Debug/stream_compaction.vcxproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e69de29
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.command.1.tlog b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.command.1.tlog
new file mode 100644
index 0000000..4d92035
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.command.1.tlog
@@ -0,0 +1,90 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Release -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_common.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_common.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CPU.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Release -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_cpu.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_cpu.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\EFFICIENT.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Release -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_efficient.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_efficient.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\NAIVE.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Release -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_naive.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_naive.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\THRUST.CU
+setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools/MSVC/14.24.28314/bin/Hostx64/x64" -D build_configuration:STRING=Release -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_thrust.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_thrust.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CMAKELISTS.TXT
+setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.read.1.tlog b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.read.1.tlog
new file mode 100644
index 0000000..09d13ed
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.read.1.tlog
@@ -0,0 +1,1297 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ.RELEASE.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CPU.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CPU.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ.RELEASE.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\EFFICIENT.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\EFFICIENT.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ.RELEASE.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\NAIVE.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\DEQUE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STACK
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\NAIVE.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ.RELEASE.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\THRUST.CU
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ALGORITHM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ARRAY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ATOMIC
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CASSERT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CCTYPE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CERRNO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CFLOAT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CHRONO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CLIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CMATH
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CONCURRENCYSAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CRTDEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDARG
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDINT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTDLIB
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\CWCHAR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\EXCEPTION
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\FUNCTIONAL
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INITIALIZER_LIST
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\INTRIN0.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSFWD
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\IOSTREAM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ISTREAM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\ITERATOR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\LIMITS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\MEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\NEW
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\OSTREAM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\RATIO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SAL.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDARG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDEXCEPT
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STDINT.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STREAMBUF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\STRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\SYSTEM_ERROR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TUPLE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPE_TRAITS
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\TYPEINFO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\USE_ANSI.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\UTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VADEFS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_EXCEPTION.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_NEW_DEBUG.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_STRING.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VCRUNTIME_TYPEINFO.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\VECTOR
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XATOMIC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XCALL_ONCE.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XERRC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XFACET
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XIOSBASE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XKEYCHECK.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XLOCALE
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XLOCINFO
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XLOCINFO.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XLOCNUM
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XMEMORY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTDDEF
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XSTRING
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTGMATH.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTIMEC.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XTR1COMMON
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\XUTILITY
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS.H
+C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.24.28314\INCLUDE\YVALS_CORE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ASSERT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CTYPE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\LOCALE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SHARE.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\TIME.H
+C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
+D:\CUDA\DEV\INCLUDE\BUILTIN_TYPES.H
+D:\CUDA\DEV\INCLUDE\CHANNEL_DESCRIPTOR.H
+D:\CUDA\DEV\INCLUDE\CRT\COMMON_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_DOUBLE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\DEVICE_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\HOST_CONFIG.H
+D:\CUDA\DEV\INCLUDE\CRT\HOST_DEFINES.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\CRT\MATH_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_70_RT.HPP
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.H
+D:\CUDA\DEV\INCLUDE\CRT\SM_80_RT.HPP
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_RADIX_SORT_DOWNSWEEP.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_RADIX_SORT_UPSWEEP.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_REDUCE_BY_KEY.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\AGENT_SELECT_IF.CUH
+D:\CUDA\DEV\INCLUDE\CUB\AGENT\SINGLE_PASS_SCAN_OPERATORS.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_ADJACENT_DIFFERENCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_DISCONTINUITY.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_EXCHANGE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_LOAD.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_RADIX_RANK.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_RADIX_SORT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_RAKING_LAYOUT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\BLOCK_STORE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_REDUCE_RAKING.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_REDUCE_RAKING_COMMUTATIVE_ONLY.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_REDUCE_WARP_REDUCTIONS.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_SCAN_RAKING.CUH
+D:\CUDA\DEV\INCLUDE\CUB\BLOCK\SPECIALIZATIONS\BLOCK_SCAN_WARP_SCANS.CUH
+D:\CUDA\DEV\INCLUDE\CUB\CONFIG.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_PARTITION.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_RADIX_SORT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DEVICE_SELECT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_RADIX_SORT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_REDUCE_BY_KEY.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\DEVICE\DISPATCH\DISPATCH_SELECT_IF.CUH
+D:\CUDA\DEV\INCLUDE\CUB\GRID\GRID_EVEN_SHARE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\GRID\GRID_MAPPING.CUH
+D:\CUDA\DEV\INCLUDE\CUB\GRID\GRID_QUEUE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\ITERATOR\ARG_INDEX_INPUT_ITERATOR.CUH
+D:\CUDA\DEV\INCLUDE\CUB\ITERATOR\CACHE_MODIFIED_INPUT_ITERATOR.CUH
+D:\CUDA\DEV\INCLUDE\CUB\ITERATOR\CONSTANT_INPUT_ITERATOR.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_LOAD.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_OPERATORS.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUB\THREAD\THREAD_STORE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_ARCH.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_COMPILER.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_CPP_DIALECT.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_DEBUG.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_DEPRECATED.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_DEVICE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_MACRO.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_NAMESPACE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_PTX.CUH
+D:\CUDA\DEV\INCLUDE\CUB\UTIL_TYPE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\VERSION.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\SPECIALIZATIONS\WARP_REDUCE_SHFL.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\SPECIALIZATIONS\WARP_REDUCE_SMEM.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\SPECIALIZATIONS\WARP_SCAN_SHFL.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\SPECIALIZATIONS\WARP_SCAN_SMEM.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\WARP_REDUCE.CUH
+D:\CUDA\DEV\INCLUDE\CUB\WARP\WARP_SCAN.CUH
+D:\CUDA\DEV\INCLUDE\CUDA.H
+D:\CUDA\DEV\INCLUDE\CUDA_DEVICE_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_FP16.H
+D:\CUDA\DEV\INCLUDE\CUDA_FP16.HPP
+D:\CUDA\DEV\INCLUDE\CUDA_OCCUPANCY.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME.H
+D:\CUDA\DEV\INCLUDE\CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\CUDA_SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\CUDA_TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\DEVICE_LAUNCH_PARAMETERS.H
+D:\CUDA\DEV\INCLUDE\DEVICE_TYPES.H
+D:\CUDA\DEV\INCLUDE\DRIVER_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\LIBRARY_TYPES.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_20_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_20_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_30_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_32_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_32_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SM_35_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_35_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SM_60_ATOMIC_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.H
+D:\CUDA\DEV\INCLUDE\SM_61_INTRINSICS.HPP
+D:\CUDA\DEV\INCLUDE\SURFACE_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\SURFACE_TYPES.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_FETCH_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_INDIRECT_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\TEXTURE_TYPES.H
+D:\CUDA\DEV\INCLUDE\THRUST\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ADVANCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ADJACENT_DIFFERENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ADVANCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALIGNMENT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\ALLOCATOR_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\ALLOCATOR_TRAITS.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\COPY_CONSTRUCT_RANGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\COPY_CONSTRUCT_RANGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\DEFAULT_CONSTRUCT_RANGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\DEFAULT_CONSTRUCT_RANGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\DESTROY_RANGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\DESTROY_RANGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\FILL_CONSTRUCT_RANGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\FILL_CONSTRUCT_RANGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\NO_THROW_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\TAGGED_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\TAGGED_ALLOCATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\TEMPORARY_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR\TEMPORARY_ALLOCATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\ALLOCATOR_AWARE_EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\COMPILER.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\CONFIG.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\CPP_COMPATIBILITY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\CPP_DIALECT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\DEBUG.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\DEPRECATED.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\DEVICE_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\EXEC_CHECK_DISABLE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\FORCEINLINE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\GLOBAL_WORKAROUNDS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\HOST_DEVICE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\HOST_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONFIG\SIMPLE_DEFINES.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONTIGUOUS_STORAGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CONTIGUOUS_STORAGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COPY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COPY_IF.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\COUNT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CPP11_REQUIRED.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\CSTDINT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DEPENDENCIES_AWARE_EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DEVICE_PTR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DEVICE_REFERENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DEVICE_VECTOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\DISTANCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EQUAL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXECUTE_WITH_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXECUTE_WITH_ALLOCATOR_FWD.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXECUTE_WITH_DEPENDENCIES.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\EXTREMA.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FILL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FIND.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FOR_EACH.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\ACTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\ACTOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\ARGUMENT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\COMPOSITE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\ARITHMETIC_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\ASSIGNMENT_OPERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\BITWISE_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\COMPOUND_ASSIGNMENT_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\LOGICAL_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\OPERATOR_ADAPTORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\OPERATORS\RELATIONAL_OPERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\PLACEHOLDER.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\FUNCTIONAL\VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\GENERATE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\GET_ITERATOR_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\HOST_VECTOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\INTEGER_MATH.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\INTEGER_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\INTERNAL_FUNCTIONAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MERGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MINMAX.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MISMATCH.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\MPL\MATH.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\NUMERIC_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\OVERLAPPED_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\PAIR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\PARTITION.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\POINTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\POINTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\PREPROCESSOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\RANGE\HEAD_FLAGS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\RAW_POINTER_CAST.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\RAW_REFERENCE_CAST.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REDUCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REFERENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REFERENCE_FORWARD_DECLARATION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REMOVE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REPLACE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\REVERSE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SCAN.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SCATTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SEQ.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SEQUENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SET_OPERATIONS.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\STATIC_ASSERT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SWAP.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\SWAP_RANGES.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TABULATE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TEMPORARY_ARRAY.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TEMPORARY_ARRAY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TRANSFORM.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TRANSFORM_REDUCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TRIVIAL_SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TUPLE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TUPLE_META_TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TUPLE_TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_DEDUCTION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\ALGORITHM\INTERMEDIATE_TYPE_FROM_FUNCTION_AND_ITERATORS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\FUNCTION_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\HAS_MEMBER_FUNCTION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\HAS_NESTED_TYPE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\HAS_TRIVIAL_ASSIGN.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\IS_CALL_POSSIBLE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\IS_METAFUNCTION_DEFINED.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\ITERATOR\IS_OUTPUT_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\MINIMUM_TYPE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\POINTER_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\TYPE_TRAITS\RESULT_OF_ADAPTABLE_FUNCTION.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\UNINITIALIZED_FILL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\UNIQUE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\USE_DEFAULT.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\VECTOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DETAIL\VECTOR_BASE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\DEVICE_ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DEVICE_PTR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DEVICE_REFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\DEVICE_VECTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\DISTANCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\FUNCTIONAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\HOST_VECTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\CONSTANT_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\COUNTING_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ANY_ASSIGN.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ANY_SYSTEM_TAG.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\CONSTANT_ITERATOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\COUNTING_ITERATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\DEVICE_SYSTEM_TAG.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\DISTANCE_FROM_RESULT.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\HOST_SYSTEM_TAG.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\IS_ITERATOR_CATEGORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_ADAPTOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_CATEGORY_TO_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_CATEGORY_TO_TRAVERSAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_CATEGORY_WITH_SYSTEM_AND_TRAVERSAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_FACADE_CATEGORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_TRAITS.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ITERATOR_TRAVERSAL_TAGS.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\MINIMUM_CATEGORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\MINIMUM_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\NORMAL_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\PERMUTATION_ITERATOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\REVERSE_ITERATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\REVERSE_ITERATOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\TAGGED_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\TRANSFORM_ITERATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\TUPLE_OF_ITERATOR_REFERENCES.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\UNIVERSAL_CATEGORIES.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ZIP_ITERATOR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\DETAIL\ZIP_ITERATOR_BASE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ITERATOR_ADAPTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ITERATOR_CATEGORIES.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ITERATOR_FACADE.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ITERATOR_TRAITS.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\PERMUTATION_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\REVERSE_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\TRANSFORM_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\ITERATOR\ZIP_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\MEMORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\MEMORY\DETAIL\DEVICE_SYSTEM_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MEMORY\DETAIL\HOST_SYSTEM_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\ALLOCATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\DETAIL\CONFIG.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\FANCY_POINTER_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\MEMORY_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\NEW.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\POLYMORPHIC_ADAPTOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\MR\VALIDATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\PAIR.H
+D:\CUDA\DEV\INCLUDE\THRUST\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\ASSIGN_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\BINARY_SEARCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\GATHER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\GET_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\INNER_PRODUCT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\ITER_SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\LOGICAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\PAR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\POINTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\TRANSFORM_SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\UNINITIALIZED_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\DETAIL\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\MEMORY_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CPP\POINTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\CONFIG.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\ASSIGN_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\BINARY_SEARCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CORE\AGENT_LAUNCHER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CORE\ALIGNMENT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CORE\TRIPLE_CHEVRON_LAUNCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CORE\UTIL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\CROSS_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\DISPATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\ERROR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GATHER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GET_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GUARDED_CUDA_RUNTIME_API.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\GUARDED_DRIVER_TYPES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\INNER_PRODUCT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\INTERNAL\COPY_CROSS_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\INTERNAL\COPY_DEVICE_TO_DEVICE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\ITER_SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MAKE_UNSIGNED_SPECIAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MANAGED_MEMORY_POINTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\PAR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\PAR_TO_SEQ.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\PARALLEL_FOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\POINTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TERMINATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\TRANSFORM_SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UNINITIALIZED_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\DETAIL\UTIL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\ERROR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\MEMORY_RESOURCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\CUDA\POINTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\ASSIGN_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\GET_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\ITER_SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ADL\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\BAD_ALLOC.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ERRNO.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ERROR_CATEGORY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ERROR_CODE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\ERROR_CONDITION.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\ADJACENT_DIFFERENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\ADVANCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\ADVANCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COPY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COPY_IF.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\COUNT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\DISTANCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\DISTANCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\EQUAL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\EXTREMA.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\FIND.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\GENERATE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MEMORY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MEMORY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MERGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\MISMATCH.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\PARTITION.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REDUCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REDUCE_BY_KEY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REMOVE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REPLACE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\REVERSE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCAN.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCAN_BY_KEY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SCATTER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SELECT_SYSTEM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SELECT_SYSTEM.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SELECT_SYSTEM_EXISTS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SEQUENCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SET_OPERATIONS.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\SWAP_RANGES.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TABULATE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TAG.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TEMPORARY_BUFFER.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TRANSFORM.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\TRANSFORM_REDUCE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNINITIALIZED_FILL.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNIQUE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\GENERIC\UNIQUE_BY_KEY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\ADJACENT_DIFFERENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\ASSIGN_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\BINARY_SEARCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COPY.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COPY_BACKWARD.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COPY_IF.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\COUNT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\EQUAL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\EXECUTION_POLICY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\EXTREMA.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\FIND.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\FOR_EACH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\GENERAL_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\GENERATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\GET_VALUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\INSERTION_SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\ITER_SWAP.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\MALLOC_AND_FREE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\MERGE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\MERGE.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\MISMATCH.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\PARTITION.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REDUCE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REMOVE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REPLACE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\REVERSE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SCAN.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SCAN_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SCATTER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SEQUENCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SET_OPERATIONS.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_MERGE_SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_MERGE_SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_PRIMITIVE_SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_PRIMITIVE_SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_RADIX_SORT.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\STABLE_RADIX_SORT.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\SWAP_RANGES.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TEMPORARY_BUFFER.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\TRIVIAL_COPY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SEQUENTIAL\UNIQUE_BY_KEY.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\DETAIL\SYSTEM_ERROR.INL
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\ERROR_CODE.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM\SYSTEM_ERROR.H
+D:\CUDA\DEV\INCLUDE\THRUST\SYSTEM_ERROR.H
+D:\CUDA\DEV\INCLUDE\THRUST\TABULATE.H
+D:\CUDA\DEV\INCLUDE\THRUST\TRANSFORM.H
+D:\CUDA\DEV\INCLUDE\THRUST\TRANSFORM_REDUCE.H
+D:\CUDA\DEV\INCLUDE\THRUST\TUPLE.H
+D:\CUDA\DEV\INCLUDE\THRUST\TYPE_TRAITS\IS_CONTIGUOUS_ITERATOR.H
+D:\CUDA\DEV\INCLUDE\THRUST\TYPE_TRAITS\IS_TRIVIALLY_RELOCATABLE.H
+D:\CUDA\DEV\INCLUDE\THRUST\TYPE_TRAITS\REMOVE_CVREF.H
+D:\CUDA\DEV\INCLUDE\THRUST\TYPE_TRAITS\VOID_T.H
+D:\CUDA\DEV\INCLUDE\THRUST\UNINITIALIZED_FILL.H
+D:\CUDA\DEV\INCLUDE\THRUST\UNIQUE.H
+D:\CUDA\DEV\INCLUDE\THRUST\VERSION.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.H
+D:\CUDA\DEV\INCLUDE\VECTOR_FUNCTIONS.HPP
+D:\CUDA\DEV\INCLUDE\VECTOR_TYPES.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\THRUST.H
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ.RELEASE.CMAKE
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ.CMAKE.PRE-GEN
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ.DEPEND
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA\RUN_NVCC.CMAKE
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.write.1.tlog b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.write.1.tlog
new file mode 100644
index 0000000..e5e9b72
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/CustomBuild.write.1.tlog
@@ -0,0 +1,12 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\COMMON.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\RELEASE\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CPU.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\RELEASE\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\EFFICIENT.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\RELEASE\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\NAIVE.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\RELEASE\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\THRUST.CU
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\RELEASE\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\GENERATE.STAMP
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib-link.read.1.tlog b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib-link.read.1.tlog
new file mode 100644
index 0000000..e9b0338
Binary files /dev/null and b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib-link.read.1.tlog differ
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib-link.write.1.tlog b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib-link.write.1.tlog
new file mode 100644
index 0000000..30d020d
Binary files /dev/null and b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib-link.write.1.tlog differ
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib.command.1.tlog b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib.command.1.tlog
new file mode 100644
index 0000000..39138c3
Binary files /dev/null and b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/Lib.command.1.tlog differ
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/stream_compaction.lastbuildstate b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/stream_compaction.lastbuildstate
new file mode 100644
index 0000000..96fd0d1
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Release/stream_c.D0E00BE7.tlog/stream_compaction.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\|
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_compaction.Build.CppClean.log b/build/stream_compaction/stream_compaction.dir/Release/stream_compaction.Build.CppClean.log
new file mode 100644
index 0000000..e23d6cd
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Release/stream_compaction.Build.CppClean.log
@@ -0,0 +1,13 @@
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\release\stream_compaction_generated_common.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\release\stream_compaction_generated_cpu.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\release\stream_compaction_generated_efficient.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\release\stream_compaction_generated_naive.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\stream_compaction.dir\release\stream_compaction_generated_thrust.cu.obj
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\generate.stamp
+e:\learning\cis565\project2-stream-compaction\build\lib\release\stream_compaction.lib
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\release\stream_c.d0e00be7.tlog\custombuild.command.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\release\stream_c.d0e00be7.tlog\custombuild.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\release\stream_c.d0e00be7.tlog\custombuild.write.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\release\stream_c.d0e00be7.tlog\lib-link.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\release\stream_c.d0e00be7.tlog\lib-link.write.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\stream_compaction.dir\release\stream_c.d0e00be7.tlog\lib.command.1.tlog
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_compaction.log b/build/stream_compaction/stream_compaction.dir/Release/stream_compaction.log
new file mode 100644
index 0000000..2af882a
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.dir/Release/stream_compaction.log
@@ -0,0 +1,20 @@
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/Release/stream_compaction_generated_naive.cu.obj
+ -- Removing E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_naive.cu.obj
+ E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe -E rm -f E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_naive.cu.obj
+ -- Generating dependency file: E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend
+ D:/cuda/dev/bin/nvcc.exe -M -D__CUDACC__ E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu -o E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend -ccbin "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe" -m64 -DCUDA_COMPUTE_75 -Xcompiler ,\"/DWIN32\",\"/D_WINDOWS\",\"/W3\",\"/GR\",\"/EHsc\",\"/MD\",\"/O2\",\"/Ob2\",\"/DNDEBUG\" -gencode arch=compute_75,code=sm_75 -DNVCC -ID:/cuda/dev/include
+ naive.cu
+ -- Generating temporary cmake readable file: E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp
+ E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe -D input_file:FILEPATH=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend -D output_file:FILEPATH=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp -D verbose=ON -P E:/Learning/cmake-3.17.2-win64-x64/share/cmake-3.17/Modules/FindCUDA/make2cmake.cmake
+ -- Copy if different E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp to E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend
+ E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe -E copy_if_different E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend
+ -- Removing E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp and E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend
+ E:/Learning/cmake-3.17.2-win64-x64/bin/cmake.exe -E rm -f E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend.tmp E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.NVCC-depend
+ -- Generating E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_naive.cu.obj
+ D:/cuda/dev/bin/nvcc.exe E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu -c -o E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_naive.cu.obj -ccbin "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe" -m64 -DCUDA_COMPUTE_75 -Xcompiler ,\"/DWIN32\",\"/D_WINDOWS\",\"/W3\",\"/GR\",\"/EHsc\",\"/MD\",\"/O2\",\"/Ob2\",\"/DNDEBUG\" -gencode arch=compute_75,code=sm_75 -DNVCC -ID:/cuda/dev/include
+E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu(114): warning : variable "dev_finalData" was declared but never referenced
+
+ naive.cu
+E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/naive.cu(114): warning C4101: 'dev_finalData': unreferenced local variable
+ Generated E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//Release/stream_compaction_generated_naive.cu.obj successfully.
+ stream_compaction.vcxproj -> E:\Learning\CIS565\Project2-Stream-Compaction\build\lib\Release\stream_compaction.lib
diff --git a/build/stream_compaction/stream_compaction.dir/Release/stream_compaction.vcxproj.FileListAbsolute.txt b/build/stream_compaction/stream_compaction.dir/Release/stream_compaction.vcxproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e69de29
diff --git a/build/stream_compaction/stream_compaction.vcxproj b/build/stream_compaction/stream_compaction.vcxproj
new file mode 100644
index 0000000..2bce424
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.vcxproj
@@ -0,0 +1,693 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {D0E00BE7-A37E-3655-97D1-AEB25F9AE905}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ stream_compaction
+ NoUpgrade
+
+
+
+ StaticLibrary
+ MultiByte
+ v142
+
+
+ StaticLibrary
+ MultiByte
+ v142
+
+
+ StaticLibrary
+ MultiByte
+ v142
+
+
+ StaticLibrary
+ MultiByte
+ v142
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\lib\Debug\
+ stream_compaction.dir\Debug\
+ stream_compaction
+ .lib
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\lib\Release\
+ stream_compaction.dir\Release\
+ stream_compaction
+ .lib
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\lib\MinSizeRel\
+ stream_compaction.dir\MinSizeRel\
+ stream_compaction
+ .lib
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\lib\RelWithDebInfo\
+ stream_compaction.dir\RelWithDebInfo\
+ stream_compaction
+ .lib
+
+
+
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ CompileAsCpp
+ ProgramDatabase
+ Sync
+ Disabled
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ true
+ false
+ Level3
+ WIN32;_WINDOWS;CUDA_COMPUTE_75;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;_WINDOWS;CUDA_COMPUTE_75;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+
+
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ CompileAsCpp
+ Sync
+ AnySuitable
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ true
+ false
+ Level3
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+
+
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+
+
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ CompileAsCpp
+ Sync
+ OnlyExplicitInline
+ MinSpace
+ NotUsing
+ MultiThreadedDLL
+ true
+ false
+ Level3
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR="MinSizeRel";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+
+
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR=\"MinSizeRel\";%(PreprocessorDefinitions)
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+
+
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ CompileAsCpp
+ ProgramDatabase
+ Sync
+ OnlyExplicitInline
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ true
+ false
+ Level3
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR="RelWithDebInfo";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_WINDOWS;NDEBUG;CUDA_COMPUTE_75;CMAKE_INTDIR=\"RelWithDebInfo\";%(PreprocessorDefinitions)
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+
+
+ D:\cuda\dev\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_common.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.Debug.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_common.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_common.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.Release.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_common.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_common.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.MinSizeRel.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.MinSizeRel.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_common.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_common.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_common.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.RelWithDebInfo.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.RelWithDebInfo.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_common.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_cpu.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\cpu.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.Debug.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_cpu.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_cpu.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\cpu.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.Release.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_cpu.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_cpu.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.MinSizeRel.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\cpu.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.MinSizeRel.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_cpu.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_cpu.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_cpu.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.RelWithDebInfo.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\cpu.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.RelWithDebInfo.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_cpu.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_efficient.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\efficient.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.Debug.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_efficient.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_efficient.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\efficient.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.Release.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_efficient.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_efficient.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.MinSizeRel.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\efficient.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.MinSizeRel.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_efficient.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_efficient.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_efficient.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.RelWithDebInfo.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\efficient.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.RelWithDebInfo.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_efficient.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_naive.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\deque;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stack;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\naive.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.Debug.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_naive.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_naive.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\deque;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stack;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\naive.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.Release.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_naive.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_naive.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.MinSizeRel.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\deque;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stack;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\naive.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.MinSizeRel.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_naive.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_naive.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_naive.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.RelWithDebInfo.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\deque;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stack;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\naive.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.RelWithDebInfo.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_naive.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_thrust.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\array;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\atomic;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cassert;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cctype;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cerrno;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\functional;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ios;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iostream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\istream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iterator;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\memory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ostream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\streambuf;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\string;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\system_error;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\tuple;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\typeinfo;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_typeinfo.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vector;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xcall_once.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xerrc.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xfacet;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xiosbase;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocale;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocinfo;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocinfo.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocnum;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\ctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\locale.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cub\agent\agent_radix_sort_downsweep.cuh;D:\cuda\dev\include\cub\agent\agent_radix_sort_upsweep.cuh;D:\cuda\dev\include\cub\agent\agent_reduce.cuh;D:\cuda\dev\include\cub\agent\agent_reduce_by_key.cuh;D:\cuda\dev\include\cub\agent\agent_scan.cuh;D:\cuda\dev\include\cub\agent\agent_select_if.cuh;D:\cuda\dev\include\cub\agent\single_pass_scan_operators.cuh;D:\cuda\dev\include\cub\block\block_adjacent_difference.cuh;D:\cuda\dev\include\cub\block\block_discontinuity.cuh;D:\cuda\dev\include\cub\block\block_exchange.cuh;D:\cuda\dev\include\cub\block\block_load.cuh;D:\cuda\dev\include\cub\block\block_radix_rank.cuh;D:\cuda\dev\include\cub\block\block_radix_sort.cuh;D:\cuda\dev\include\cub\block\block_raking_layout.cuh;D:\cuda\dev\include\cub\block\block_reduce.cuh;D:\cuda\dev\include\cub\block\block_scan.cuh;D:\cuda\dev\include\cub\block\block_store.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_raking.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_raking_commutative_only.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_warp_reductions.cuh;D:\cuda\dev\include\cub\block\specializations\block_scan_raking.cuh;D:\cuda\dev\include\cub\block\specializations\block_scan_warp_scans.cuh;D:\cuda\dev\include\cub\config.cuh;D:\cuda\dev\include\cub\device\device_partition.cuh;D:\cuda\dev\include\cub\device\device_radix_sort.cuh;D:\cuda\dev\include\cub\device\device_reduce.cuh;D:\cuda\dev\include\cub\device\device_scan.cuh;D:\cuda\dev\include\cub\device\device_select.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_radix_sort.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_reduce.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_reduce_by_key.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_scan.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_select_if.cuh;D:\cuda\dev\include\cub\grid\grid_even_share.cuh;D:\cuda\dev\include\cub\grid\grid_mapping.cuh;D:\cuda\dev\include\cub\grid\grid_queue.cuh;D:\cuda\dev\include\cub\iterator\arg_index_input_iterator.cuh;D:\cuda\dev\include\cub\iterator\cache_modified_input_iterator.cuh;D:\cuda\dev\include\cub\iterator\constant_input_iterator.cuh;D:\cuda\dev\include\cub\thread\thread_load.cuh;D:\cuda\dev\include\cub\thread\thread_operators.cuh;D:\cuda\dev\include\cub\thread\thread_reduce.cuh;D:\cuda\dev\include\cub\thread\thread_scan.cuh;D:\cuda\dev\include\cub\thread\thread_store.cuh;D:\cuda\dev\include\cub\util_arch.cuh;D:\cuda\dev\include\cub\util_compiler.cuh;D:\cuda\dev\include\cub\util_cpp_dialect.cuh;D:\cuda\dev\include\cub\util_debug.cuh;D:\cuda\dev\include\cub\util_deprecated.cuh;D:\cuda\dev\include\cub\util_device.cuh;D:\cuda\dev\include\cub\util_macro.cuh;D:\cuda\dev\include\cub\util_namespace.cuh;D:\cuda\dev\include\cub\util_ptx.cuh;D:\cuda\dev\include\cub\util_type.cuh;D:\cuda\dev\include\cub\version.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_reduce_shfl.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_reduce_smem.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_scan_shfl.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_scan_smem.cuh;D:\cuda\dev\include\cub\warp\warp_reduce.cuh;D:\cuda\dev\include\cub\warp\warp_scan.cuh;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_fp16.h;D:\cuda\dev\include\cuda_fp16.hpp;D:\cuda\dev\include\cuda_occupancy.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\thrust\adjacent_difference.h;D:\cuda\dev\include\thrust\advance.h;D:\cuda\dev\include\thrust\copy.h;D:\cuda\dev\include\thrust\count.h;D:\cuda\dev\include\thrust\detail\adjacent_difference.inl;D:\cuda\dev\include\thrust\detail\advance.inl;D:\cuda\dev\include\thrust\detail\alignment.h;D:\cuda\dev\include\thrust\detail\allocator\allocator_traits.h;D:\cuda\dev\include\thrust\detail\allocator\allocator_traits.inl;D:\cuda\dev\include\thrust\detail\allocator\copy_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\copy_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\default_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\default_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\destroy_range.h;D:\cuda\dev\include\thrust\detail\allocator\destroy_range.inl;D:\cuda\dev\include\thrust\detail\allocator\fill_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\fill_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\no_throw_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\tagged_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\tagged_allocator.inl;D:\cuda\dev\include\thrust\detail\allocator\temporary_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\temporary_allocator.inl;D:\cuda\dev\include\thrust\detail\allocator_aware_execution_policy.h;D:\cuda\dev\include\thrust\detail\config.h;D:\cuda\dev\include\thrust\detail\config\compiler.h;D:\cuda\dev\include\thrust\detail\config\config.h;D:\cuda\dev\include\thrust\detail\config\cpp_compatibility.h;D:\cuda\dev\include\thrust\detail\config\cpp_dialect.h;D:\cuda\dev\include\thrust\detail\config\debug.h;D:\cuda\dev\include\thrust\detail\config\deprecated.h;D:\cuda\dev\include\thrust\detail\config\device_system.h;D:\cuda\dev\include\thrust\detail\config\exec_check_disable.h;D:\cuda\dev\include\thrust\detail\config\forceinline.h;D:\cuda\dev\include\thrust\detail\config\global_workarounds.h;D:\cuda\dev\include\thrust\detail\config\host_device.h;D:\cuda\dev\include\thrust\detail\config\host_system.h;D:\cuda\dev\include\thrust\detail\config\simple_defines.h;D:\cuda\dev\include\thrust\detail\contiguous_storage.h;D:\cuda\dev\include\thrust\detail\contiguous_storage.inl;D:\cuda\dev\include\thrust\detail\copy.h;D:\cuda\dev\include\thrust\detail\copy.inl;D:\cuda\dev\include\thrust\detail\copy_if.h;D:\cuda\dev\include\thrust\detail\copy_if.inl;D:\cuda\dev\include\thrust\detail\count.inl;D:\cuda\dev\include\thrust\detail\cpp11_required.h;D:\cuda\dev\include\thrust\detail\cstdint.h;D:\cuda\dev\include\thrust\detail\dependencies_aware_execution_policy.h;D:\cuda\dev\include\thrust\detail\device_ptr.inl;D:\cuda\dev\include\thrust\detail\device_reference.inl;D:\cuda\dev\include\thrust\detail\device_vector.inl;D:\cuda\dev\include\thrust\detail\distance.inl;D:\cuda\dev\include\thrust\detail\equal.inl;D:\cuda\dev\include\thrust\detail\execute_with_allocator.h;D:\cuda\dev\include\thrust\detail\execute_with_allocator_fwd.h;D:\cuda\dev\include\thrust\detail\execute_with_dependencies.h;D:\cuda\dev\include\thrust\detail\execution_policy.h;D:\cuda\dev\include\thrust\detail\extrema.inl;D:\cuda\dev\include\thrust\detail\fill.inl;D:\cuda\dev\include\thrust\detail\find.inl;D:\cuda\dev\include\thrust\detail\for_each.inl;D:\cuda\dev\include\thrust\detail\function.h;D:\cuda\dev\include\thrust\detail\functional.inl;D:\cuda\dev\include\thrust\detail\functional\actor.h;D:\cuda\dev\include\thrust\detail\functional\actor.inl;D:\cuda\dev\include\thrust\detail\functional\argument.h;D:\cuda\dev\include\thrust\detail\functional\composite.h;D:\cuda\dev\include\thrust\detail\functional\operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\arithmetic_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\assignment_operator.h;D:\cuda\dev\include\thrust\detail\functional\operators\bitwise_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\compound_assignment_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\logical_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\operator_adaptors.h;D:\cuda\dev\include\thrust\detail\functional\operators\relational_operators.h;D:\cuda\dev\include\thrust\detail\functional\placeholder.h;D:\cuda\dev\include\thrust\detail\functional\value.h;D:\cuda\dev\include\thrust\detail\generate.inl;D:\cuda\dev\include\thrust\detail\get_iterator_value.h;D:\cuda\dev\include\thrust\detail\host_vector.inl;D:\cuda\dev\include\thrust\detail\integer_math.h;D:\cuda\dev\include\thrust\detail\integer_traits.h;D:\cuda\dev\include\thrust\detail\internal_functional.h;D:\cuda\dev\include\thrust\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\detail\merge.inl;D:\cuda\dev\include\thrust\detail\minmax.h;D:\cuda\dev\include\thrust\detail\mismatch.inl;D:\cuda\dev\include\thrust\detail\mpl\math.h;D:\cuda\dev\include\thrust\detail\numeric_traits.h;D:\cuda\dev\include\thrust\detail\overlapped_copy.h;D:\cuda\dev\include\thrust\detail\pair.inl;D:\cuda\dev\include\thrust\detail\partition.inl;D:\cuda\dev\include\thrust\detail\pointer.h;D:\cuda\dev\include\thrust\detail\pointer.inl;D:\cuda\dev\include\thrust\detail\preprocessor.h;D:\cuda\dev\include\thrust\detail\range\head_flags.h;D:\cuda\dev\include\thrust\detail\raw_pointer_cast.h;D:\cuda\dev\include\thrust\detail\raw_reference_cast.h;D:\cuda\dev\include\thrust\detail\reduce.inl;D:\cuda\dev\include\thrust\detail\reference.h;D:\cuda\dev\include\thrust\detail\reference.inl;D:\cuda\dev\include\thrust\detail\reference_forward_declaration.h;D:\cuda\dev\include\thrust\detail\remove.inl;D:\cuda\dev\include\thrust\detail\replace.inl;D:\cuda\dev\include\thrust\detail\reverse.inl;D:\cuda\dev\include\thrust\detail\scan.inl;D:\cuda\dev\include\thrust\detail\scatter.inl;D:\cuda\dev\include\thrust\detail\seq.h;D:\cuda\dev\include\thrust\detail\sequence.inl;D:\cuda\dev\include\thrust\detail\set_operations.inl;D:\cuda\dev\include\thrust\detail\sort.inl;D:\cuda\dev\include\thrust\detail\static_assert.h;D:\cuda\dev\include\thrust\detail\swap.h;D:\cuda\dev\include\thrust\detail\swap.inl;D:\cuda\dev\include\thrust\detail\swap_ranges.inl;D:\cuda\dev\include\thrust\detail\tabulate.inl;D:\cuda\dev\include\thrust\detail\temporary_array.h;D:\cuda\dev\include\thrust\detail\temporary_array.inl;D:\cuda\dev\include\thrust\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\detail\transform.inl;D:\cuda\dev\include\thrust\detail\transform_reduce.inl;D:\cuda\dev\include\thrust\detail\trivial_sequence.h;D:\cuda\dev\include\thrust\detail\tuple.inl;D:\cuda\dev\include\thrust\detail\tuple_meta_transform.h;D:\cuda\dev\include\thrust\detail\tuple_transform.h;D:\cuda\dev\include\thrust\detail\type_deduction.h;D:\cuda\dev\include\thrust\detail\type_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\algorithm\intermediate_type_from_function_and_iterators.h;D:\cuda\dev\include\thrust\detail\type_traits\function_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\has_member_function.h;D:\cuda\dev\include\thrust\detail\type_traits\has_nested_type.h;D:\cuda\dev\include\thrust\detail\type_traits\has_trivial_assign.h;D:\cuda\dev\include\thrust\detail\type_traits\is_call_possible.h;D:\cuda\dev\include\thrust\detail\type_traits\is_metafunction_defined.h;D:\cuda\dev\include\thrust\detail\type_traits\iterator\is_output_iterator.h;D:\cuda\dev\include\thrust\detail\type_traits\minimum_type.h;D:\cuda\dev\include\thrust\detail\type_traits\pointer_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\result_of_adaptable_function.h;D:\cuda\dev\include\thrust\detail\uninitialized_fill.inl;D:\cuda\dev\include\thrust\detail\unique.inl;D:\cuda\dev\include\thrust\detail\use_default.h;D:\cuda\dev\include\thrust\detail\vector_base.h;D:\cuda\dev\include\thrust\detail\vector_base.inl;D:\cuda\dev\include\thrust\device_allocator.h;D:\cuda\dev\include\thrust\device_ptr.h;D:\cuda\dev\include\thrust\device_reference.h;D:\cuda\dev\include\thrust\device_vector.h;D:\cuda\dev\include\thrust\distance.h;D:\cuda\dev\include\thrust\equal.h;D:\cuda\dev\include\thrust\execution_policy.h;D:\cuda\dev\include\thrust\extrema.h;D:\cuda\dev\include\thrust\fill.h;D:\cuda\dev\include\thrust\find.h;D:\cuda\dev\include\thrust\for_each.h;D:\cuda\dev\include\thrust\functional.h;D:\cuda\dev\include\thrust\generate.h;D:\cuda\dev\include\thrust\host_vector.h;D:\cuda\dev\include\thrust\iterator\constant_iterator.h;D:\cuda\dev\include\thrust\iterator\counting_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\any_assign.h;D:\cuda\dev\include\thrust\iterator\detail\any_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\constant_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\counting_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\device_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\distance_from_result.h;D:\cuda\dev\include\thrust\iterator\detail\host_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\is_iterator_category.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_adaptor_base.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_to_system.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_to_traversal.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_with_system_and_traversal.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_facade_category.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_traits.inl;D:\cuda\dev\include\thrust\iterator\detail\iterator_traversal_tags.h;D:\cuda\dev\include\thrust\iterator\detail\minimum_category.h;D:\cuda\dev\include\thrust\iterator\detail\minimum_system.h;D:\cuda\dev\include\thrust\iterator\detail\normal_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\permutation_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\reverse_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\reverse_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\tagged_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\transform_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\tuple_of_iterator_references.h;D:\cuda\dev\include\thrust\iterator\detail\universal_categories.h;D:\cuda\dev\include\thrust\iterator\detail\zip_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\zip_iterator_base.h;D:\cuda\dev\include\thrust\iterator\iterator_adaptor.h;D:\cuda\dev\include\thrust\iterator\iterator_categories.h;D:\cuda\dev\include\thrust\iterator\iterator_facade.h;D:\cuda\dev\include\thrust\iterator\iterator_traits.h;D:\cuda\dev\include\thrust\iterator\permutation_iterator.h;D:\cuda\dev\include\thrust\iterator\reverse_iterator.h;D:\cuda\dev\include\thrust\iterator\transform_iterator.h;D:\cuda\dev\include\thrust\iterator\zip_iterator.h;D:\cuda\dev\include\thrust\memory.h;D:\cuda\dev\include\thrust\memory\detail\device_system_resource.h;D:\cuda\dev\include\thrust\memory\detail\host_system_resource.h;D:\cuda\dev\include\thrust\merge.h;D:\cuda\dev\include\thrust\mismatch.h;D:\cuda\dev\include\thrust\mr\allocator.h;D:\cuda\dev\include\thrust\mr\detail\config.h;D:\cuda\dev\include\thrust\mr\fancy_pointer_resource.h;D:\cuda\dev\include\thrust\mr\memory_resource.h;D:\cuda\dev\include\thrust\mr\new.h;D:\cuda\dev\include\thrust\mr\polymorphic_adaptor.h;D:\cuda\dev\include\thrust\mr\validator.h;D:\cuda\dev\include\thrust\pair.h;D:\cuda\dev\include\thrust\partition.h;D:\cuda\dev\include\thrust\reduce.h;D:\cuda\dev\include\thrust\remove.h;D:\cuda\dev\include\thrust\replace.h;D:\cuda\dev\include\thrust\reverse.h;D:\cuda\dev\include\thrust\scan.h;D:\cuda\dev\include\thrust\scatter.h;D:\cuda\dev\include\thrust\sequence.h;D:\cuda\dev\include\thrust\set_operations.h;D:\cuda\dev\include\thrust\sort.h;D:\cuda\dev\include\thrust\swap.h;D:\cuda\dev\include\thrust\system\cpp\detail\adjacent_difference.h;D:\cuda\dev\include\thrust\system\cpp\detail\assign_value.h;D:\cuda\dev\include\thrust\system\cpp\detail\binary_search.h;D:\cuda\dev\include\thrust\system\cpp\detail\copy.h;D:\cuda\dev\include\thrust\system\cpp\detail\copy_if.h;D:\cuda\dev\include\thrust\system\cpp\detail\count.h;D:\cuda\dev\include\thrust\system\cpp\detail\equal.h;D:\cuda\dev\include\thrust\system\cpp\detail\execution_policy.h;D:\cuda\dev\include\thrust\system\cpp\detail\extrema.h;D:\cuda\dev\include\thrust\system\cpp\detail\fill.h;D:\cuda\dev\include\thrust\system\cpp\detail\find.h;D:\cuda\dev\include\thrust\system\cpp\detail\for_each.h;D:\cuda\dev\include\thrust\system\cpp\detail\gather.h;D:\cuda\dev\include\thrust\system\cpp\detail\generate.h;D:\cuda\dev\include\thrust\system\cpp\detail\get_value.h;D:\cuda\dev\include\thrust\system\cpp\detail\inner_product.h;D:\cuda\dev\include\thrust\system\cpp\detail\iter_swap.h;D:\cuda\dev\include\thrust\system\cpp\detail\logical.h;D:\cuda\dev\include\thrust\system\cpp\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\system\cpp\detail\merge.h;D:\cuda\dev\include\thrust\system\cpp\detail\mismatch.h;D:\cuda\dev\include\thrust\system\cpp\detail\par.h;D:\cuda\dev\include\thrust\system\cpp\detail\partition.h;D:\cuda\dev\include\thrust\system\cpp\detail\pointer.inl;D:\cuda\dev\include\thrust\system\cpp\detail\reduce.h;D:\cuda\dev\include\thrust\system\cpp\detail\reduce_by_key.h;D:\cuda\dev\include\thrust\system\cpp\detail\remove.h;D:\cuda\dev\include\thrust\system\cpp\detail\replace.h;D:\cuda\dev\include\thrust\system\cpp\detail\reverse.h;D:\cuda\dev\include\thrust\system\cpp\detail\scan.h;D:\cuda\dev\include\thrust\system\cpp\detail\scan_by_key.h;D:\cuda\dev\include\thrust\system\cpp\detail\scatter.h;D:\cuda\dev\include\thrust\system\cpp\detail\sequence.h;D:\cuda\dev\include\thrust\system\cpp\detail\set_operations.h;D:\cuda\dev\include\thrust\system\cpp\detail\sort.h;D:\cuda\dev\include\thrust\system\cpp\detail\swap_ranges.h;D:\cuda\dev\include\thrust\system\cpp\detail\tabulate.h;D:\cuda\dev\include\thrust\system\cpp\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform_reduce.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform_scan.h;D:\cuda\dev\include\thrust\system\cpp\detail\uninitialized_copy.h;D:\cuda\dev\include\thrust\system\cpp\detail\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\cpp\detail\unique.h;D:\cuda\dev\include\thrust\system\cpp\detail\unique_by_key.h;D:\cuda\dev\include\thrust\system\cpp\execution_policy.h;D:\cuda\dev\include\thrust\system\cpp\memory_resource.h;D:\cuda\dev\include\thrust\system\cpp\pointer.h;D:\cuda\dev\include\thrust\system\cuda\config.h;D:\cuda\dev\include\thrust\system\cuda\detail\adjacent_difference.h;D:\cuda\dev\include\thrust\system\cuda\detail\assign_value.h;D:\cuda\dev\include\thrust\system\cuda\detail\binary_search.h;D:\cuda\dev\include\thrust\system\cuda\detail\copy.h;D:\cuda\dev\include\thrust\system\cuda\detail\copy_if.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\agent_launcher.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\alignment.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\triple_chevron_launch.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\util.h;D:\cuda\dev\include\thrust\system\cuda\detail\count.h;D:\cuda\dev\include\thrust\system\cuda\detail\cross_system.h;D:\cuda\dev\include\thrust\system\cuda\detail\dispatch.h;D:\cuda\dev\include\thrust\system\cuda\detail\equal.h;D:\cuda\dev\include\thrust\system\cuda\detail\error.inl;D:\cuda\dev\include\thrust\system\cuda\detail\execution_policy.h;D:\cuda\dev\include\thrust\system\cuda\detail\extrema.h;D:\cuda\dev\include\thrust\system\cuda\detail\fill.h;D:\cuda\dev\include\thrust\system\cuda\detail\find.h;D:\cuda\dev\include\thrust\system\cuda\detail\for_each.h;D:\cuda\dev\include\thrust\system\cuda\detail\gather.h;D:\cuda\dev\include\thrust\system\cuda\detail\generate.h;D:\cuda\dev\include\thrust\system\cuda\detail\get_value.h;D:\cuda\dev\include\thrust\system\cuda\detail\guarded_cuda_runtime_api.h;D:\cuda\dev\include\thrust\system\cuda\detail\guarded_driver_types.h;D:\cuda\dev\include\thrust\system\cuda\detail\inner_product.h;D:\cuda\dev\include\thrust\system\cuda\detail\internal\copy_cross_system.h;D:\cuda\dev\include\thrust\system\cuda\detail\internal\copy_device_to_device.h;D:\cuda\dev\include\thrust\system\cuda\detail\iter_swap.h;D:\cuda\dev\include\thrust\system\cuda\detail\make_unsigned_special.h;D:\cuda\dev\include\thrust\system\cuda\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\system\cuda\detail\managed_memory_pointer.h;D:\cuda\dev\include\thrust\system\cuda\detail\merge.h;D:\cuda\dev\include\thrust\system\cuda\detail\mismatch.h;D:\cuda\dev\include\thrust\system\cuda\detail\par.h;D:\cuda\dev\include\thrust\system\cuda\detail\par_to_seq.h;D:\cuda\dev\include\thrust\system\cuda\detail\parallel_for.h;D:\cuda\dev\include\thrust\system\cuda\detail\partition.h;D:\cuda\dev\include\thrust\system\cuda\detail\pointer.inl;D:\cuda\dev\include\thrust\system\cuda\detail\reduce.h;D:\cuda\dev\include\thrust\system\cuda\detail\reduce_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\remove.h;D:\cuda\dev\include\thrust\system\cuda\detail\replace.h;D:\cuda\dev\include\thrust\system\cuda\detail\reverse.h;D:\cuda\dev\include\thrust\system\cuda\detail\scan.h;D:\cuda\dev\include\thrust\system\cuda\detail\scan_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\scatter.h;D:\cuda\dev\include\thrust\system\cuda\detail\sequence.h;D:\cuda\dev\include\thrust\system\cuda\detail\set_operations.h;D:\cuda\dev\include\thrust\system\cuda\detail\sort.h;D:\cuda\dev\include\thrust\system\cuda\detail\swap_ranges.h;D:\cuda\dev\include\thrust\system\cuda\detail\tabulate.h;D:\cuda\dev\include\thrust\system\cuda\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\system\cuda\detail\terminate.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform_reduce.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform_scan.h;D:\cuda\dev\include\thrust\system\cuda\detail\uninitialized_copy.h;D:\cuda\dev\include\thrust\system\cuda\detail\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\cuda\detail\unique.h;D:\cuda\dev\include\thrust\system\cuda\detail\unique_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\util.h;D:\cuda\dev\include\thrust\system\cuda\error.h;D:\cuda\dev\include\thrust\system\cuda\execution_policy.h;D:\cuda\dev\include\thrust\system\cuda\memory_resource.h;D:\cuda\dev\include\thrust\system\cuda\pointer.h;D:\cuda\dev\include\thrust\system\detail\adl\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\adl\assign_value.h;D:\cuda\dev\include\thrust\system\detail\adl\copy.h;D:\cuda\dev\include\thrust\system\detail\adl\copy_if.h;D:\cuda\dev\include\thrust\system\detail\adl\count.h;D:\cuda\dev\include\thrust\system\detail\adl\equal.h;D:\cuda\dev\include\thrust\system\detail\adl\extrema.h;D:\cuda\dev\include\thrust\system\detail\adl\fill.h;D:\cuda\dev\include\thrust\system\detail\adl\find.h;D:\cuda\dev\include\thrust\system\detail\adl\for_each.h;D:\cuda\dev\include\thrust\system\detail\adl\generate.h;D:\cuda\dev\include\thrust\system\detail\adl\get_value.h;D:\cuda\dev\include\thrust\system\detail\adl\iter_swap.h;D:\cuda\dev\include\thrust\system\detail\adl\malloc_and_free.h;D:\cuda\dev\include\thrust\system\detail\adl\merge.h;D:\cuda\dev\include\thrust\system\detail\adl\mismatch.h;D:\cuda\dev\include\thrust\system\detail\adl\partition.h;D:\cuda\dev\include\thrust\system\detail\adl\reduce.h;D:\cuda\dev\include\thrust\system\detail\adl\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\adl\remove.h;D:\cuda\dev\include\thrust\system\detail\adl\replace.h;D:\cuda\dev\include\thrust\system\detail\adl\reverse.h;D:\cuda\dev\include\thrust\system\detail\adl\scan.h;D:\cuda\dev\include\thrust\system\detail\adl\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\adl\scatter.h;D:\cuda\dev\include\thrust\system\detail\adl\sequence.h;D:\cuda\dev\include\thrust\system\detail\adl\set_operations.h;D:\cuda\dev\include\thrust\system\detail\adl\sort.h;D:\cuda\dev\include\thrust\system\detail\adl\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\adl\tabulate.h;D:\cuda\dev\include\thrust\system\detail\adl\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\adl\transform.h;D:\cuda\dev\include\thrust\system\detail\adl\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\adl\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\adl\unique.h;D:\cuda\dev\include\thrust\system\detail\adl\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\bad_alloc.h;D:\cuda\dev\include\thrust\system\detail\errno.h;D:\cuda\dev\include\thrust\system\detail\error_category.inl;D:\cuda\dev\include\thrust\system\detail\error_code.inl;D:\cuda\dev\include\thrust\system\detail\error_condition.inl;D:\cuda\dev\include\thrust\system\detail\generic\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\generic\adjacent_difference.inl;D:\cuda\dev\include\thrust\system\detail\generic\advance.h;D:\cuda\dev\include\thrust\system\detail\generic\advance.inl;D:\cuda\dev\include\thrust\system\detail\generic\copy.h;D:\cuda\dev\include\thrust\system\detail\generic\copy.inl;D:\cuda\dev\include\thrust\system\detail\generic\copy_if.h;D:\cuda\dev\include\thrust\system\detail\generic\copy_if.inl;D:\cuda\dev\include\thrust\system\detail\generic\count.h;D:\cuda\dev\include\thrust\system\detail\generic\count.inl;D:\cuda\dev\include\thrust\system\detail\generic\distance.h;D:\cuda\dev\include\thrust\system\detail\generic\distance.inl;D:\cuda\dev\include\thrust\system\detail\generic\equal.h;D:\cuda\dev\include\thrust\system\detail\generic\equal.inl;D:\cuda\dev\include\thrust\system\detail\generic\extrema.h;D:\cuda\dev\include\thrust\system\detail\generic\extrema.inl;D:\cuda\dev\include\thrust\system\detail\generic\fill.h;D:\cuda\dev\include\thrust\system\detail\generic\find.h;D:\cuda\dev\include\thrust\system\detail\generic\find.inl;D:\cuda\dev\include\thrust\system\detail\generic\for_each.h;D:\cuda\dev\include\thrust\system\detail\generic\generate.h;D:\cuda\dev\include\thrust\system\detail\generic\generate.inl;D:\cuda\dev\include\thrust\system\detail\generic\memory.h;D:\cuda\dev\include\thrust\system\detail\generic\memory.inl;D:\cuda\dev\include\thrust\system\detail\generic\merge.h;D:\cuda\dev\include\thrust\system\detail\generic\merge.inl;D:\cuda\dev\include\thrust\system\detail\generic\mismatch.h;D:\cuda\dev\include\thrust\system\detail\generic\mismatch.inl;D:\cuda\dev\include\thrust\system\detail\generic\partition.h;D:\cuda\dev\include\thrust\system\detail\generic\partition.inl;D:\cuda\dev\include\thrust\system\detail\generic\reduce.h;D:\cuda\dev\include\thrust\system\detail\generic\reduce.inl;D:\cuda\dev\include\thrust\system\detail\generic\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\reduce_by_key.inl;D:\cuda\dev\include\thrust\system\detail\generic\remove.h;D:\cuda\dev\include\thrust\system\detail\generic\remove.inl;D:\cuda\dev\include\thrust\system\detail\generic\replace.h;D:\cuda\dev\include\thrust\system\detail\generic\replace.inl;D:\cuda\dev\include\thrust\system\detail\generic\reverse.h;D:\cuda\dev\include\thrust\system\detail\generic\reverse.inl;D:\cuda\dev\include\thrust\system\detail\generic\scan.h;D:\cuda\dev\include\thrust\system\detail\generic\scan.inl;D:\cuda\dev\include\thrust\system\detail\generic\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\scan_by_key.inl;D:\cuda\dev\include\thrust\system\detail\generic\scatter.h;D:\cuda\dev\include\thrust\system\detail\generic\scatter.inl;D:\cuda\dev\include\thrust\system\detail\generic\select_system.h;D:\cuda\dev\include\thrust\system\detail\generic\select_system.inl;D:\cuda\dev\include\thrust\system\detail\generic\select_system_exists.h;D:\cuda\dev\include\thrust\system\detail\generic\sequence.h;D:\cuda\dev\include\thrust\system\detail\generic\sequence.inl;D:\cuda\dev\include\thrust\system\detail\generic\set_operations.h;D:\cuda\dev\include\thrust\system\detail\generic\set_operations.inl;D:\cuda\dev\include\thrust\system\detail\generic\sort.h;D:\cuda\dev\include\thrust\system\detail\generic\sort.inl;D:\cuda\dev\include\thrust\system\detail\generic\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\generic\swap_ranges.inl;D:\cuda\dev\include\thrust\system\detail\generic\tabulate.h;D:\cuda\dev\include\thrust\system\detail\generic\tabulate.inl;D:\cuda\dev\include\thrust\system\detail\generic\tag.h;D:\cuda\dev\include\thrust\system\detail\generic\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\generic\temporary_buffer.inl;D:\cuda\dev\include\thrust\system\detail\generic\transform.h;D:\cuda\dev\include\thrust\system\detail\generic\transform.inl;D:\cuda\dev\include\thrust\system\detail\generic\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\generic\transform_reduce.inl;D:\cuda\dev\include\thrust\system\detail\generic\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\generic\uninitialized_fill.inl;D:\cuda\dev\include\thrust\system\detail\generic\unique.h;D:\cuda\dev\include\thrust\system\detail\generic\unique.inl;D:\cuda\dev\include\thrust\system\detail\generic\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\unique_by_key.inl;D:\cuda\dev\include\thrust\system\detail\sequential\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\sequential\assign_value.h;D:\cuda\dev\include\thrust\system\detail\sequential\binary_search.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy.inl;D:\cuda\dev\include\thrust\system\detail\sequential\copy_backward.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy_if.h;D:\cuda\dev\include\thrust\system\detail\sequential\count.h;D:\cuda\dev\include\thrust\system\detail\sequential\equal.h;D:\cuda\dev\include\thrust\system\detail\sequential\execution_policy.h;D:\cuda\dev\include\thrust\system\detail\sequential\extrema.h;D:\cuda\dev\include\thrust\system\detail\sequential\fill.h;D:\cuda\dev\include\thrust\system\detail\sequential\find.h;D:\cuda\dev\include\thrust\system\detail\sequential\for_each.h;D:\cuda\dev\include\thrust\system\detail\sequential\general_copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\generate.h;D:\cuda\dev\include\thrust\system\detail\sequential\get_value.h;D:\cuda\dev\include\thrust\system\detail\sequential\insertion_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\iter_swap.h;D:\cuda\dev\include\thrust\system\detail\sequential\malloc_and_free.h;D:\cuda\dev\include\thrust\system\detail\sequential\merge.h;D:\cuda\dev\include\thrust\system\detail\sequential\merge.inl;D:\cuda\dev\include\thrust\system\detail\sequential\mismatch.h;D:\cuda\dev\include\thrust\system\detail\sequential\partition.h;D:\cuda\dev\include\thrust\system\detail\sequential\reduce.h;D:\cuda\dev\include\thrust\system\detail\sequential\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\sequential\remove.h;D:\cuda\dev\include\thrust\system\detail\sequential\replace.h;D:\cuda\dev\include\thrust\system\detail\sequential\reverse.h;D:\cuda\dev\include\thrust\system\detail\sequential\scan.h;D:\cuda\dev\include\thrust\system\detail\sequential\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\sequential\scatter.h;D:\cuda\dev\include\thrust\system\detail\sequential\sequence.h;D:\cuda\dev\include\thrust\system\detail\sequential\set_operations.h;D:\cuda\dev\include\thrust\system\detail\sequential\sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_merge_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_merge_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_primitive_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_primitive_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_radix_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_radix_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\sequential\tabulate.h;D:\cuda\dev\include\thrust\system\detail\sequential\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\sequential\transform.h;D:\cuda\dev\include\thrust\system\detail\sequential\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\sequential\trivial_copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\sequential\unique.h;D:\cuda\dev\include\thrust\system\detail\sequential\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\system_error.inl;D:\cuda\dev\include\thrust\system\error_code.h;D:\cuda\dev\include\thrust\system\system_error.h;D:\cuda\dev\include\thrust\system_error.h;D:\cuda\dev\include\thrust\tabulate.h;D:\cuda\dev\include\thrust\transform.h;D:\cuda\dev\include\thrust\transform_reduce.h;D:\cuda\dev\include\thrust\tuple.h;D:\cuda\dev\include\thrust\type_traits\is_contiguous_iterator.h;D:\cuda\dev\include\thrust\type_traits\is_trivially_relocatable.h;D:\cuda\dev\include\thrust\type_traits\remove_cvref.h;D:\cuda\dev\include\thrust\type_traits\void_t.h;D:\cuda\dev\include\thrust\uninitialized_fill.h;D:\cuda\dev\include\thrust\unique.h;D:\cuda\dev\include\thrust\version.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\thrust.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.Debug.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_thrust.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_thrust.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\array;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\atomic;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cassert;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cctype;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cerrno;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\functional;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ios;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iostream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\istream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iterator;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\memory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ostream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\streambuf;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\string;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\system_error;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\tuple;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\typeinfo;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_typeinfo.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vector;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xcall_once.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xerrc.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xfacet;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xiosbase;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocale;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocinfo;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocinfo.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocnum;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\ctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\locale.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cub\agent\agent_radix_sort_downsweep.cuh;D:\cuda\dev\include\cub\agent\agent_radix_sort_upsweep.cuh;D:\cuda\dev\include\cub\agent\agent_reduce.cuh;D:\cuda\dev\include\cub\agent\agent_reduce_by_key.cuh;D:\cuda\dev\include\cub\agent\agent_scan.cuh;D:\cuda\dev\include\cub\agent\agent_select_if.cuh;D:\cuda\dev\include\cub\agent\single_pass_scan_operators.cuh;D:\cuda\dev\include\cub\block\block_adjacent_difference.cuh;D:\cuda\dev\include\cub\block\block_discontinuity.cuh;D:\cuda\dev\include\cub\block\block_exchange.cuh;D:\cuda\dev\include\cub\block\block_load.cuh;D:\cuda\dev\include\cub\block\block_radix_rank.cuh;D:\cuda\dev\include\cub\block\block_radix_sort.cuh;D:\cuda\dev\include\cub\block\block_raking_layout.cuh;D:\cuda\dev\include\cub\block\block_reduce.cuh;D:\cuda\dev\include\cub\block\block_scan.cuh;D:\cuda\dev\include\cub\block\block_store.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_raking.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_raking_commutative_only.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_warp_reductions.cuh;D:\cuda\dev\include\cub\block\specializations\block_scan_raking.cuh;D:\cuda\dev\include\cub\block\specializations\block_scan_warp_scans.cuh;D:\cuda\dev\include\cub\config.cuh;D:\cuda\dev\include\cub\device\device_partition.cuh;D:\cuda\dev\include\cub\device\device_radix_sort.cuh;D:\cuda\dev\include\cub\device\device_reduce.cuh;D:\cuda\dev\include\cub\device\device_scan.cuh;D:\cuda\dev\include\cub\device\device_select.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_radix_sort.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_reduce.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_reduce_by_key.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_scan.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_select_if.cuh;D:\cuda\dev\include\cub\grid\grid_even_share.cuh;D:\cuda\dev\include\cub\grid\grid_mapping.cuh;D:\cuda\dev\include\cub\grid\grid_queue.cuh;D:\cuda\dev\include\cub\iterator\arg_index_input_iterator.cuh;D:\cuda\dev\include\cub\iterator\cache_modified_input_iterator.cuh;D:\cuda\dev\include\cub\iterator\constant_input_iterator.cuh;D:\cuda\dev\include\cub\thread\thread_load.cuh;D:\cuda\dev\include\cub\thread\thread_operators.cuh;D:\cuda\dev\include\cub\thread\thread_reduce.cuh;D:\cuda\dev\include\cub\thread\thread_scan.cuh;D:\cuda\dev\include\cub\thread\thread_store.cuh;D:\cuda\dev\include\cub\util_arch.cuh;D:\cuda\dev\include\cub\util_compiler.cuh;D:\cuda\dev\include\cub\util_cpp_dialect.cuh;D:\cuda\dev\include\cub\util_debug.cuh;D:\cuda\dev\include\cub\util_deprecated.cuh;D:\cuda\dev\include\cub\util_device.cuh;D:\cuda\dev\include\cub\util_macro.cuh;D:\cuda\dev\include\cub\util_namespace.cuh;D:\cuda\dev\include\cub\util_ptx.cuh;D:\cuda\dev\include\cub\util_type.cuh;D:\cuda\dev\include\cub\version.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_reduce_shfl.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_reduce_smem.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_scan_shfl.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_scan_smem.cuh;D:\cuda\dev\include\cub\warp\warp_reduce.cuh;D:\cuda\dev\include\cub\warp\warp_scan.cuh;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_fp16.h;D:\cuda\dev\include\cuda_fp16.hpp;D:\cuda\dev\include\cuda_occupancy.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\thrust\adjacent_difference.h;D:\cuda\dev\include\thrust\advance.h;D:\cuda\dev\include\thrust\copy.h;D:\cuda\dev\include\thrust\count.h;D:\cuda\dev\include\thrust\detail\adjacent_difference.inl;D:\cuda\dev\include\thrust\detail\advance.inl;D:\cuda\dev\include\thrust\detail\alignment.h;D:\cuda\dev\include\thrust\detail\allocator\allocator_traits.h;D:\cuda\dev\include\thrust\detail\allocator\allocator_traits.inl;D:\cuda\dev\include\thrust\detail\allocator\copy_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\copy_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\default_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\default_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\destroy_range.h;D:\cuda\dev\include\thrust\detail\allocator\destroy_range.inl;D:\cuda\dev\include\thrust\detail\allocator\fill_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\fill_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\no_throw_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\tagged_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\tagged_allocator.inl;D:\cuda\dev\include\thrust\detail\allocator\temporary_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\temporary_allocator.inl;D:\cuda\dev\include\thrust\detail\allocator_aware_execution_policy.h;D:\cuda\dev\include\thrust\detail\config.h;D:\cuda\dev\include\thrust\detail\config\compiler.h;D:\cuda\dev\include\thrust\detail\config\config.h;D:\cuda\dev\include\thrust\detail\config\cpp_compatibility.h;D:\cuda\dev\include\thrust\detail\config\cpp_dialect.h;D:\cuda\dev\include\thrust\detail\config\debug.h;D:\cuda\dev\include\thrust\detail\config\deprecated.h;D:\cuda\dev\include\thrust\detail\config\device_system.h;D:\cuda\dev\include\thrust\detail\config\exec_check_disable.h;D:\cuda\dev\include\thrust\detail\config\forceinline.h;D:\cuda\dev\include\thrust\detail\config\global_workarounds.h;D:\cuda\dev\include\thrust\detail\config\host_device.h;D:\cuda\dev\include\thrust\detail\config\host_system.h;D:\cuda\dev\include\thrust\detail\config\simple_defines.h;D:\cuda\dev\include\thrust\detail\contiguous_storage.h;D:\cuda\dev\include\thrust\detail\contiguous_storage.inl;D:\cuda\dev\include\thrust\detail\copy.h;D:\cuda\dev\include\thrust\detail\copy.inl;D:\cuda\dev\include\thrust\detail\copy_if.h;D:\cuda\dev\include\thrust\detail\copy_if.inl;D:\cuda\dev\include\thrust\detail\count.inl;D:\cuda\dev\include\thrust\detail\cpp11_required.h;D:\cuda\dev\include\thrust\detail\cstdint.h;D:\cuda\dev\include\thrust\detail\dependencies_aware_execution_policy.h;D:\cuda\dev\include\thrust\detail\device_ptr.inl;D:\cuda\dev\include\thrust\detail\device_reference.inl;D:\cuda\dev\include\thrust\detail\device_vector.inl;D:\cuda\dev\include\thrust\detail\distance.inl;D:\cuda\dev\include\thrust\detail\equal.inl;D:\cuda\dev\include\thrust\detail\execute_with_allocator.h;D:\cuda\dev\include\thrust\detail\execute_with_allocator_fwd.h;D:\cuda\dev\include\thrust\detail\execute_with_dependencies.h;D:\cuda\dev\include\thrust\detail\execution_policy.h;D:\cuda\dev\include\thrust\detail\extrema.inl;D:\cuda\dev\include\thrust\detail\fill.inl;D:\cuda\dev\include\thrust\detail\find.inl;D:\cuda\dev\include\thrust\detail\for_each.inl;D:\cuda\dev\include\thrust\detail\function.h;D:\cuda\dev\include\thrust\detail\functional.inl;D:\cuda\dev\include\thrust\detail\functional\actor.h;D:\cuda\dev\include\thrust\detail\functional\actor.inl;D:\cuda\dev\include\thrust\detail\functional\argument.h;D:\cuda\dev\include\thrust\detail\functional\composite.h;D:\cuda\dev\include\thrust\detail\functional\operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\arithmetic_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\assignment_operator.h;D:\cuda\dev\include\thrust\detail\functional\operators\bitwise_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\compound_assignment_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\logical_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\operator_adaptors.h;D:\cuda\dev\include\thrust\detail\functional\operators\relational_operators.h;D:\cuda\dev\include\thrust\detail\functional\placeholder.h;D:\cuda\dev\include\thrust\detail\functional\value.h;D:\cuda\dev\include\thrust\detail\generate.inl;D:\cuda\dev\include\thrust\detail\get_iterator_value.h;D:\cuda\dev\include\thrust\detail\host_vector.inl;D:\cuda\dev\include\thrust\detail\integer_math.h;D:\cuda\dev\include\thrust\detail\integer_traits.h;D:\cuda\dev\include\thrust\detail\internal_functional.h;D:\cuda\dev\include\thrust\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\detail\merge.inl;D:\cuda\dev\include\thrust\detail\minmax.h;D:\cuda\dev\include\thrust\detail\mismatch.inl;D:\cuda\dev\include\thrust\detail\mpl\math.h;D:\cuda\dev\include\thrust\detail\numeric_traits.h;D:\cuda\dev\include\thrust\detail\overlapped_copy.h;D:\cuda\dev\include\thrust\detail\pair.inl;D:\cuda\dev\include\thrust\detail\partition.inl;D:\cuda\dev\include\thrust\detail\pointer.h;D:\cuda\dev\include\thrust\detail\pointer.inl;D:\cuda\dev\include\thrust\detail\preprocessor.h;D:\cuda\dev\include\thrust\detail\range\head_flags.h;D:\cuda\dev\include\thrust\detail\raw_pointer_cast.h;D:\cuda\dev\include\thrust\detail\raw_reference_cast.h;D:\cuda\dev\include\thrust\detail\reduce.inl;D:\cuda\dev\include\thrust\detail\reference.h;D:\cuda\dev\include\thrust\detail\reference.inl;D:\cuda\dev\include\thrust\detail\reference_forward_declaration.h;D:\cuda\dev\include\thrust\detail\remove.inl;D:\cuda\dev\include\thrust\detail\replace.inl;D:\cuda\dev\include\thrust\detail\reverse.inl;D:\cuda\dev\include\thrust\detail\scan.inl;D:\cuda\dev\include\thrust\detail\scatter.inl;D:\cuda\dev\include\thrust\detail\seq.h;D:\cuda\dev\include\thrust\detail\sequence.inl;D:\cuda\dev\include\thrust\detail\set_operations.inl;D:\cuda\dev\include\thrust\detail\sort.inl;D:\cuda\dev\include\thrust\detail\static_assert.h;D:\cuda\dev\include\thrust\detail\swap.h;D:\cuda\dev\include\thrust\detail\swap.inl;D:\cuda\dev\include\thrust\detail\swap_ranges.inl;D:\cuda\dev\include\thrust\detail\tabulate.inl;D:\cuda\dev\include\thrust\detail\temporary_array.h;D:\cuda\dev\include\thrust\detail\temporary_array.inl;D:\cuda\dev\include\thrust\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\detail\transform.inl;D:\cuda\dev\include\thrust\detail\transform_reduce.inl;D:\cuda\dev\include\thrust\detail\trivial_sequence.h;D:\cuda\dev\include\thrust\detail\tuple.inl;D:\cuda\dev\include\thrust\detail\tuple_meta_transform.h;D:\cuda\dev\include\thrust\detail\tuple_transform.h;D:\cuda\dev\include\thrust\detail\type_deduction.h;D:\cuda\dev\include\thrust\detail\type_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\algorithm\intermediate_type_from_function_and_iterators.h;D:\cuda\dev\include\thrust\detail\type_traits\function_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\has_member_function.h;D:\cuda\dev\include\thrust\detail\type_traits\has_nested_type.h;D:\cuda\dev\include\thrust\detail\type_traits\has_trivial_assign.h;D:\cuda\dev\include\thrust\detail\type_traits\is_call_possible.h;D:\cuda\dev\include\thrust\detail\type_traits\is_metafunction_defined.h;D:\cuda\dev\include\thrust\detail\type_traits\iterator\is_output_iterator.h;D:\cuda\dev\include\thrust\detail\type_traits\minimum_type.h;D:\cuda\dev\include\thrust\detail\type_traits\pointer_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\result_of_adaptable_function.h;D:\cuda\dev\include\thrust\detail\uninitialized_fill.inl;D:\cuda\dev\include\thrust\detail\unique.inl;D:\cuda\dev\include\thrust\detail\use_default.h;D:\cuda\dev\include\thrust\detail\vector_base.h;D:\cuda\dev\include\thrust\detail\vector_base.inl;D:\cuda\dev\include\thrust\device_allocator.h;D:\cuda\dev\include\thrust\device_ptr.h;D:\cuda\dev\include\thrust\device_reference.h;D:\cuda\dev\include\thrust\device_vector.h;D:\cuda\dev\include\thrust\distance.h;D:\cuda\dev\include\thrust\equal.h;D:\cuda\dev\include\thrust\execution_policy.h;D:\cuda\dev\include\thrust\extrema.h;D:\cuda\dev\include\thrust\fill.h;D:\cuda\dev\include\thrust\find.h;D:\cuda\dev\include\thrust\for_each.h;D:\cuda\dev\include\thrust\functional.h;D:\cuda\dev\include\thrust\generate.h;D:\cuda\dev\include\thrust\host_vector.h;D:\cuda\dev\include\thrust\iterator\constant_iterator.h;D:\cuda\dev\include\thrust\iterator\counting_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\any_assign.h;D:\cuda\dev\include\thrust\iterator\detail\any_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\constant_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\counting_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\device_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\distance_from_result.h;D:\cuda\dev\include\thrust\iterator\detail\host_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\is_iterator_category.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_adaptor_base.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_to_system.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_to_traversal.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_with_system_and_traversal.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_facade_category.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_traits.inl;D:\cuda\dev\include\thrust\iterator\detail\iterator_traversal_tags.h;D:\cuda\dev\include\thrust\iterator\detail\minimum_category.h;D:\cuda\dev\include\thrust\iterator\detail\minimum_system.h;D:\cuda\dev\include\thrust\iterator\detail\normal_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\permutation_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\reverse_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\reverse_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\tagged_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\transform_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\tuple_of_iterator_references.h;D:\cuda\dev\include\thrust\iterator\detail\universal_categories.h;D:\cuda\dev\include\thrust\iterator\detail\zip_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\zip_iterator_base.h;D:\cuda\dev\include\thrust\iterator\iterator_adaptor.h;D:\cuda\dev\include\thrust\iterator\iterator_categories.h;D:\cuda\dev\include\thrust\iterator\iterator_facade.h;D:\cuda\dev\include\thrust\iterator\iterator_traits.h;D:\cuda\dev\include\thrust\iterator\permutation_iterator.h;D:\cuda\dev\include\thrust\iterator\reverse_iterator.h;D:\cuda\dev\include\thrust\iterator\transform_iterator.h;D:\cuda\dev\include\thrust\iterator\zip_iterator.h;D:\cuda\dev\include\thrust\memory.h;D:\cuda\dev\include\thrust\memory\detail\device_system_resource.h;D:\cuda\dev\include\thrust\memory\detail\host_system_resource.h;D:\cuda\dev\include\thrust\merge.h;D:\cuda\dev\include\thrust\mismatch.h;D:\cuda\dev\include\thrust\mr\allocator.h;D:\cuda\dev\include\thrust\mr\detail\config.h;D:\cuda\dev\include\thrust\mr\fancy_pointer_resource.h;D:\cuda\dev\include\thrust\mr\memory_resource.h;D:\cuda\dev\include\thrust\mr\new.h;D:\cuda\dev\include\thrust\mr\polymorphic_adaptor.h;D:\cuda\dev\include\thrust\mr\validator.h;D:\cuda\dev\include\thrust\pair.h;D:\cuda\dev\include\thrust\partition.h;D:\cuda\dev\include\thrust\reduce.h;D:\cuda\dev\include\thrust\remove.h;D:\cuda\dev\include\thrust\replace.h;D:\cuda\dev\include\thrust\reverse.h;D:\cuda\dev\include\thrust\scan.h;D:\cuda\dev\include\thrust\scatter.h;D:\cuda\dev\include\thrust\sequence.h;D:\cuda\dev\include\thrust\set_operations.h;D:\cuda\dev\include\thrust\sort.h;D:\cuda\dev\include\thrust\swap.h;D:\cuda\dev\include\thrust\system\cpp\detail\adjacent_difference.h;D:\cuda\dev\include\thrust\system\cpp\detail\assign_value.h;D:\cuda\dev\include\thrust\system\cpp\detail\binary_search.h;D:\cuda\dev\include\thrust\system\cpp\detail\copy.h;D:\cuda\dev\include\thrust\system\cpp\detail\copy_if.h;D:\cuda\dev\include\thrust\system\cpp\detail\count.h;D:\cuda\dev\include\thrust\system\cpp\detail\equal.h;D:\cuda\dev\include\thrust\system\cpp\detail\execution_policy.h;D:\cuda\dev\include\thrust\system\cpp\detail\extrema.h;D:\cuda\dev\include\thrust\system\cpp\detail\fill.h;D:\cuda\dev\include\thrust\system\cpp\detail\find.h;D:\cuda\dev\include\thrust\system\cpp\detail\for_each.h;D:\cuda\dev\include\thrust\system\cpp\detail\gather.h;D:\cuda\dev\include\thrust\system\cpp\detail\generate.h;D:\cuda\dev\include\thrust\system\cpp\detail\get_value.h;D:\cuda\dev\include\thrust\system\cpp\detail\inner_product.h;D:\cuda\dev\include\thrust\system\cpp\detail\iter_swap.h;D:\cuda\dev\include\thrust\system\cpp\detail\logical.h;D:\cuda\dev\include\thrust\system\cpp\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\system\cpp\detail\merge.h;D:\cuda\dev\include\thrust\system\cpp\detail\mismatch.h;D:\cuda\dev\include\thrust\system\cpp\detail\par.h;D:\cuda\dev\include\thrust\system\cpp\detail\partition.h;D:\cuda\dev\include\thrust\system\cpp\detail\pointer.inl;D:\cuda\dev\include\thrust\system\cpp\detail\reduce.h;D:\cuda\dev\include\thrust\system\cpp\detail\reduce_by_key.h;D:\cuda\dev\include\thrust\system\cpp\detail\remove.h;D:\cuda\dev\include\thrust\system\cpp\detail\replace.h;D:\cuda\dev\include\thrust\system\cpp\detail\reverse.h;D:\cuda\dev\include\thrust\system\cpp\detail\scan.h;D:\cuda\dev\include\thrust\system\cpp\detail\scan_by_key.h;D:\cuda\dev\include\thrust\system\cpp\detail\scatter.h;D:\cuda\dev\include\thrust\system\cpp\detail\sequence.h;D:\cuda\dev\include\thrust\system\cpp\detail\set_operations.h;D:\cuda\dev\include\thrust\system\cpp\detail\sort.h;D:\cuda\dev\include\thrust\system\cpp\detail\swap_ranges.h;D:\cuda\dev\include\thrust\system\cpp\detail\tabulate.h;D:\cuda\dev\include\thrust\system\cpp\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform_reduce.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform_scan.h;D:\cuda\dev\include\thrust\system\cpp\detail\uninitialized_copy.h;D:\cuda\dev\include\thrust\system\cpp\detail\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\cpp\detail\unique.h;D:\cuda\dev\include\thrust\system\cpp\detail\unique_by_key.h;D:\cuda\dev\include\thrust\system\cpp\execution_policy.h;D:\cuda\dev\include\thrust\system\cpp\memory_resource.h;D:\cuda\dev\include\thrust\system\cpp\pointer.h;D:\cuda\dev\include\thrust\system\cuda\config.h;D:\cuda\dev\include\thrust\system\cuda\detail\adjacent_difference.h;D:\cuda\dev\include\thrust\system\cuda\detail\assign_value.h;D:\cuda\dev\include\thrust\system\cuda\detail\binary_search.h;D:\cuda\dev\include\thrust\system\cuda\detail\copy.h;D:\cuda\dev\include\thrust\system\cuda\detail\copy_if.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\agent_launcher.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\alignment.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\triple_chevron_launch.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\util.h;D:\cuda\dev\include\thrust\system\cuda\detail\count.h;D:\cuda\dev\include\thrust\system\cuda\detail\cross_system.h;D:\cuda\dev\include\thrust\system\cuda\detail\dispatch.h;D:\cuda\dev\include\thrust\system\cuda\detail\equal.h;D:\cuda\dev\include\thrust\system\cuda\detail\error.inl;D:\cuda\dev\include\thrust\system\cuda\detail\execution_policy.h;D:\cuda\dev\include\thrust\system\cuda\detail\extrema.h;D:\cuda\dev\include\thrust\system\cuda\detail\fill.h;D:\cuda\dev\include\thrust\system\cuda\detail\find.h;D:\cuda\dev\include\thrust\system\cuda\detail\for_each.h;D:\cuda\dev\include\thrust\system\cuda\detail\gather.h;D:\cuda\dev\include\thrust\system\cuda\detail\generate.h;D:\cuda\dev\include\thrust\system\cuda\detail\get_value.h;D:\cuda\dev\include\thrust\system\cuda\detail\guarded_cuda_runtime_api.h;D:\cuda\dev\include\thrust\system\cuda\detail\guarded_driver_types.h;D:\cuda\dev\include\thrust\system\cuda\detail\inner_product.h;D:\cuda\dev\include\thrust\system\cuda\detail\internal\copy_cross_system.h;D:\cuda\dev\include\thrust\system\cuda\detail\internal\copy_device_to_device.h;D:\cuda\dev\include\thrust\system\cuda\detail\iter_swap.h;D:\cuda\dev\include\thrust\system\cuda\detail\make_unsigned_special.h;D:\cuda\dev\include\thrust\system\cuda\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\system\cuda\detail\managed_memory_pointer.h;D:\cuda\dev\include\thrust\system\cuda\detail\merge.h;D:\cuda\dev\include\thrust\system\cuda\detail\mismatch.h;D:\cuda\dev\include\thrust\system\cuda\detail\par.h;D:\cuda\dev\include\thrust\system\cuda\detail\par_to_seq.h;D:\cuda\dev\include\thrust\system\cuda\detail\parallel_for.h;D:\cuda\dev\include\thrust\system\cuda\detail\partition.h;D:\cuda\dev\include\thrust\system\cuda\detail\pointer.inl;D:\cuda\dev\include\thrust\system\cuda\detail\reduce.h;D:\cuda\dev\include\thrust\system\cuda\detail\reduce_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\remove.h;D:\cuda\dev\include\thrust\system\cuda\detail\replace.h;D:\cuda\dev\include\thrust\system\cuda\detail\reverse.h;D:\cuda\dev\include\thrust\system\cuda\detail\scan.h;D:\cuda\dev\include\thrust\system\cuda\detail\scan_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\scatter.h;D:\cuda\dev\include\thrust\system\cuda\detail\sequence.h;D:\cuda\dev\include\thrust\system\cuda\detail\set_operations.h;D:\cuda\dev\include\thrust\system\cuda\detail\sort.h;D:\cuda\dev\include\thrust\system\cuda\detail\swap_ranges.h;D:\cuda\dev\include\thrust\system\cuda\detail\tabulate.h;D:\cuda\dev\include\thrust\system\cuda\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\system\cuda\detail\terminate.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform_reduce.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform_scan.h;D:\cuda\dev\include\thrust\system\cuda\detail\uninitialized_copy.h;D:\cuda\dev\include\thrust\system\cuda\detail\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\cuda\detail\unique.h;D:\cuda\dev\include\thrust\system\cuda\detail\unique_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\util.h;D:\cuda\dev\include\thrust\system\cuda\error.h;D:\cuda\dev\include\thrust\system\cuda\execution_policy.h;D:\cuda\dev\include\thrust\system\cuda\memory_resource.h;D:\cuda\dev\include\thrust\system\cuda\pointer.h;D:\cuda\dev\include\thrust\system\detail\adl\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\adl\assign_value.h;D:\cuda\dev\include\thrust\system\detail\adl\copy.h;D:\cuda\dev\include\thrust\system\detail\adl\copy_if.h;D:\cuda\dev\include\thrust\system\detail\adl\count.h;D:\cuda\dev\include\thrust\system\detail\adl\equal.h;D:\cuda\dev\include\thrust\system\detail\adl\extrema.h;D:\cuda\dev\include\thrust\system\detail\adl\fill.h;D:\cuda\dev\include\thrust\system\detail\adl\find.h;D:\cuda\dev\include\thrust\system\detail\adl\for_each.h;D:\cuda\dev\include\thrust\system\detail\adl\generate.h;D:\cuda\dev\include\thrust\system\detail\adl\get_value.h;D:\cuda\dev\include\thrust\system\detail\adl\iter_swap.h;D:\cuda\dev\include\thrust\system\detail\adl\malloc_and_free.h;D:\cuda\dev\include\thrust\system\detail\adl\merge.h;D:\cuda\dev\include\thrust\system\detail\adl\mismatch.h;D:\cuda\dev\include\thrust\system\detail\adl\partition.h;D:\cuda\dev\include\thrust\system\detail\adl\reduce.h;D:\cuda\dev\include\thrust\system\detail\adl\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\adl\remove.h;D:\cuda\dev\include\thrust\system\detail\adl\replace.h;D:\cuda\dev\include\thrust\system\detail\adl\reverse.h;D:\cuda\dev\include\thrust\system\detail\adl\scan.h;D:\cuda\dev\include\thrust\system\detail\adl\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\adl\scatter.h;D:\cuda\dev\include\thrust\system\detail\adl\sequence.h;D:\cuda\dev\include\thrust\system\detail\adl\set_operations.h;D:\cuda\dev\include\thrust\system\detail\adl\sort.h;D:\cuda\dev\include\thrust\system\detail\adl\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\adl\tabulate.h;D:\cuda\dev\include\thrust\system\detail\adl\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\adl\transform.h;D:\cuda\dev\include\thrust\system\detail\adl\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\adl\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\adl\unique.h;D:\cuda\dev\include\thrust\system\detail\adl\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\bad_alloc.h;D:\cuda\dev\include\thrust\system\detail\errno.h;D:\cuda\dev\include\thrust\system\detail\error_category.inl;D:\cuda\dev\include\thrust\system\detail\error_code.inl;D:\cuda\dev\include\thrust\system\detail\error_condition.inl;D:\cuda\dev\include\thrust\system\detail\generic\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\generic\adjacent_difference.inl;D:\cuda\dev\include\thrust\system\detail\generic\advance.h;D:\cuda\dev\include\thrust\system\detail\generic\advance.inl;D:\cuda\dev\include\thrust\system\detail\generic\copy.h;D:\cuda\dev\include\thrust\system\detail\generic\copy.inl;D:\cuda\dev\include\thrust\system\detail\generic\copy_if.h;D:\cuda\dev\include\thrust\system\detail\generic\copy_if.inl;D:\cuda\dev\include\thrust\system\detail\generic\count.h;D:\cuda\dev\include\thrust\system\detail\generic\count.inl;D:\cuda\dev\include\thrust\system\detail\generic\distance.h;D:\cuda\dev\include\thrust\system\detail\generic\distance.inl;D:\cuda\dev\include\thrust\system\detail\generic\equal.h;D:\cuda\dev\include\thrust\system\detail\generic\equal.inl;D:\cuda\dev\include\thrust\system\detail\generic\extrema.h;D:\cuda\dev\include\thrust\system\detail\generic\extrema.inl;D:\cuda\dev\include\thrust\system\detail\generic\fill.h;D:\cuda\dev\include\thrust\system\detail\generic\find.h;D:\cuda\dev\include\thrust\system\detail\generic\find.inl;D:\cuda\dev\include\thrust\system\detail\generic\for_each.h;D:\cuda\dev\include\thrust\system\detail\generic\generate.h;D:\cuda\dev\include\thrust\system\detail\generic\generate.inl;D:\cuda\dev\include\thrust\system\detail\generic\memory.h;D:\cuda\dev\include\thrust\system\detail\generic\memory.inl;D:\cuda\dev\include\thrust\system\detail\generic\merge.h;D:\cuda\dev\include\thrust\system\detail\generic\merge.inl;D:\cuda\dev\include\thrust\system\detail\generic\mismatch.h;D:\cuda\dev\include\thrust\system\detail\generic\mismatch.inl;D:\cuda\dev\include\thrust\system\detail\generic\partition.h;D:\cuda\dev\include\thrust\system\detail\generic\partition.inl;D:\cuda\dev\include\thrust\system\detail\generic\reduce.h;D:\cuda\dev\include\thrust\system\detail\generic\reduce.inl;D:\cuda\dev\include\thrust\system\detail\generic\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\reduce_by_key.inl;D:\cuda\dev\include\thrust\system\detail\generic\remove.h;D:\cuda\dev\include\thrust\system\detail\generic\remove.inl;D:\cuda\dev\include\thrust\system\detail\generic\replace.h;D:\cuda\dev\include\thrust\system\detail\generic\replace.inl;D:\cuda\dev\include\thrust\system\detail\generic\reverse.h;D:\cuda\dev\include\thrust\system\detail\generic\reverse.inl;D:\cuda\dev\include\thrust\system\detail\generic\scan.h;D:\cuda\dev\include\thrust\system\detail\generic\scan.inl;D:\cuda\dev\include\thrust\system\detail\generic\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\scan_by_key.inl;D:\cuda\dev\include\thrust\system\detail\generic\scatter.h;D:\cuda\dev\include\thrust\system\detail\generic\scatter.inl;D:\cuda\dev\include\thrust\system\detail\generic\select_system.h;D:\cuda\dev\include\thrust\system\detail\generic\select_system.inl;D:\cuda\dev\include\thrust\system\detail\generic\select_system_exists.h;D:\cuda\dev\include\thrust\system\detail\generic\sequence.h;D:\cuda\dev\include\thrust\system\detail\generic\sequence.inl;D:\cuda\dev\include\thrust\system\detail\generic\set_operations.h;D:\cuda\dev\include\thrust\system\detail\generic\set_operations.inl;D:\cuda\dev\include\thrust\system\detail\generic\sort.h;D:\cuda\dev\include\thrust\system\detail\generic\sort.inl;D:\cuda\dev\include\thrust\system\detail\generic\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\generic\swap_ranges.inl;D:\cuda\dev\include\thrust\system\detail\generic\tabulate.h;D:\cuda\dev\include\thrust\system\detail\generic\tabulate.inl;D:\cuda\dev\include\thrust\system\detail\generic\tag.h;D:\cuda\dev\include\thrust\system\detail\generic\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\generic\temporary_buffer.inl;D:\cuda\dev\include\thrust\system\detail\generic\transform.h;D:\cuda\dev\include\thrust\system\detail\generic\transform.inl;D:\cuda\dev\include\thrust\system\detail\generic\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\generic\transform_reduce.inl;D:\cuda\dev\include\thrust\system\detail\generic\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\generic\uninitialized_fill.inl;D:\cuda\dev\include\thrust\system\detail\generic\unique.h;D:\cuda\dev\include\thrust\system\detail\generic\unique.inl;D:\cuda\dev\include\thrust\system\detail\generic\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\unique_by_key.inl;D:\cuda\dev\include\thrust\system\detail\sequential\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\sequential\assign_value.h;D:\cuda\dev\include\thrust\system\detail\sequential\binary_search.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy.inl;D:\cuda\dev\include\thrust\system\detail\sequential\copy_backward.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy_if.h;D:\cuda\dev\include\thrust\system\detail\sequential\count.h;D:\cuda\dev\include\thrust\system\detail\sequential\equal.h;D:\cuda\dev\include\thrust\system\detail\sequential\execution_policy.h;D:\cuda\dev\include\thrust\system\detail\sequential\extrema.h;D:\cuda\dev\include\thrust\system\detail\sequential\fill.h;D:\cuda\dev\include\thrust\system\detail\sequential\find.h;D:\cuda\dev\include\thrust\system\detail\sequential\for_each.h;D:\cuda\dev\include\thrust\system\detail\sequential\general_copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\generate.h;D:\cuda\dev\include\thrust\system\detail\sequential\get_value.h;D:\cuda\dev\include\thrust\system\detail\sequential\insertion_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\iter_swap.h;D:\cuda\dev\include\thrust\system\detail\sequential\malloc_and_free.h;D:\cuda\dev\include\thrust\system\detail\sequential\merge.h;D:\cuda\dev\include\thrust\system\detail\sequential\merge.inl;D:\cuda\dev\include\thrust\system\detail\sequential\mismatch.h;D:\cuda\dev\include\thrust\system\detail\sequential\partition.h;D:\cuda\dev\include\thrust\system\detail\sequential\reduce.h;D:\cuda\dev\include\thrust\system\detail\sequential\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\sequential\remove.h;D:\cuda\dev\include\thrust\system\detail\sequential\replace.h;D:\cuda\dev\include\thrust\system\detail\sequential\reverse.h;D:\cuda\dev\include\thrust\system\detail\sequential\scan.h;D:\cuda\dev\include\thrust\system\detail\sequential\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\sequential\scatter.h;D:\cuda\dev\include\thrust\system\detail\sequential\sequence.h;D:\cuda\dev\include\thrust\system\detail\sequential\set_operations.h;D:\cuda\dev\include\thrust\system\detail\sequential\sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_merge_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_merge_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_primitive_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_primitive_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_radix_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_radix_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\sequential\tabulate.h;D:\cuda\dev\include\thrust\system\detail\sequential\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\sequential\transform.h;D:\cuda\dev\include\thrust\system\detail\sequential\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\sequential\trivial_copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\sequential\unique.h;D:\cuda\dev\include\thrust\system\detail\sequential\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\system_error.inl;D:\cuda\dev\include\thrust\system\error_code.h;D:\cuda\dev\include\thrust\system\system_error.h;D:\cuda\dev\include\thrust\system_error.h;D:\cuda\dev\include\thrust\tabulate.h;D:\cuda\dev\include\thrust\transform.h;D:\cuda\dev\include\thrust\transform_reduce.h;D:\cuda\dev\include\thrust\tuple.h;D:\cuda\dev\include\thrust\type_traits\is_contiguous_iterator.h;D:\cuda\dev\include\thrust\type_traits\is_trivially_relocatable.h;D:\cuda\dev\include\thrust\type_traits\remove_cvref.h;D:\cuda\dev\include\thrust\type_traits\void_t.h;D:\cuda\dev\include\thrust\uninitialized_fill.h;D:\cuda\dev\include\thrust\unique.h;D:\cuda\dev\include\thrust\version.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\thrust.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.Release.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_thrust.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_thrust.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.MinSizeRel.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\array;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\atomic;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cassert;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cctype;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cerrno;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\functional;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ios;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iostream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\istream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iterator;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\memory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ostream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\streambuf;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\string;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\system_error;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\tuple;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\typeinfo;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_typeinfo.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vector;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xcall_once.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xerrc.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xfacet;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xiosbase;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocale;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocinfo;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocinfo.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocnum;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\ctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\locale.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cub\agent\agent_radix_sort_downsweep.cuh;D:\cuda\dev\include\cub\agent\agent_radix_sort_upsweep.cuh;D:\cuda\dev\include\cub\agent\agent_reduce.cuh;D:\cuda\dev\include\cub\agent\agent_reduce_by_key.cuh;D:\cuda\dev\include\cub\agent\agent_scan.cuh;D:\cuda\dev\include\cub\agent\agent_select_if.cuh;D:\cuda\dev\include\cub\agent\single_pass_scan_operators.cuh;D:\cuda\dev\include\cub\block\block_adjacent_difference.cuh;D:\cuda\dev\include\cub\block\block_discontinuity.cuh;D:\cuda\dev\include\cub\block\block_exchange.cuh;D:\cuda\dev\include\cub\block\block_load.cuh;D:\cuda\dev\include\cub\block\block_radix_rank.cuh;D:\cuda\dev\include\cub\block\block_radix_sort.cuh;D:\cuda\dev\include\cub\block\block_raking_layout.cuh;D:\cuda\dev\include\cub\block\block_reduce.cuh;D:\cuda\dev\include\cub\block\block_scan.cuh;D:\cuda\dev\include\cub\block\block_store.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_raking.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_raking_commutative_only.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_warp_reductions.cuh;D:\cuda\dev\include\cub\block\specializations\block_scan_raking.cuh;D:\cuda\dev\include\cub\block\specializations\block_scan_warp_scans.cuh;D:\cuda\dev\include\cub\config.cuh;D:\cuda\dev\include\cub\device\device_partition.cuh;D:\cuda\dev\include\cub\device\device_radix_sort.cuh;D:\cuda\dev\include\cub\device\device_reduce.cuh;D:\cuda\dev\include\cub\device\device_scan.cuh;D:\cuda\dev\include\cub\device\device_select.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_radix_sort.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_reduce.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_reduce_by_key.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_scan.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_select_if.cuh;D:\cuda\dev\include\cub\grid\grid_even_share.cuh;D:\cuda\dev\include\cub\grid\grid_mapping.cuh;D:\cuda\dev\include\cub\grid\grid_queue.cuh;D:\cuda\dev\include\cub\iterator\arg_index_input_iterator.cuh;D:\cuda\dev\include\cub\iterator\cache_modified_input_iterator.cuh;D:\cuda\dev\include\cub\iterator\constant_input_iterator.cuh;D:\cuda\dev\include\cub\thread\thread_load.cuh;D:\cuda\dev\include\cub\thread\thread_operators.cuh;D:\cuda\dev\include\cub\thread\thread_reduce.cuh;D:\cuda\dev\include\cub\thread\thread_scan.cuh;D:\cuda\dev\include\cub\thread\thread_store.cuh;D:\cuda\dev\include\cub\util_arch.cuh;D:\cuda\dev\include\cub\util_compiler.cuh;D:\cuda\dev\include\cub\util_cpp_dialect.cuh;D:\cuda\dev\include\cub\util_debug.cuh;D:\cuda\dev\include\cub\util_deprecated.cuh;D:\cuda\dev\include\cub\util_device.cuh;D:\cuda\dev\include\cub\util_macro.cuh;D:\cuda\dev\include\cub\util_namespace.cuh;D:\cuda\dev\include\cub\util_ptx.cuh;D:\cuda\dev\include\cub\util_type.cuh;D:\cuda\dev\include\cub\version.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_reduce_shfl.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_reduce_smem.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_scan_shfl.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_scan_smem.cuh;D:\cuda\dev\include\cub\warp\warp_reduce.cuh;D:\cuda\dev\include\cub\warp\warp_scan.cuh;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_fp16.h;D:\cuda\dev\include\cuda_fp16.hpp;D:\cuda\dev\include\cuda_occupancy.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\thrust\adjacent_difference.h;D:\cuda\dev\include\thrust\advance.h;D:\cuda\dev\include\thrust\copy.h;D:\cuda\dev\include\thrust\count.h;D:\cuda\dev\include\thrust\detail\adjacent_difference.inl;D:\cuda\dev\include\thrust\detail\advance.inl;D:\cuda\dev\include\thrust\detail\alignment.h;D:\cuda\dev\include\thrust\detail\allocator\allocator_traits.h;D:\cuda\dev\include\thrust\detail\allocator\allocator_traits.inl;D:\cuda\dev\include\thrust\detail\allocator\copy_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\copy_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\default_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\default_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\destroy_range.h;D:\cuda\dev\include\thrust\detail\allocator\destroy_range.inl;D:\cuda\dev\include\thrust\detail\allocator\fill_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\fill_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\no_throw_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\tagged_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\tagged_allocator.inl;D:\cuda\dev\include\thrust\detail\allocator\temporary_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\temporary_allocator.inl;D:\cuda\dev\include\thrust\detail\allocator_aware_execution_policy.h;D:\cuda\dev\include\thrust\detail\config.h;D:\cuda\dev\include\thrust\detail\config\compiler.h;D:\cuda\dev\include\thrust\detail\config\config.h;D:\cuda\dev\include\thrust\detail\config\cpp_compatibility.h;D:\cuda\dev\include\thrust\detail\config\cpp_dialect.h;D:\cuda\dev\include\thrust\detail\config\debug.h;D:\cuda\dev\include\thrust\detail\config\deprecated.h;D:\cuda\dev\include\thrust\detail\config\device_system.h;D:\cuda\dev\include\thrust\detail\config\exec_check_disable.h;D:\cuda\dev\include\thrust\detail\config\forceinline.h;D:\cuda\dev\include\thrust\detail\config\global_workarounds.h;D:\cuda\dev\include\thrust\detail\config\host_device.h;D:\cuda\dev\include\thrust\detail\config\host_system.h;D:\cuda\dev\include\thrust\detail\config\simple_defines.h;D:\cuda\dev\include\thrust\detail\contiguous_storage.h;D:\cuda\dev\include\thrust\detail\contiguous_storage.inl;D:\cuda\dev\include\thrust\detail\copy.h;D:\cuda\dev\include\thrust\detail\copy.inl;D:\cuda\dev\include\thrust\detail\copy_if.h;D:\cuda\dev\include\thrust\detail\copy_if.inl;D:\cuda\dev\include\thrust\detail\count.inl;D:\cuda\dev\include\thrust\detail\cpp11_required.h;D:\cuda\dev\include\thrust\detail\cstdint.h;D:\cuda\dev\include\thrust\detail\dependencies_aware_execution_policy.h;D:\cuda\dev\include\thrust\detail\device_ptr.inl;D:\cuda\dev\include\thrust\detail\device_reference.inl;D:\cuda\dev\include\thrust\detail\device_vector.inl;D:\cuda\dev\include\thrust\detail\distance.inl;D:\cuda\dev\include\thrust\detail\equal.inl;D:\cuda\dev\include\thrust\detail\execute_with_allocator.h;D:\cuda\dev\include\thrust\detail\execute_with_allocator_fwd.h;D:\cuda\dev\include\thrust\detail\execute_with_dependencies.h;D:\cuda\dev\include\thrust\detail\execution_policy.h;D:\cuda\dev\include\thrust\detail\extrema.inl;D:\cuda\dev\include\thrust\detail\fill.inl;D:\cuda\dev\include\thrust\detail\find.inl;D:\cuda\dev\include\thrust\detail\for_each.inl;D:\cuda\dev\include\thrust\detail\function.h;D:\cuda\dev\include\thrust\detail\functional.inl;D:\cuda\dev\include\thrust\detail\functional\actor.h;D:\cuda\dev\include\thrust\detail\functional\actor.inl;D:\cuda\dev\include\thrust\detail\functional\argument.h;D:\cuda\dev\include\thrust\detail\functional\composite.h;D:\cuda\dev\include\thrust\detail\functional\operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\arithmetic_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\assignment_operator.h;D:\cuda\dev\include\thrust\detail\functional\operators\bitwise_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\compound_assignment_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\logical_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\operator_adaptors.h;D:\cuda\dev\include\thrust\detail\functional\operators\relational_operators.h;D:\cuda\dev\include\thrust\detail\functional\placeholder.h;D:\cuda\dev\include\thrust\detail\functional\value.h;D:\cuda\dev\include\thrust\detail\generate.inl;D:\cuda\dev\include\thrust\detail\get_iterator_value.h;D:\cuda\dev\include\thrust\detail\host_vector.inl;D:\cuda\dev\include\thrust\detail\integer_math.h;D:\cuda\dev\include\thrust\detail\integer_traits.h;D:\cuda\dev\include\thrust\detail\internal_functional.h;D:\cuda\dev\include\thrust\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\detail\merge.inl;D:\cuda\dev\include\thrust\detail\minmax.h;D:\cuda\dev\include\thrust\detail\mismatch.inl;D:\cuda\dev\include\thrust\detail\mpl\math.h;D:\cuda\dev\include\thrust\detail\numeric_traits.h;D:\cuda\dev\include\thrust\detail\overlapped_copy.h;D:\cuda\dev\include\thrust\detail\pair.inl;D:\cuda\dev\include\thrust\detail\partition.inl;D:\cuda\dev\include\thrust\detail\pointer.h;D:\cuda\dev\include\thrust\detail\pointer.inl;D:\cuda\dev\include\thrust\detail\preprocessor.h;D:\cuda\dev\include\thrust\detail\range\head_flags.h;D:\cuda\dev\include\thrust\detail\raw_pointer_cast.h;D:\cuda\dev\include\thrust\detail\raw_reference_cast.h;D:\cuda\dev\include\thrust\detail\reduce.inl;D:\cuda\dev\include\thrust\detail\reference.h;D:\cuda\dev\include\thrust\detail\reference.inl;D:\cuda\dev\include\thrust\detail\reference_forward_declaration.h;D:\cuda\dev\include\thrust\detail\remove.inl;D:\cuda\dev\include\thrust\detail\replace.inl;D:\cuda\dev\include\thrust\detail\reverse.inl;D:\cuda\dev\include\thrust\detail\scan.inl;D:\cuda\dev\include\thrust\detail\scatter.inl;D:\cuda\dev\include\thrust\detail\seq.h;D:\cuda\dev\include\thrust\detail\sequence.inl;D:\cuda\dev\include\thrust\detail\set_operations.inl;D:\cuda\dev\include\thrust\detail\sort.inl;D:\cuda\dev\include\thrust\detail\static_assert.h;D:\cuda\dev\include\thrust\detail\swap.h;D:\cuda\dev\include\thrust\detail\swap.inl;D:\cuda\dev\include\thrust\detail\swap_ranges.inl;D:\cuda\dev\include\thrust\detail\tabulate.inl;D:\cuda\dev\include\thrust\detail\temporary_array.h;D:\cuda\dev\include\thrust\detail\temporary_array.inl;D:\cuda\dev\include\thrust\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\detail\transform.inl;D:\cuda\dev\include\thrust\detail\transform_reduce.inl;D:\cuda\dev\include\thrust\detail\trivial_sequence.h;D:\cuda\dev\include\thrust\detail\tuple.inl;D:\cuda\dev\include\thrust\detail\tuple_meta_transform.h;D:\cuda\dev\include\thrust\detail\tuple_transform.h;D:\cuda\dev\include\thrust\detail\type_deduction.h;D:\cuda\dev\include\thrust\detail\type_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\algorithm\intermediate_type_from_function_and_iterators.h;D:\cuda\dev\include\thrust\detail\type_traits\function_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\has_member_function.h;D:\cuda\dev\include\thrust\detail\type_traits\has_nested_type.h;D:\cuda\dev\include\thrust\detail\type_traits\has_trivial_assign.h;D:\cuda\dev\include\thrust\detail\type_traits\is_call_possible.h;D:\cuda\dev\include\thrust\detail\type_traits\is_metafunction_defined.h;D:\cuda\dev\include\thrust\detail\type_traits\iterator\is_output_iterator.h;D:\cuda\dev\include\thrust\detail\type_traits\minimum_type.h;D:\cuda\dev\include\thrust\detail\type_traits\pointer_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\result_of_adaptable_function.h;D:\cuda\dev\include\thrust\detail\uninitialized_fill.inl;D:\cuda\dev\include\thrust\detail\unique.inl;D:\cuda\dev\include\thrust\detail\use_default.h;D:\cuda\dev\include\thrust\detail\vector_base.h;D:\cuda\dev\include\thrust\detail\vector_base.inl;D:\cuda\dev\include\thrust\device_allocator.h;D:\cuda\dev\include\thrust\device_ptr.h;D:\cuda\dev\include\thrust\device_reference.h;D:\cuda\dev\include\thrust\device_vector.h;D:\cuda\dev\include\thrust\distance.h;D:\cuda\dev\include\thrust\equal.h;D:\cuda\dev\include\thrust\execution_policy.h;D:\cuda\dev\include\thrust\extrema.h;D:\cuda\dev\include\thrust\fill.h;D:\cuda\dev\include\thrust\find.h;D:\cuda\dev\include\thrust\for_each.h;D:\cuda\dev\include\thrust\functional.h;D:\cuda\dev\include\thrust\generate.h;D:\cuda\dev\include\thrust\host_vector.h;D:\cuda\dev\include\thrust\iterator\constant_iterator.h;D:\cuda\dev\include\thrust\iterator\counting_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\any_assign.h;D:\cuda\dev\include\thrust\iterator\detail\any_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\constant_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\counting_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\device_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\distance_from_result.h;D:\cuda\dev\include\thrust\iterator\detail\host_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\is_iterator_category.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_adaptor_base.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_to_system.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_to_traversal.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_with_system_and_traversal.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_facade_category.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_traits.inl;D:\cuda\dev\include\thrust\iterator\detail\iterator_traversal_tags.h;D:\cuda\dev\include\thrust\iterator\detail\minimum_category.h;D:\cuda\dev\include\thrust\iterator\detail\minimum_system.h;D:\cuda\dev\include\thrust\iterator\detail\normal_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\permutation_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\reverse_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\reverse_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\tagged_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\transform_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\tuple_of_iterator_references.h;D:\cuda\dev\include\thrust\iterator\detail\universal_categories.h;D:\cuda\dev\include\thrust\iterator\detail\zip_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\zip_iterator_base.h;D:\cuda\dev\include\thrust\iterator\iterator_adaptor.h;D:\cuda\dev\include\thrust\iterator\iterator_categories.h;D:\cuda\dev\include\thrust\iterator\iterator_facade.h;D:\cuda\dev\include\thrust\iterator\iterator_traits.h;D:\cuda\dev\include\thrust\iterator\permutation_iterator.h;D:\cuda\dev\include\thrust\iterator\reverse_iterator.h;D:\cuda\dev\include\thrust\iterator\transform_iterator.h;D:\cuda\dev\include\thrust\iterator\zip_iterator.h;D:\cuda\dev\include\thrust\memory.h;D:\cuda\dev\include\thrust\memory\detail\device_system_resource.h;D:\cuda\dev\include\thrust\memory\detail\host_system_resource.h;D:\cuda\dev\include\thrust\merge.h;D:\cuda\dev\include\thrust\mismatch.h;D:\cuda\dev\include\thrust\mr\allocator.h;D:\cuda\dev\include\thrust\mr\detail\config.h;D:\cuda\dev\include\thrust\mr\fancy_pointer_resource.h;D:\cuda\dev\include\thrust\mr\memory_resource.h;D:\cuda\dev\include\thrust\mr\new.h;D:\cuda\dev\include\thrust\mr\polymorphic_adaptor.h;D:\cuda\dev\include\thrust\mr\validator.h;D:\cuda\dev\include\thrust\pair.h;D:\cuda\dev\include\thrust\partition.h;D:\cuda\dev\include\thrust\reduce.h;D:\cuda\dev\include\thrust\remove.h;D:\cuda\dev\include\thrust\replace.h;D:\cuda\dev\include\thrust\reverse.h;D:\cuda\dev\include\thrust\scan.h;D:\cuda\dev\include\thrust\scatter.h;D:\cuda\dev\include\thrust\sequence.h;D:\cuda\dev\include\thrust\set_operations.h;D:\cuda\dev\include\thrust\sort.h;D:\cuda\dev\include\thrust\swap.h;D:\cuda\dev\include\thrust\system\cpp\detail\adjacent_difference.h;D:\cuda\dev\include\thrust\system\cpp\detail\assign_value.h;D:\cuda\dev\include\thrust\system\cpp\detail\binary_search.h;D:\cuda\dev\include\thrust\system\cpp\detail\copy.h;D:\cuda\dev\include\thrust\system\cpp\detail\copy_if.h;D:\cuda\dev\include\thrust\system\cpp\detail\count.h;D:\cuda\dev\include\thrust\system\cpp\detail\equal.h;D:\cuda\dev\include\thrust\system\cpp\detail\execution_policy.h;D:\cuda\dev\include\thrust\system\cpp\detail\extrema.h;D:\cuda\dev\include\thrust\system\cpp\detail\fill.h;D:\cuda\dev\include\thrust\system\cpp\detail\find.h;D:\cuda\dev\include\thrust\system\cpp\detail\for_each.h;D:\cuda\dev\include\thrust\system\cpp\detail\gather.h;D:\cuda\dev\include\thrust\system\cpp\detail\generate.h;D:\cuda\dev\include\thrust\system\cpp\detail\get_value.h;D:\cuda\dev\include\thrust\system\cpp\detail\inner_product.h;D:\cuda\dev\include\thrust\system\cpp\detail\iter_swap.h;D:\cuda\dev\include\thrust\system\cpp\detail\logical.h;D:\cuda\dev\include\thrust\system\cpp\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\system\cpp\detail\merge.h;D:\cuda\dev\include\thrust\system\cpp\detail\mismatch.h;D:\cuda\dev\include\thrust\system\cpp\detail\par.h;D:\cuda\dev\include\thrust\system\cpp\detail\partition.h;D:\cuda\dev\include\thrust\system\cpp\detail\pointer.inl;D:\cuda\dev\include\thrust\system\cpp\detail\reduce.h;D:\cuda\dev\include\thrust\system\cpp\detail\reduce_by_key.h;D:\cuda\dev\include\thrust\system\cpp\detail\remove.h;D:\cuda\dev\include\thrust\system\cpp\detail\replace.h;D:\cuda\dev\include\thrust\system\cpp\detail\reverse.h;D:\cuda\dev\include\thrust\system\cpp\detail\scan.h;D:\cuda\dev\include\thrust\system\cpp\detail\scan_by_key.h;D:\cuda\dev\include\thrust\system\cpp\detail\scatter.h;D:\cuda\dev\include\thrust\system\cpp\detail\sequence.h;D:\cuda\dev\include\thrust\system\cpp\detail\set_operations.h;D:\cuda\dev\include\thrust\system\cpp\detail\sort.h;D:\cuda\dev\include\thrust\system\cpp\detail\swap_ranges.h;D:\cuda\dev\include\thrust\system\cpp\detail\tabulate.h;D:\cuda\dev\include\thrust\system\cpp\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform_reduce.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform_scan.h;D:\cuda\dev\include\thrust\system\cpp\detail\uninitialized_copy.h;D:\cuda\dev\include\thrust\system\cpp\detail\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\cpp\detail\unique.h;D:\cuda\dev\include\thrust\system\cpp\detail\unique_by_key.h;D:\cuda\dev\include\thrust\system\cpp\execution_policy.h;D:\cuda\dev\include\thrust\system\cpp\memory_resource.h;D:\cuda\dev\include\thrust\system\cpp\pointer.h;D:\cuda\dev\include\thrust\system\cuda\config.h;D:\cuda\dev\include\thrust\system\cuda\detail\adjacent_difference.h;D:\cuda\dev\include\thrust\system\cuda\detail\assign_value.h;D:\cuda\dev\include\thrust\system\cuda\detail\binary_search.h;D:\cuda\dev\include\thrust\system\cuda\detail\copy.h;D:\cuda\dev\include\thrust\system\cuda\detail\copy_if.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\agent_launcher.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\alignment.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\triple_chevron_launch.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\util.h;D:\cuda\dev\include\thrust\system\cuda\detail\count.h;D:\cuda\dev\include\thrust\system\cuda\detail\cross_system.h;D:\cuda\dev\include\thrust\system\cuda\detail\dispatch.h;D:\cuda\dev\include\thrust\system\cuda\detail\equal.h;D:\cuda\dev\include\thrust\system\cuda\detail\error.inl;D:\cuda\dev\include\thrust\system\cuda\detail\execution_policy.h;D:\cuda\dev\include\thrust\system\cuda\detail\extrema.h;D:\cuda\dev\include\thrust\system\cuda\detail\fill.h;D:\cuda\dev\include\thrust\system\cuda\detail\find.h;D:\cuda\dev\include\thrust\system\cuda\detail\for_each.h;D:\cuda\dev\include\thrust\system\cuda\detail\gather.h;D:\cuda\dev\include\thrust\system\cuda\detail\generate.h;D:\cuda\dev\include\thrust\system\cuda\detail\get_value.h;D:\cuda\dev\include\thrust\system\cuda\detail\guarded_cuda_runtime_api.h;D:\cuda\dev\include\thrust\system\cuda\detail\guarded_driver_types.h;D:\cuda\dev\include\thrust\system\cuda\detail\inner_product.h;D:\cuda\dev\include\thrust\system\cuda\detail\internal\copy_cross_system.h;D:\cuda\dev\include\thrust\system\cuda\detail\internal\copy_device_to_device.h;D:\cuda\dev\include\thrust\system\cuda\detail\iter_swap.h;D:\cuda\dev\include\thrust\system\cuda\detail\make_unsigned_special.h;D:\cuda\dev\include\thrust\system\cuda\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\system\cuda\detail\managed_memory_pointer.h;D:\cuda\dev\include\thrust\system\cuda\detail\merge.h;D:\cuda\dev\include\thrust\system\cuda\detail\mismatch.h;D:\cuda\dev\include\thrust\system\cuda\detail\par.h;D:\cuda\dev\include\thrust\system\cuda\detail\par_to_seq.h;D:\cuda\dev\include\thrust\system\cuda\detail\parallel_for.h;D:\cuda\dev\include\thrust\system\cuda\detail\partition.h;D:\cuda\dev\include\thrust\system\cuda\detail\pointer.inl;D:\cuda\dev\include\thrust\system\cuda\detail\reduce.h;D:\cuda\dev\include\thrust\system\cuda\detail\reduce_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\remove.h;D:\cuda\dev\include\thrust\system\cuda\detail\replace.h;D:\cuda\dev\include\thrust\system\cuda\detail\reverse.h;D:\cuda\dev\include\thrust\system\cuda\detail\scan.h;D:\cuda\dev\include\thrust\system\cuda\detail\scan_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\scatter.h;D:\cuda\dev\include\thrust\system\cuda\detail\sequence.h;D:\cuda\dev\include\thrust\system\cuda\detail\set_operations.h;D:\cuda\dev\include\thrust\system\cuda\detail\sort.h;D:\cuda\dev\include\thrust\system\cuda\detail\swap_ranges.h;D:\cuda\dev\include\thrust\system\cuda\detail\tabulate.h;D:\cuda\dev\include\thrust\system\cuda\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\system\cuda\detail\terminate.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform_reduce.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform_scan.h;D:\cuda\dev\include\thrust\system\cuda\detail\uninitialized_copy.h;D:\cuda\dev\include\thrust\system\cuda\detail\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\cuda\detail\unique.h;D:\cuda\dev\include\thrust\system\cuda\detail\unique_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\util.h;D:\cuda\dev\include\thrust\system\cuda\error.h;D:\cuda\dev\include\thrust\system\cuda\execution_policy.h;D:\cuda\dev\include\thrust\system\cuda\memory_resource.h;D:\cuda\dev\include\thrust\system\cuda\pointer.h;D:\cuda\dev\include\thrust\system\detail\adl\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\adl\assign_value.h;D:\cuda\dev\include\thrust\system\detail\adl\copy.h;D:\cuda\dev\include\thrust\system\detail\adl\copy_if.h;D:\cuda\dev\include\thrust\system\detail\adl\count.h;D:\cuda\dev\include\thrust\system\detail\adl\equal.h;D:\cuda\dev\include\thrust\system\detail\adl\extrema.h;D:\cuda\dev\include\thrust\system\detail\adl\fill.h;D:\cuda\dev\include\thrust\system\detail\adl\find.h;D:\cuda\dev\include\thrust\system\detail\adl\for_each.h;D:\cuda\dev\include\thrust\system\detail\adl\generate.h;D:\cuda\dev\include\thrust\system\detail\adl\get_value.h;D:\cuda\dev\include\thrust\system\detail\adl\iter_swap.h;D:\cuda\dev\include\thrust\system\detail\adl\malloc_and_free.h;D:\cuda\dev\include\thrust\system\detail\adl\merge.h;D:\cuda\dev\include\thrust\system\detail\adl\mismatch.h;D:\cuda\dev\include\thrust\system\detail\adl\partition.h;D:\cuda\dev\include\thrust\system\detail\adl\reduce.h;D:\cuda\dev\include\thrust\system\detail\adl\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\adl\remove.h;D:\cuda\dev\include\thrust\system\detail\adl\replace.h;D:\cuda\dev\include\thrust\system\detail\adl\reverse.h;D:\cuda\dev\include\thrust\system\detail\adl\scan.h;D:\cuda\dev\include\thrust\system\detail\adl\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\adl\scatter.h;D:\cuda\dev\include\thrust\system\detail\adl\sequence.h;D:\cuda\dev\include\thrust\system\detail\adl\set_operations.h;D:\cuda\dev\include\thrust\system\detail\adl\sort.h;D:\cuda\dev\include\thrust\system\detail\adl\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\adl\tabulate.h;D:\cuda\dev\include\thrust\system\detail\adl\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\adl\transform.h;D:\cuda\dev\include\thrust\system\detail\adl\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\adl\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\adl\unique.h;D:\cuda\dev\include\thrust\system\detail\adl\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\bad_alloc.h;D:\cuda\dev\include\thrust\system\detail\errno.h;D:\cuda\dev\include\thrust\system\detail\error_category.inl;D:\cuda\dev\include\thrust\system\detail\error_code.inl;D:\cuda\dev\include\thrust\system\detail\error_condition.inl;D:\cuda\dev\include\thrust\system\detail\generic\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\generic\adjacent_difference.inl;D:\cuda\dev\include\thrust\system\detail\generic\advance.h;D:\cuda\dev\include\thrust\system\detail\generic\advance.inl;D:\cuda\dev\include\thrust\system\detail\generic\copy.h;D:\cuda\dev\include\thrust\system\detail\generic\copy.inl;D:\cuda\dev\include\thrust\system\detail\generic\copy_if.h;D:\cuda\dev\include\thrust\system\detail\generic\copy_if.inl;D:\cuda\dev\include\thrust\system\detail\generic\count.h;D:\cuda\dev\include\thrust\system\detail\generic\count.inl;D:\cuda\dev\include\thrust\system\detail\generic\distance.h;D:\cuda\dev\include\thrust\system\detail\generic\distance.inl;D:\cuda\dev\include\thrust\system\detail\generic\equal.h;D:\cuda\dev\include\thrust\system\detail\generic\equal.inl;D:\cuda\dev\include\thrust\system\detail\generic\extrema.h;D:\cuda\dev\include\thrust\system\detail\generic\extrema.inl;D:\cuda\dev\include\thrust\system\detail\generic\fill.h;D:\cuda\dev\include\thrust\system\detail\generic\find.h;D:\cuda\dev\include\thrust\system\detail\generic\find.inl;D:\cuda\dev\include\thrust\system\detail\generic\for_each.h;D:\cuda\dev\include\thrust\system\detail\generic\generate.h;D:\cuda\dev\include\thrust\system\detail\generic\generate.inl;D:\cuda\dev\include\thrust\system\detail\generic\memory.h;D:\cuda\dev\include\thrust\system\detail\generic\memory.inl;D:\cuda\dev\include\thrust\system\detail\generic\merge.h;D:\cuda\dev\include\thrust\system\detail\generic\merge.inl;D:\cuda\dev\include\thrust\system\detail\generic\mismatch.h;D:\cuda\dev\include\thrust\system\detail\generic\mismatch.inl;D:\cuda\dev\include\thrust\system\detail\generic\partition.h;D:\cuda\dev\include\thrust\system\detail\generic\partition.inl;D:\cuda\dev\include\thrust\system\detail\generic\reduce.h;D:\cuda\dev\include\thrust\system\detail\generic\reduce.inl;D:\cuda\dev\include\thrust\system\detail\generic\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\reduce_by_key.inl;D:\cuda\dev\include\thrust\system\detail\generic\remove.h;D:\cuda\dev\include\thrust\system\detail\generic\remove.inl;D:\cuda\dev\include\thrust\system\detail\generic\replace.h;D:\cuda\dev\include\thrust\system\detail\generic\replace.inl;D:\cuda\dev\include\thrust\system\detail\generic\reverse.h;D:\cuda\dev\include\thrust\system\detail\generic\reverse.inl;D:\cuda\dev\include\thrust\system\detail\generic\scan.h;D:\cuda\dev\include\thrust\system\detail\generic\scan.inl;D:\cuda\dev\include\thrust\system\detail\generic\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\scan_by_key.inl;D:\cuda\dev\include\thrust\system\detail\generic\scatter.h;D:\cuda\dev\include\thrust\system\detail\generic\scatter.inl;D:\cuda\dev\include\thrust\system\detail\generic\select_system.h;D:\cuda\dev\include\thrust\system\detail\generic\select_system.inl;D:\cuda\dev\include\thrust\system\detail\generic\select_system_exists.h;D:\cuda\dev\include\thrust\system\detail\generic\sequence.h;D:\cuda\dev\include\thrust\system\detail\generic\sequence.inl;D:\cuda\dev\include\thrust\system\detail\generic\set_operations.h;D:\cuda\dev\include\thrust\system\detail\generic\set_operations.inl;D:\cuda\dev\include\thrust\system\detail\generic\sort.h;D:\cuda\dev\include\thrust\system\detail\generic\sort.inl;D:\cuda\dev\include\thrust\system\detail\generic\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\generic\swap_ranges.inl;D:\cuda\dev\include\thrust\system\detail\generic\tabulate.h;D:\cuda\dev\include\thrust\system\detail\generic\tabulate.inl;D:\cuda\dev\include\thrust\system\detail\generic\tag.h;D:\cuda\dev\include\thrust\system\detail\generic\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\generic\temporary_buffer.inl;D:\cuda\dev\include\thrust\system\detail\generic\transform.h;D:\cuda\dev\include\thrust\system\detail\generic\transform.inl;D:\cuda\dev\include\thrust\system\detail\generic\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\generic\transform_reduce.inl;D:\cuda\dev\include\thrust\system\detail\generic\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\generic\uninitialized_fill.inl;D:\cuda\dev\include\thrust\system\detail\generic\unique.h;D:\cuda\dev\include\thrust\system\detail\generic\unique.inl;D:\cuda\dev\include\thrust\system\detail\generic\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\unique_by_key.inl;D:\cuda\dev\include\thrust\system\detail\sequential\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\sequential\assign_value.h;D:\cuda\dev\include\thrust\system\detail\sequential\binary_search.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy.inl;D:\cuda\dev\include\thrust\system\detail\sequential\copy_backward.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy_if.h;D:\cuda\dev\include\thrust\system\detail\sequential\count.h;D:\cuda\dev\include\thrust\system\detail\sequential\equal.h;D:\cuda\dev\include\thrust\system\detail\sequential\execution_policy.h;D:\cuda\dev\include\thrust\system\detail\sequential\extrema.h;D:\cuda\dev\include\thrust\system\detail\sequential\fill.h;D:\cuda\dev\include\thrust\system\detail\sequential\find.h;D:\cuda\dev\include\thrust\system\detail\sequential\for_each.h;D:\cuda\dev\include\thrust\system\detail\sequential\general_copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\generate.h;D:\cuda\dev\include\thrust\system\detail\sequential\get_value.h;D:\cuda\dev\include\thrust\system\detail\sequential\insertion_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\iter_swap.h;D:\cuda\dev\include\thrust\system\detail\sequential\malloc_and_free.h;D:\cuda\dev\include\thrust\system\detail\sequential\merge.h;D:\cuda\dev\include\thrust\system\detail\sequential\merge.inl;D:\cuda\dev\include\thrust\system\detail\sequential\mismatch.h;D:\cuda\dev\include\thrust\system\detail\sequential\partition.h;D:\cuda\dev\include\thrust\system\detail\sequential\reduce.h;D:\cuda\dev\include\thrust\system\detail\sequential\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\sequential\remove.h;D:\cuda\dev\include\thrust\system\detail\sequential\replace.h;D:\cuda\dev\include\thrust\system\detail\sequential\reverse.h;D:\cuda\dev\include\thrust\system\detail\sequential\scan.h;D:\cuda\dev\include\thrust\system\detail\sequential\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\sequential\scatter.h;D:\cuda\dev\include\thrust\system\detail\sequential\sequence.h;D:\cuda\dev\include\thrust\system\detail\sequential\set_operations.h;D:\cuda\dev\include\thrust\system\detail\sequential\sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_merge_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_merge_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_primitive_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_primitive_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_radix_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_radix_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\sequential\tabulate.h;D:\cuda\dev\include\thrust\system\detail\sequential\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\sequential\transform.h;D:\cuda\dev\include\thrust\system\detail\sequential\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\sequential\trivial_copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\sequential\unique.h;D:\cuda\dev\include\thrust\system\detail\sequential\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\system_error.inl;D:\cuda\dev\include\thrust\system\error_code.h;D:\cuda\dev\include\thrust\system\system_error.h;D:\cuda\dev\include\thrust\system_error.h;D:\cuda\dev\include\thrust\tabulate.h;D:\cuda\dev\include\thrust\transform.h;D:\cuda\dev\include\thrust\transform_reduce.h;D:\cuda\dev\include\thrust\tuple.h;D:\cuda\dev\include\thrust\type_traits\is_contiguous_iterator.h;D:\cuda\dev\include\thrust\type_traits\is_trivially_relocatable.h;D:\cuda\dev\include\thrust\type_traits\remove_cvref.h;D:\cuda\dev\include\thrust\type_traits\void_t.h;D:\cuda\dev\include\thrust\uninitialized_fill.h;D:\cuda\dev\include\thrust\unique.h;D:\cuda\dev\include\thrust\version.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\thrust.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.MinSizeRel.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_thrust.cu.obj
+ false
+ Building NVCC (Device) object stream_compaction/CMakeFiles/stream_compaction.dir/$(Configuration)/stream_compaction_generated_thrust.cu.obj
+ setlocal
+cd E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir
+if %errorlevel% neq 0 goto :cmEnd
+E:
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -E make_directory E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -D verbose:BOOL=ON -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj -D generated_cubin_file:STRING=E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//$(Configuration)/stream_compaction_generated_thrust.cu.obj.cubin.txt -P E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.RelWithDebInfo.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\algorithm;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\array;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\atomic;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cassert;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cctype;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cerrno;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cfloat;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\chrono;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\climits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\concurrencysal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\crtdefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdarg;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdint;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstdlib;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cwchar;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\eh.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\exception;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\functional;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\initializer_list;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\intrin0.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ios;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iosfwd;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iostream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\istream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iterator;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\limits.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\memory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\new;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ostream;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ratio;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\sal.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdarg.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdexcept;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\stdint.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\streambuf;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\string;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\system_error;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\tuple;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\type_traits;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\typeinfo;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\use_ansi.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\utility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vadefs.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_exception.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_new_debug.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_string.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vcruntime_typeinfo.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vector;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xatomic.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xcall_once.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xerrc.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xfacet;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xiosbase;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xkeycheck.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocale;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocinfo;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocinfo.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocnum;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstddef;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xstring;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtimec.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xutility;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals.h;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\yvals_core.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\assert.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memcpy_s.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_memory.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_search.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_stdio_config.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_terminate.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wconio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wdirect.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wprocess.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wstring.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt_wtime.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\crtdbg.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\ctype.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\errno.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\float.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\locale.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\malloc.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\math.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\share.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stddef.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdlib.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\stat.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\sys\types.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\wchar.h;D:\cuda\dev\include\builtin_types.h;D:\cuda\dev\include\channel_descriptor.h;D:\cuda\dev\include\crt\common_functions.h;D:\cuda\dev\include\crt\device_double_functions.h;D:\cuda\dev\include\crt\device_double_functions.hpp;D:\cuda\dev\include\crt\device_functions.h;D:\cuda\dev\include\crt\device_functions.hpp;D:\cuda\dev\include\crt\host_config.h;D:\cuda\dev\include\crt\host_defines.h;D:\cuda\dev\include\crt\math_functions.h;D:\cuda\dev\include\crt\math_functions.hpp;D:\cuda\dev\include\crt\sm_70_rt.h;D:\cuda\dev\include\crt\sm_70_rt.hpp;D:\cuda\dev\include\crt\sm_80_rt.h;D:\cuda\dev\include\crt\sm_80_rt.hpp;D:\cuda\dev\include\cub\agent\agent_radix_sort_downsweep.cuh;D:\cuda\dev\include\cub\agent\agent_radix_sort_upsweep.cuh;D:\cuda\dev\include\cub\agent\agent_reduce.cuh;D:\cuda\dev\include\cub\agent\agent_reduce_by_key.cuh;D:\cuda\dev\include\cub\agent\agent_scan.cuh;D:\cuda\dev\include\cub\agent\agent_select_if.cuh;D:\cuda\dev\include\cub\agent\single_pass_scan_operators.cuh;D:\cuda\dev\include\cub\block\block_adjacent_difference.cuh;D:\cuda\dev\include\cub\block\block_discontinuity.cuh;D:\cuda\dev\include\cub\block\block_exchange.cuh;D:\cuda\dev\include\cub\block\block_load.cuh;D:\cuda\dev\include\cub\block\block_radix_rank.cuh;D:\cuda\dev\include\cub\block\block_radix_sort.cuh;D:\cuda\dev\include\cub\block\block_raking_layout.cuh;D:\cuda\dev\include\cub\block\block_reduce.cuh;D:\cuda\dev\include\cub\block\block_scan.cuh;D:\cuda\dev\include\cub\block\block_store.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_raking.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_raking_commutative_only.cuh;D:\cuda\dev\include\cub\block\specializations\block_reduce_warp_reductions.cuh;D:\cuda\dev\include\cub\block\specializations\block_scan_raking.cuh;D:\cuda\dev\include\cub\block\specializations\block_scan_warp_scans.cuh;D:\cuda\dev\include\cub\config.cuh;D:\cuda\dev\include\cub\device\device_partition.cuh;D:\cuda\dev\include\cub\device\device_radix_sort.cuh;D:\cuda\dev\include\cub\device\device_reduce.cuh;D:\cuda\dev\include\cub\device\device_scan.cuh;D:\cuda\dev\include\cub\device\device_select.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_radix_sort.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_reduce.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_reduce_by_key.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_scan.cuh;D:\cuda\dev\include\cub\device\dispatch\dispatch_select_if.cuh;D:\cuda\dev\include\cub\grid\grid_even_share.cuh;D:\cuda\dev\include\cub\grid\grid_mapping.cuh;D:\cuda\dev\include\cub\grid\grid_queue.cuh;D:\cuda\dev\include\cub\iterator\arg_index_input_iterator.cuh;D:\cuda\dev\include\cub\iterator\cache_modified_input_iterator.cuh;D:\cuda\dev\include\cub\iterator\constant_input_iterator.cuh;D:\cuda\dev\include\cub\thread\thread_load.cuh;D:\cuda\dev\include\cub\thread\thread_operators.cuh;D:\cuda\dev\include\cub\thread\thread_reduce.cuh;D:\cuda\dev\include\cub\thread\thread_scan.cuh;D:\cuda\dev\include\cub\thread\thread_store.cuh;D:\cuda\dev\include\cub\util_arch.cuh;D:\cuda\dev\include\cub\util_compiler.cuh;D:\cuda\dev\include\cub\util_cpp_dialect.cuh;D:\cuda\dev\include\cub\util_debug.cuh;D:\cuda\dev\include\cub\util_deprecated.cuh;D:\cuda\dev\include\cub\util_device.cuh;D:\cuda\dev\include\cub\util_macro.cuh;D:\cuda\dev\include\cub\util_namespace.cuh;D:\cuda\dev\include\cub\util_ptx.cuh;D:\cuda\dev\include\cub\util_type.cuh;D:\cuda\dev\include\cub\version.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_reduce_shfl.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_reduce_smem.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_scan_shfl.cuh;D:\cuda\dev\include\cub\warp\specializations\warp_scan_smem.cuh;D:\cuda\dev\include\cub\warp\warp_reduce.cuh;D:\cuda\dev\include\cub\warp\warp_scan.cuh;D:\cuda\dev\include\cuda.h;D:\cuda\dev\include\cuda_device_runtime_api.h;D:\cuda\dev\include\cuda_fp16.h;D:\cuda\dev\include\cuda_fp16.hpp;D:\cuda\dev\include\cuda_occupancy.h;D:\cuda\dev\include\cuda_runtime.h;D:\cuda\dev\include\cuda_runtime_api.h;D:\cuda\dev\include\cuda_surface_types.h;D:\cuda\dev\include\cuda_texture_types.h;D:\cuda\dev\include\device_atomic_functions.h;D:\cuda\dev\include\device_atomic_functions.hpp;D:\cuda\dev\include\device_launch_parameters.h;D:\cuda\dev\include\device_types.h;D:\cuda\dev\include\driver_functions.h;D:\cuda\dev\include\driver_types.h;D:\cuda\dev\include\library_types.h;D:\cuda\dev\include\sm_20_atomic_functions.h;D:\cuda\dev\include\sm_20_atomic_functions.hpp;D:\cuda\dev\include\sm_20_intrinsics.h;D:\cuda\dev\include\sm_20_intrinsics.hpp;D:\cuda\dev\include\sm_30_intrinsics.h;D:\cuda\dev\include\sm_30_intrinsics.hpp;D:\cuda\dev\include\sm_32_atomic_functions.h;D:\cuda\dev\include\sm_32_atomic_functions.hpp;D:\cuda\dev\include\sm_32_intrinsics.h;D:\cuda\dev\include\sm_32_intrinsics.hpp;D:\cuda\dev\include\sm_35_atomic_functions.h;D:\cuda\dev\include\sm_35_intrinsics.h;D:\cuda\dev\include\sm_60_atomic_functions.h;D:\cuda\dev\include\sm_60_atomic_functions.hpp;D:\cuda\dev\include\sm_61_intrinsics.h;D:\cuda\dev\include\sm_61_intrinsics.hpp;D:\cuda\dev\include\surface_functions.h;D:\cuda\dev\include\surface_indirect_functions.h;D:\cuda\dev\include\surface_types.h;D:\cuda\dev\include\texture_fetch_functions.h;D:\cuda\dev\include\texture_indirect_functions.h;D:\cuda\dev\include\texture_types.h;D:\cuda\dev\include\thrust\adjacent_difference.h;D:\cuda\dev\include\thrust\advance.h;D:\cuda\dev\include\thrust\copy.h;D:\cuda\dev\include\thrust\count.h;D:\cuda\dev\include\thrust\detail\adjacent_difference.inl;D:\cuda\dev\include\thrust\detail\advance.inl;D:\cuda\dev\include\thrust\detail\alignment.h;D:\cuda\dev\include\thrust\detail\allocator\allocator_traits.h;D:\cuda\dev\include\thrust\detail\allocator\allocator_traits.inl;D:\cuda\dev\include\thrust\detail\allocator\copy_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\copy_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\default_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\default_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\destroy_range.h;D:\cuda\dev\include\thrust\detail\allocator\destroy_range.inl;D:\cuda\dev\include\thrust\detail\allocator\fill_construct_range.h;D:\cuda\dev\include\thrust\detail\allocator\fill_construct_range.inl;D:\cuda\dev\include\thrust\detail\allocator\no_throw_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\tagged_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\tagged_allocator.inl;D:\cuda\dev\include\thrust\detail\allocator\temporary_allocator.h;D:\cuda\dev\include\thrust\detail\allocator\temporary_allocator.inl;D:\cuda\dev\include\thrust\detail\allocator_aware_execution_policy.h;D:\cuda\dev\include\thrust\detail\config.h;D:\cuda\dev\include\thrust\detail\config\compiler.h;D:\cuda\dev\include\thrust\detail\config\config.h;D:\cuda\dev\include\thrust\detail\config\cpp_compatibility.h;D:\cuda\dev\include\thrust\detail\config\cpp_dialect.h;D:\cuda\dev\include\thrust\detail\config\debug.h;D:\cuda\dev\include\thrust\detail\config\deprecated.h;D:\cuda\dev\include\thrust\detail\config\device_system.h;D:\cuda\dev\include\thrust\detail\config\exec_check_disable.h;D:\cuda\dev\include\thrust\detail\config\forceinline.h;D:\cuda\dev\include\thrust\detail\config\global_workarounds.h;D:\cuda\dev\include\thrust\detail\config\host_device.h;D:\cuda\dev\include\thrust\detail\config\host_system.h;D:\cuda\dev\include\thrust\detail\config\simple_defines.h;D:\cuda\dev\include\thrust\detail\contiguous_storage.h;D:\cuda\dev\include\thrust\detail\contiguous_storage.inl;D:\cuda\dev\include\thrust\detail\copy.h;D:\cuda\dev\include\thrust\detail\copy.inl;D:\cuda\dev\include\thrust\detail\copy_if.h;D:\cuda\dev\include\thrust\detail\copy_if.inl;D:\cuda\dev\include\thrust\detail\count.inl;D:\cuda\dev\include\thrust\detail\cpp11_required.h;D:\cuda\dev\include\thrust\detail\cstdint.h;D:\cuda\dev\include\thrust\detail\dependencies_aware_execution_policy.h;D:\cuda\dev\include\thrust\detail\device_ptr.inl;D:\cuda\dev\include\thrust\detail\device_reference.inl;D:\cuda\dev\include\thrust\detail\device_vector.inl;D:\cuda\dev\include\thrust\detail\distance.inl;D:\cuda\dev\include\thrust\detail\equal.inl;D:\cuda\dev\include\thrust\detail\execute_with_allocator.h;D:\cuda\dev\include\thrust\detail\execute_with_allocator_fwd.h;D:\cuda\dev\include\thrust\detail\execute_with_dependencies.h;D:\cuda\dev\include\thrust\detail\execution_policy.h;D:\cuda\dev\include\thrust\detail\extrema.inl;D:\cuda\dev\include\thrust\detail\fill.inl;D:\cuda\dev\include\thrust\detail\find.inl;D:\cuda\dev\include\thrust\detail\for_each.inl;D:\cuda\dev\include\thrust\detail\function.h;D:\cuda\dev\include\thrust\detail\functional.inl;D:\cuda\dev\include\thrust\detail\functional\actor.h;D:\cuda\dev\include\thrust\detail\functional\actor.inl;D:\cuda\dev\include\thrust\detail\functional\argument.h;D:\cuda\dev\include\thrust\detail\functional\composite.h;D:\cuda\dev\include\thrust\detail\functional\operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\arithmetic_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\assignment_operator.h;D:\cuda\dev\include\thrust\detail\functional\operators\bitwise_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\compound_assignment_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\logical_operators.h;D:\cuda\dev\include\thrust\detail\functional\operators\operator_adaptors.h;D:\cuda\dev\include\thrust\detail\functional\operators\relational_operators.h;D:\cuda\dev\include\thrust\detail\functional\placeholder.h;D:\cuda\dev\include\thrust\detail\functional\value.h;D:\cuda\dev\include\thrust\detail\generate.inl;D:\cuda\dev\include\thrust\detail\get_iterator_value.h;D:\cuda\dev\include\thrust\detail\host_vector.inl;D:\cuda\dev\include\thrust\detail\integer_math.h;D:\cuda\dev\include\thrust\detail\integer_traits.h;D:\cuda\dev\include\thrust\detail\internal_functional.h;D:\cuda\dev\include\thrust\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\detail\merge.inl;D:\cuda\dev\include\thrust\detail\minmax.h;D:\cuda\dev\include\thrust\detail\mismatch.inl;D:\cuda\dev\include\thrust\detail\mpl\math.h;D:\cuda\dev\include\thrust\detail\numeric_traits.h;D:\cuda\dev\include\thrust\detail\overlapped_copy.h;D:\cuda\dev\include\thrust\detail\pair.inl;D:\cuda\dev\include\thrust\detail\partition.inl;D:\cuda\dev\include\thrust\detail\pointer.h;D:\cuda\dev\include\thrust\detail\pointer.inl;D:\cuda\dev\include\thrust\detail\preprocessor.h;D:\cuda\dev\include\thrust\detail\range\head_flags.h;D:\cuda\dev\include\thrust\detail\raw_pointer_cast.h;D:\cuda\dev\include\thrust\detail\raw_reference_cast.h;D:\cuda\dev\include\thrust\detail\reduce.inl;D:\cuda\dev\include\thrust\detail\reference.h;D:\cuda\dev\include\thrust\detail\reference.inl;D:\cuda\dev\include\thrust\detail\reference_forward_declaration.h;D:\cuda\dev\include\thrust\detail\remove.inl;D:\cuda\dev\include\thrust\detail\replace.inl;D:\cuda\dev\include\thrust\detail\reverse.inl;D:\cuda\dev\include\thrust\detail\scan.inl;D:\cuda\dev\include\thrust\detail\scatter.inl;D:\cuda\dev\include\thrust\detail\seq.h;D:\cuda\dev\include\thrust\detail\sequence.inl;D:\cuda\dev\include\thrust\detail\set_operations.inl;D:\cuda\dev\include\thrust\detail\sort.inl;D:\cuda\dev\include\thrust\detail\static_assert.h;D:\cuda\dev\include\thrust\detail\swap.h;D:\cuda\dev\include\thrust\detail\swap.inl;D:\cuda\dev\include\thrust\detail\swap_ranges.inl;D:\cuda\dev\include\thrust\detail\tabulate.inl;D:\cuda\dev\include\thrust\detail\temporary_array.h;D:\cuda\dev\include\thrust\detail\temporary_array.inl;D:\cuda\dev\include\thrust\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\detail\transform.inl;D:\cuda\dev\include\thrust\detail\transform_reduce.inl;D:\cuda\dev\include\thrust\detail\trivial_sequence.h;D:\cuda\dev\include\thrust\detail\tuple.inl;D:\cuda\dev\include\thrust\detail\tuple_meta_transform.h;D:\cuda\dev\include\thrust\detail\tuple_transform.h;D:\cuda\dev\include\thrust\detail\type_deduction.h;D:\cuda\dev\include\thrust\detail\type_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\algorithm\intermediate_type_from_function_and_iterators.h;D:\cuda\dev\include\thrust\detail\type_traits\function_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\has_member_function.h;D:\cuda\dev\include\thrust\detail\type_traits\has_nested_type.h;D:\cuda\dev\include\thrust\detail\type_traits\has_trivial_assign.h;D:\cuda\dev\include\thrust\detail\type_traits\is_call_possible.h;D:\cuda\dev\include\thrust\detail\type_traits\is_metafunction_defined.h;D:\cuda\dev\include\thrust\detail\type_traits\iterator\is_output_iterator.h;D:\cuda\dev\include\thrust\detail\type_traits\minimum_type.h;D:\cuda\dev\include\thrust\detail\type_traits\pointer_traits.h;D:\cuda\dev\include\thrust\detail\type_traits\result_of_adaptable_function.h;D:\cuda\dev\include\thrust\detail\uninitialized_fill.inl;D:\cuda\dev\include\thrust\detail\unique.inl;D:\cuda\dev\include\thrust\detail\use_default.h;D:\cuda\dev\include\thrust\detail\vector_base.h;D:\cuda\dev\include\thrust\detail\vector_base.inl;D:\cuda\dev\include\thrust\device_allocator.h;D:\cuda\dev\include\thrust\device_ptr.h;D:\cuda\dev\include\thrust\device_reference.h;D:\cuda\dev\include\thrust\device_vector.h;D:\cuda\dev\include\thrust\distance.h;D:\cuda\dev\include\thrust\equal.h;D:\cuda\dev\include\thrust\execution_policy.h;D:\cuda\dev\include\thrust\extrema.h;D:\cuda\dev\include\thrust\fill.h;D:\cuda\dev\include\thrust\find.h;D:\cuda\dev\include\thrust\for_each.h;D:\cuda\dev\include\thrust\functional.h;D:\cuda\dev\include\thrust\generate.h;D:\cuda\dev\include\thrust\host_vector.h;D:\cuda\dev\include\thrust\iterator\constant_iterator.h;D:\cuda\dev\include\thrust\iterator\counting_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\any_assign.h;D:\cuda\dev\include\thrust\iterator\detail\any_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\constant_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\counting_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\device_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\distance_from_result.h;D:\cuda\dev\include\thrust\iterator\detail\host_system_tag.h;D:\cuda\dev\include\thrust\iterator\detail\is_iterator_category.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_adaptor_base.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_to_system.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_to_traversal.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_category_with_system_and_traversal.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_facade_category.h;D:\cuda\dev\include\thrust\iterator\detail\iterator_traits.inl;D:\cuda\dev\include\thrust\iterator\detail\iterator_traversal_tags.h;D:\cuda\dev\include\thrust\iterator\detail\minimum_category.h;D:\cuda\dev\include\thrust\iterator\detail\minimum_system.h;D:\cuda\dev\include\thrust\iterator\detail\normal_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\permutation_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\reverse_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\reverse_iterator_base.h;D:\cuda\dev\include\thrust\iterator\detail\tagged_iterator.h;D:\cuda\dev\include\thrust\iterator\detail\transform_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\tuple_of_iterator_references.h;D:\cuda\dev\include\thrust\iterator\detail\universal_categories.h;D:\cuda\dev\include\thrust\iterator\detail\zip_iterator.inl;D:\cuda\dev\include\thrust\iterator\detail\zip_iterator_base.h;D:\cuda\dev\include\thrust\iterator\iterator_adaptor.h;D:\cuda\dev\include\thrust\iterator\iterator_categories.h;D:\cuda\dev\include\thrust\iterator\iterator_facade.h;D:\cuda\dev\include\thrust\iterator\iterator_traits.h;D:\cuda\dev\include\thrust\iterator\permutation_iterator.h;D:\cuda\dev\include\thrust\iterator\reverse_iterator.h;D:\cuda\dev\include\thrust\iterator\transform_iterator.h;D:\cuda\dev\include\thrust\iterator\zip_iterator.h;D:\cuda\dev\include\thrust\memory.h;D:\cuda\dev\include\thrust\memory\detail\device_system_resource.h;D:\cuda\dev\include\thrust\memory\detail\host_system_resource.h;D:\cuda\dev\include\thrust\merge.h;D:\cuda\dev\include\thrust\mismatch.h;D:\cuda\dev\include\thrust\mr\allocator.h;D:\cuda\dev\include\thrust\mr\detail\config.h;D:\cuda\dev\include\thrust\mr\fancy_pointer_resource.h;D:\cuda\dev\include\thrust\mr\memory_resource.h;D:\cuda\dev\include\thrust\mr\new.h;D:\cuda\dev\include\thrust\mr\polymorphic_adaptor.h;D:\cuda\dev\include\thrust\mr\validator.h;D:\cuda\dev\include\thrust\pair.h;D:\cuda\dev\include\thrust\partition.h;D:\cuda\dev\include\thrust\reduce.h;D:\cuda\dev\include\thrust\remove.h;D:\cuda\dev\include\thrust\replace.h;D:\cuda\dev\include\thrust\reverse.h;D:\cuda\dev\include\thrust\scan.h;D:\cuda\dev\include\thrust\scatter.h;D:\cuda\dev\include\thrust\sequence.h;D:\cuda\dev\include\thrust\set_operations.h;D:\cuda\dev\include\thrust\sort.h;D:\cuda\dev\include\thrust\swap.h;D:\cuda\dev\include\thrust\system\cpp\detail\adjacent_difference.h;D:\cuda\dev\include\thrust\system\cpp\detail\assign_value.h;D:\cuda\dev\include\thrust\system\cpp\detail\binary_search.h;D:\cuda\dev\include\thrust\system\cpp\detail\copy.h;D:\cuda\dev\include\thrust\system\cpp\detail\copy_if.h;D:\cuda\dev\include\thrust\system\cpp\detail\count.h;D:\cuda\dev\include\thrust\system\cpp\detail\equal.h;D:\cuda\dev\include\thrust\system\cpp\detail\execution_policy.h;D:\cuda\dev\include\thrust\system\cpp\detail\extrema.h;D:\cuda\dev\include\thrust\system\cpp\detail\fill.h;D:\cuda\dev\include\thrust\system\cpp\detail\find.h;D:\cuda\dev\include\thrust\system\cpp\detail\for_each.h;D:\cuda\dev\include\thrust\system\cpp\detail\gather.h;D:\cuda\dev\include\thrust\system\cpp\detail\generate.h;D:\cuda\dev\include\thrust\system\cpp\detail\get_value.h;D:\cuda\dev\include\thrust\system\cpp\detail\inner_product.h;D:\cuda\dev\include\thrust\system\cpp\detail\iter_swap.h;D:\cuda\dev\include\thrust\system\cpp\detail\logical.h;D:\cuda\dev\include\thrust\system\cpp\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\system\cpp\detail\merge.h;D:\cuda\dev\include\thrust\system\cpp\detail\mismatch.h;D:\cuda\dev\include\thrust\system\cpp\detail\par.h;D:\cuda\dev\include\thrust\system\cpp\detail\partition.h;D:\cuda\dev\include\thrust\system\cpp\detail\pointer.inl;D:\cuda\dev\include\thrust\system\cpp\detail\reduce.h;D:\cuda\dev\include\thrust\system\cpp\detail\reduce_by_key.h;D:\cuda\dev\include\thrust\system\cpp\detail\remove.h;D:\cuda\dev\include\thrust\system\cpp\detail\replace.h;D:\cuda\dev\include\thrust\system\cpp\detail\reverse.h;D:\cuda\dev\include\thrust\system\cpp\detail\scan.h;D:\cuda\dev\include\thrust\system\cpp\detail\scan_by_key.h;D:\cuda\dev\include\thrust\system\cpp\detail\scatter.h;D:\cuda\dev\include\thrust\system\cpp\detail\sequence.h;D:\cuda\dev\include\thrust\system\cpp\detail\set_operations.h;D:\cuda\dev\include\thrust\system\cpp\detail\sort.h;D:\cuda\dev\include\thrust\system\cpp\detail\swap_ranges.h;D:\cuda\dev\include\thrust\system\cpp\detail\tabulate.h;D:\cuda\dev\include\thrust\system\cpp\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform_reduce.h;D:\cuda\dev\include\thrust\system\cpp\detail\transform_scan.h;D:\cuda\dev\include\thrust\system\cpp\detail\uninitialized_copy.h;D:\cuda\dev\include\thrust\system\cpp\detail\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\cpp\detail\unique.h;D:\cuda\dev\include\thrust\system\cpp\detail\unique_by_key.h;D:\cuda\dev\include\thrust\system\cpp\execution_policy.h;D:\cuda\dev\include\thrust\system\cpp\memory_resource.h;D:\cuda\dev\include\thrust\system\cpp\pointer.h;D:\cuda\dev\include\thrust\system\cuda\config.h;D:\cuda\dev\include\thrust\system\cuda\detail\adjacent_difference.h;D:\cuda\dev\include\thrust\system\cuda\detail\assign_value.h;D:\cuda\dev\include\thrust\system\cuda\detail\binary_search.h;D:\cuda\dev\include\thrust\system\cuda\detail\copy.h;D:\cuda\dev\include\thrust\system\cuda\detail\copy_if.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\agent_launcher.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\alignment.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\triple_chevron_launch.h;D:\cuda\dev\include\thrust\system\cuda\detail\core\util.h;D:\cuda\dev\include\thrust\system\cuda\detail\count.h;D:\cuda\dev\include\thrust\system\cuda\detail\cross_system.h;D:\cuda\dev\include\thrust\system\cuda\detail\dispatch.h;D:\cuda\dev\include\thrust\system\cuda\detail\equal.h;D:\cuda\dev\include\thrust\system\cuda\detail\error.inl;D:\cuda\dev\include\thrust\system\cuda\detail\execution_policy.h;D:\cuda\dev\include\thrust\system\cuda\detail\extrema.h;D:\cuda\dev\include\thrust\system\cuda\detail\fill.h;D:\cuda\dev\include\thrust\system\cuda\detail\find.h;D:\cuda\dev\include\thrust\system\cuda\detail\for_each.h;D:\cuda\dev\include\thrust\system\cuda\detail\gather.h;D:\cuda\dev\include\thrust\system\cuda\detail\generate.h;D:\cuda\dev\include\thrust\system\cuda\detail\get_value.h;D:\cuda\dev\include\thrust\system\cuda\detail\guarded_cuda_runtime_api.h;D:\cuda\dev\include\thrust\system\cuda\detail\guarded_driver_types.h;D:\cuda\dev\include\thrust\system\cuda\detail\inner_product.h;D:\cuda\dev\include\thrust\system\cuda\detail\internal\copy_cross_system.h;D:\cuda\dev\include\thrust\system\cuda\detail\internal\copy_device_to_device.h;D:\cuda\dev\include\thrust\system\cuda\detail\iter_swap.h;D:\cuda\dev\include\thrust\system\cuda\detail\make_unsigned_special.h;D:\cuda\dev\include\thrust\system\cuda\detail\malloc_and_free.h;D:\cuda\dev\include\thrust\system\cuda\detail\managed_memory_pointer.h;D:\cuda\dev\include\thrust\system\cuda\detail\merge.h;D:\cuda\dev\include\thrust\system\cuda\detail\mismatch.h;D:\cuda\dev\include\thrust\system\cuda\detail\par.h;D:\cuda\dev\include\thrust\system\cuda\detail\par_to_seq.h;D:\cuda\dev\include\thrust\system\cuda\detail\parallel_for.h;D:\cuda\dev\include\thrust\system\cuda\detail\partition.h;D:\cuda\dev\include\thrust\system\cuda\detail\pointer.inl;D:\cuda\dev\include\thrust\system\cuda\detail\reduce.h;D:\cuda\dev\include\thrust\system\cuda\detail\reduce_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\remove.h;D:\cuda\dev\include\thrust\system\cuda\detail\replace.h;D:\cuda\dev\include\thrust\system\cuda\detail\reverse.h;D:\cuda\dev\include\thrust\system\cuda\detail\scan.h;D:\cuda\dev\include\thrust\system\cuda\detail\scan_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\scatter.h;D:\cuda\dev\include\thrust\system\cuda\detail\sequence.h;D:\cuda\dev\include\thrust\system\cuda\detail\set_operations.h;D:\cuda\dev\include\thrust\system\cuda\detail\sort.h;D:\cuda\dev\include\thrust\system\cuda\detail\swap_ranges.h;D:\cuda\dev\include\thrust\system\cuda\detail\tabulate.h;D:\cuda\dev\include\thrust\system\cuda\detail\temporary_buffer.h;D:\cuda\dev\include\thrust\system\cuda\detail\terminate.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform_reduce.h;D:\cuda\dev\include\thrust\system\cuda\detail\transform_scan.h;D:\cuda\dev\include\thrust\system\cuda\detail\uninitialized_copy.h;D:\cuda\dev\include\thrust\system\cuda\detail\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\cuda\detail\unique.h;D:\cuda\dev\include\thrust\system\cuda\detail\unique_by_key.h;D:\cuda\dev\include\thrust\system\cuda\detail\util.h;D:\cuda\dev\include\thrust\system\cuda\error.h;D:\cuda\dev\include\thrust\system\cuda\execution_policy.h;D:\cuda\dev\include\thrust\system\cuda\memory_resource.h;D:\cuda\dev\include\thrust\system\cuda\pointer.h;D:\cuda\dev\include\thrust\system\detail\adl\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\adl\assign_value.h;D:\cuda\dev\include\thrust\system\detail\adl\copy.h;D:\cuda\dev\include\thrust\system\detail\adl\copy_if.h;D:\cuda\dev\include\thrust\system\detail\adl\count.h;D:\cuda\dev\include\thrust\system\detail\adl\equal.h;D:\cuda\dev\include\thrust\system\detail\adl\extrema.h;D:\cuda\dev\include\thrust\system\detail\adl\fill.h;D:\cuda\dev\include\thrust\system\detail\adl\find.h;D:\cuda\dev\include\thrust\system\detail\adl\for_each.h;D:\cuda\dev\include\thrust\system\detail\adl\generate.h;D:\cuda\dev\include\thrust\system\detail\adl\get_value.h;D:\cuda\dev\include\thrust\system\detail\adl\iter_swap.h;D:\cuda\dev\include\thrust\system\detail\adl\malloc_and_free.h;D:\cuda\dev\include\thrust\system\detail\adl\merge.h;D:\cuda\dev\include\thrust\system\detail\adl\mismatch.h;D:\cuda\dev\include\thrust\system\detail\adl\partition.h;D:\cuda\dev\include\thrust\system\detail\adl\reduce.h;D:\cuda\dev\include\thrust\system\detail\adl\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\adl\remove.h;D:\cuda\dev\include\thrust\system\detail\adl\replace.h;D:\cuda\dev\include\thrust\system\detail\adl\reverse.h;D:\cuda\dev\include\thrust\system\detail\adl\scan.h;D:\cuda\dev\include\thrust\system\detail\adl\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\adl\scatter.h;D:\cuda\dev\include\thrust\system\detail\adl\sequence.h;D:\cuda\dev\include\thrust\system\detail\adl\set_operations.h;D:\cuda\dev\include\thrust\system\detail\adl\sort.h;D:\cuda\dev\include\thrust\system\detail\adl\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\adl\tabulate.h;D:\cuda\dev\include\thrust\system\detail\adl\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\adl\transform.h;D:\cuda\dev\include\thrust\system\detail\adl\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\adl\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\adl\unique.h;D:\cuda\dev\include\thrust\system\detail\adl\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\bad_alloc.h;D:\cuda\dev\include\thrust\system\detail\errno.h;D:\cuda\dev\include\thrust\system\detail\error_category.inl;D:\cuda\dev\include\thrust\system\detail\error_code.inl;D:\cuda\dev\include\thrust\system\detail\error_condition.inl;D:\cuda\dev\include\thrust\system\detail\generic\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\generic\adjacent_difference.inl;D:\cuda\dev\include\thrust\system\detail\generic\advance.h;D:\cuda\dev\include\thrust\system\detail\generic\advance.inl;D:\cuda\dev\include\thrust\system\detail\generic\copy.h;D:\cuda\dev\include\thrust\system\detail\generic\copy.inl;D:\cuda\dev\include\thrust\system\detail\generic\copy_if.h;D:\cuda\dev\include\thrust\system\detail\generic\copy_if.inl;D:\cuda\dev\include\thrust\system\detail\generic\count.h;D:\cuda\dev\include\thrust\system\detail\generic\count.inl;D:\cuda\dev\include\thrust\system\detail\generic\distance.h;D:\cuda\dev\include\thrust\system\detail\generic\distance.inl;D:\cuda\dev\include\thrust\system\detail\generic\equal.h;D:\cuda\dev\include\thrust\system\detail\generic\equal.inl;D:\cuda\dev\include\thrust\system\detail\generic\extrema.h;D:\cuda\dev\include\thrust\system\detail\generic\extrema.inl;D:\cuda\dev\include\thrust\system\detail\generic\fill.h;D:\cuda\dev\include\thrust\system\detail\generic\find.h;D:\cuda\dev\include\thrust\system\detail\generic\find.inl;D:\cuda\dev\include\thrust\system\detail\generic\for_each.h;D:\cuda\dev\include\thrust\system\detail\generic\generate.h;D:\cuda\dev\include\thrust\system\detail\generic\generate.inl;D:\cuda\dev\include\thrust\system\detail\generic\memory.h;D:\cuda\dev\include\thrust\system\detail\generic\memory.inl;D:\cuda\dev\include\thrust\system\detail\generic\merge.h;D:\cuda\dev\include\thrust\system\detail\generic\merge.inl;D:\cuda\dev\include\thrust\system\detail\generic\mismatch.h;D:\cuda\dev\include\thrust\system\detail\generic\mismatch.inl;D:\cuda\dev\include\thrust\system\detail\generic\partition.h;D:\cuda\dev\include\thrust\system\detail\generic\partition.inl;D:\cuda\dev\include\thrust\system\detail\generic\reduce.h;D:\cuda\dev\include\thrust\system\detail\generic\reduce.inl;D:\cuda\dev\include\thrust\system\detail\generic\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\reduce_by_key.inl;D:\cuda\dev\include\thrust\system\detail\generic\remove.h;D:\cuda\dev\include\thrust\system\detail\generic\remove.inl;D:\cuda\dev\include\thrust\system\detail\generic\replace.h;D:\cuda\dev\include\thrust\system\detail\generic\replace.inl;D:\cuda\dev\include\thrust\system\detail\generic\reverse.h;D:\cuda\dev\include\thrust\system\detail\generic\reverse.inl;D:\cuda\dev\include\thrust\system\detail\generic\scan.h;D:\cuda\dev\include\thrust\system\detail\generic\scan.inl;D:\cuda\dev\include\thrust\system\detail\generic\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\scan_by_key.inl;D:\cuda\dev\include\thrust\system\detail\generic\scatter.h;D:\cuda\dev\include\thrust\system\detail\generic\scatter.inl;D:\cuda\dev\include\thrust\system\detail\generic\select_system.h;D:\cuda\dev\include\thrust\system\detail\generic\select_system.inl;D:\cuda\dev\include\thrust\system\detail\generic\select_system_exists.h;D:\cuda\dev\include\thrust\system\detail\generic\sequence.h;D:\cuda\dev\include\thrust\system\detail\generic\sequence.inl;D:\cuda\dev\include\thrust\system\detail\generic\set_operations.h;D:\cuda\dev\include\thrust\system\detail\generic\set_operations.inl;D:\cuda\dev\include\thrust\system\detail\generic\sort.h;D:\cuda\dev\include\thrust\system\detail\generic\sort.inl;D:\cuda\dev\include\thrust\system\detail\generic\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\generic\swap_ranges.inl;D:\cuda\dev\include\thrust\system\detail\generic\tabulate.h;D:\cuda\dev\include\thrust\system\detail\generic\tabulate.inl;D:\cuda\dev\include\thrust\system\detail\generic\tag.h;D:\cuda\dev\include\thrust\system\detail\generic\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\generic\temporary_buffer.inl;D:\cuda\dev\include\thrust\system\detail\generic\transform.h;D:\cuda\dev\include\thrust\system\detail\generic\transform.inl;D:\cuda\dev\include\thrust\system\detail\generic\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\generic\transform_reduce.inl;D:\cuda\dev\include\thrust\system\detail\generic\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\generic\uninitialized_fill.inl;D:\cuda\dev\include\thrust\system\detail\generic\unique.h;D:\cuda\dev\include\thrust\system\detail\generic\unique.inl;D:\cuda\dev\include\thrust\system\detail\generic\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\generic\unique_by_key.inl;D:\cuda\dev\include\thrust\system\detail\sequential\adjacent_difference.h;D:\cuda\dev\include\thrust\system\detail\sequential\assign_value.h;D:\cuda\dev\include\thrust\system\detail\sequential\binary_search.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy.inl;D:\cuda\dev\include\thrust\system\detail\sequential\copy_backward.h;D:\cuda\dev\include\thrust\system\detail\sequential\copy_if.h;D:\cuda\dev\include\thrust\system\detail\sequential\count.h;D:\cuda\dev\include\thrust\system\detail\sequential\equal.h;D:\cuda\dev\include\thrust\system\detail\sequential\execution_policy.h;D:\cuda\dev\include\thrust\system\detail\sequential\extrema.h;D:\cuda\dev\include\thrust\system\detail\sequential\fill.h;D:\cuda\dev\include\thrust\system\detail\sequential\find.h;D:\cuda\dev\include\thrust\system\detail\sequential\for_each.h;D:\cuda\dev\include\thrust\system\detail\sequential\general_copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\generate.h;D:\cuda\dev\include\thrust\system\detail\sequential\get_value.h;D:\cuda\dev\include\thrust\system\detail\sequential\insertion_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\iter_swap.h;D:\cuda\dev\include\thrust\system\detail\sequential\malloc_and_free.h;D:\cuda\dev\include\thrust\system\detail\sequential\merge.h;D:\cuda\dev\include\thrust\system\detail\sequential\merge.inl;D:\cuda\dev\include\thrust\system\detail\sequential\mismatch.h;D:\cuda\dev\include\thrust\system\detail\sequential\partition.h;D:\cuda\dev\include\thrust\system\detail\sequential\reduce.h;D:\cuda\dev\include\thrust\system\detail\sequential\reduce_by_key.h;D:\cuda\dev\include\thrust\system\detail\sequential\remove.h;D:\cuda\dev\include\thrust\system\detail\sequential\replace.h;D:\cuda\dev\include\thrust\system\detail\sequential\reverse.h;D:\cuda\dev\include\thrust\system\detail\sequential\scan.h;D:\cuda\dev\include\thrust\system\detail\sequential\scan_by_key.h;D:\cuda\dev\include\thrust\system\detail\sequential\scatter.h;D:\cuda\dev\include\thrust\system\detail\sequential\sequence.h;D:\cuda\dev\include\thrust\system\detail\sequential\set_operations.h;D:\cuda\dev\include\thrust\system\detail\sequential\sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_merge_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_merge_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_primitive_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_primitive_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\stable_radix_sort.h;D:\cuda\dev\include\thrust\system\detail\sequential\stable_radix_sort.inl;D:\cuda\dev\include\thrust\system\detail\sequential\swap_ranges.h;D:\cuda\dev\include\thrust\system\detail\sequential\tabulate.h;D:\cuda\dev\include\thrust\system\detail\sequential\temporary_buffer.h;D:\cuda\dev\include\thrust\system\detail\sequential\transform.h;D:\cuda\dev\include\thrust\system\detail\sequential\transform_reduce.h;D:\cuda\dev\include\thrust\system\detail\sequential\trivial_copy.h;D:\cuda\dev\include\thrust\system\detail\sequential\uninitialized_fill.h;D:\cuda\dev\include\thrust\system\detail\sequential\unique.h;D:\cuda\dev\include\thrust\system\detail\sequential\unique_by_key.h;D:\cuda\dev\include\thrust\system\detail\system_error.inl;D:\cuda\dev\include\thrust\system\error_code.h;D:\cuda\dev\include\thrust\system\system_error.h;D:\cuda\dev\include\thrust\system_error.h;D:\cuda\dev\include\thrust\tabulate.h;D:\cuda\dev\include\thrust\transform.h;D:\cuda\dev\include\thrust\transform_reduce.h;D:\cuda\dev\include\thrust\tuple.h;D:\cuda\dev\include\thrust\type_traits\is_contiguous_iterator.h;D:\cuda\dev\include\thrust\type_traits\is_trivially_relocatable.h;D:\cuda\dev\include\thrust\type_traits\remove_cvref.h;D:\cuda\dev\include\thrust\type_traits\void_t.h;D:\cuda\dev\include\thrust\uninitialized_fill.h;D:\cuda\dev\include\thrust\unique.h;D:\cuda\dev\include\thrust\version.h;D:\cuda\dev\include\vector_functions.h;D:\cuda\dev\include\vector_functions.hpp;D:\cuda\dev\include\vector_types.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\common.h;E:\Learning\CIS565\Project2-Stream-Compaction\stream_compaction\thrust.h;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.RelWithDebInfo.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\$(Configuration)\stream_compaction_generated_thrust.cu.obj
+ false
+
+
+
+
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.depend;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\run_nvcc.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.depend;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\run_nvcc.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.depend;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\run_nvcc.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule E:/Learning/CIS565/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt
+ setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-file E:/Learning/CIS565/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_common.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_cpu.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_efficient.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_naive.cu.obj.depend;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.cmake.pre-gen;E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\stream_compaction.dir\stream_compaction_generated_thrust.cu.obj.depend;E:\Learning\cmake-3.17.2-win64-x64\share\cmake-3.17\Modules\FindCUDA\run_nvcc.cmake;%(AdditionalInputs)
+ E:\Learning\CIS565\Project2-Stream-Compaction\build\stream_compaction\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {0942912F-C31A-3AF4-8DA7-3B093E11CFC7}
+ ZERO_CHECK
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/stream_compaction/stream_compaction.vcxproj.filters b/build/stream_compaction/stream_compaction.vcxproj.filters
new file mode 100644
index 0000000..5f91f57
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.vcxproj.filters
@@ -0,0 +1,66 @@
+
+
+
+
+ Headers
+
+
+ Headers
+
+
+ Headers
+
+
+ Headers
+
+
+ Headers
+
+
+
+
+ Sources
+
+
+ Sources
+
+
+ Sources
+
+
+ Sources
+
+
+ Sources
+
+
+
+
+
+
+
+
+
+
+
+
+ {F114EF2B-665C-3BD7-9D65-4975B5FBBF4E}
+
+
+ {9BEA7488-590F-3CC6-BDAC-3FDA1EB719E0}
+
+
+ {3E844CD1-D290-3E9E-ABC5-807467FD7887}
+
+
+
diff --git a/build/stream_compaction/stream_compaction.vcxproj.user b/build/stream_compaction/stream_compaction.vcxproj.user
new file mode 100644
index 0000000..88a5509
--- /dev/null
+++ b/build/stream_compaction/stream_compaction.vcxproj.user
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.Build.CppClean.log b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.Build.CppClean.log
new file mode 100644
index 0000000..0223b14
--- /dev/null
+++ b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.Build.CppClean.log
@@ -0,0 +1,5 @@
+e:\learning\cis565\project2-stream-compaction\build\cmakefiles\generate.stamp
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\generate.stamp
+e:\learning\cis565\project2-stream-compaction\build\x64\debug\zero_check\zero_check.tlog\custombuild.command.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\x64\debug\zero_check\zero_check.tlog\custombuild.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\x64\debug\zero_check\zero_check.tlog\custombuild.write.1.tlog
diff --git a/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.log b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.log
new file mode 100644
index 0000000..de90f20
--- /dev/null
+++ b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.log
@@ -0,0 +1 @@
+ Checking Build System
diff --git a/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog
new file mode 100644
index 0000000..db4022b
--- /dev/null
+++ b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog
@@ -0,0 +1,10 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\4B5AA6F63330001FFD0E1C0F96EFEC8B\GENERATE.STAMP.RULE
+setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file E:/Learning/CIS565/Project2-Stream-Compaction/build/cis565_stream_compaction_test.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
diff --git a/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog
new file mode 100644
index 0000000..156c398
--- /dev/null
+++ b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog
@@ -0,0 +1,36 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\4B5AA6F63330001FFD0E1C0F96EFEC8B\GENERATE.STAMP.RULE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKECCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKECXXCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKERCCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKESYSTEM.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKE\CUDACOMPUTESLIST.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKE\CUDA_COMPUTE_CAPABILITY.CPP
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECXXINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECOMMONLANGUAGEINCLUDE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKEGENERICSYSTEM.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKEINITIALIZECONFIGS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKELANGUAGEINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKERCINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKESYSTEMSPECIFICINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKESYSTEMSPECIFICINITIALIZE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\CMAKECOMMONCOMPILERMACROS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\MSVC-C.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\MSVC-CXX.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA\RUN_NVCC.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA\SELECT_COMPUTE_ARCH.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDPACKAGEHANDLESTANDARDARGS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDPACKAGEMESSAGE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC-C.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC-CXX.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWSPATHS.CMAKE
diff --git a/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog
new file mode 100644
index 0000000..37998d0
--- /dev/null
+++ b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog
@@ -0,0 +1,3 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\4B5AA6F63330001FFD0E1C0F96EFEC8B\GENERATE.STAMP.RULE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\GENERATE.STAMP
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\GENERATE.STAMP
diff --git a/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate
new file mode 100644
index 0000000..5490b87
--- /dev/null
+++ b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\|
diff --git a/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt b/build/x64/Debug/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e69de29
diff --git a/build/x64/Release/ZERO_CHECK/ZERO_CHECK.Build.CppClean.log b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.Build.CppClean.log
new file mode 100644
index 0000000..b6f146f
--- /dev/null
+++ b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.Build.CppClean.log
@@ -0,0 +1,5 @@
+e:\learning\cis565\project2-stream-compaction\build\cmakefiles\generate.stamp
+e:\learning\cis565\project2-stream-compaction\build\stream_compaction\cmakefiles\generate.stamp
+e:\learning\cis565\project2-stream-compaction\build\x64\release\zero_check\zero_check.tlog\custombuild.command.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\x64\release\zero_check\zero_check.tlog\custombuild.read.1.tlog
+e:\learning\cis565\project2-stream-compaction\build\x64\release\zero_check\zero_check.tlog\custombuild.write.1.tlog
diff --git a/build/x64/Release/ZERO_CHECK/ZERO_CHECK.log b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.log
new file mode 100644
index 0000000..de90f20
--- /dev/null
+++ b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.log
@@ -0,0 +1 @@
+ Checking Build System
diff --git a/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog
new file mode 100644
index 0000000..db4022b
--- /dev/null
+++ b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog
@@ -0,0 +1,10 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\4B5AA6F63330001FFD0E1C0F96EFEC8B\GENERATE.STAMP.RULE
+setlocal
+E:\Learning\cmake-3.17.2-win64-x64\bin\cmake.exe -SE:/Learning/CIS565/Project2-Stream-Compaction -BE:/Learning/CIS565/Project2-Stream-Compaction/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file E:/Learning/CIS565/Project2-Stream-Compaction/build/cis565_stream_compaction_test.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
diff --git a/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog
new file mode 100644
index 0000000..156c398
--- /dev/null
+++ b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog
@@ -0,0 +1,36 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\4B5AA6F63330001FFD0E1C0F96EFEC8B\GENERATE.STAMP.RULE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKECCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKECXXCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKERCCOMPILER.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\3.17.2\CMAKESYSTEM.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_COMMON.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_CPU.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_EFFICIENT.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_NAIVE.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\STREAM_COMPACTION.DIR\STREAM_COMPACTION_GENERATED_THRUST.CU.OBJ.DEPEND
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKE\CUDACOMPUTESLIST.CMAKE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\CMAKE\CUDA_COMPUTE_CAPABILITY.CPP
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\STREAM_COMPACTION\CMAKELISTS.TXT
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECXXINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKECOMMONLANGUAGEINCLUDE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKEGENERICSYSTEM.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKEINITIALIZECONFIGS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKELANGUAGEINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKERCINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKESYSTEMSPECIFICINFORMATION.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\CMAKESYSTEMSPECIFICINITIALIZE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\CMAKECOMMONCOMPILERMACROS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\MSVC-C.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\COMPILER\MSVC-CXX.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA\RUN_NVCC.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDCUDA\SELECT_COMPUTE_ARCH.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDPACKAGEHANDLESTANDARDARGS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\FINDPACKAGEMESSAGE.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC-C.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC-CXX.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS-MSVC.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWS.CMAKE
+E:\LEARNING\CMAKE-3.17.2-WIN64-X64\SHARE\CMAKE-3.17\MODULES\PLATFORM\WINDOWSPATHS.CMAKE
diff --git a/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog
new file mode 100644
index 0000000..37998d0
--- /dev/null
+++ b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog
@@ -0,0 +1,3 @@
+^E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\4B5AA6F63330001FFD0E1C0F96EFEC8B\GENERATE.STAMP.RULE
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\CMAKEFILES\GENERATE.STAMP
+E:\LEARNING\CIS565\PROJECT2-STREAM-COMPACTION\BUILD\STREAM_COMPACTION\CMAKEFILES\GENERATE.STAMP
diff --git a/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate
new file mode 100644
index 0000000..96fd0d1
--- /dev/null
+++ b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|E:\Learning\CIS565\Project2-Stream-Compaction\build\|
diff --git a/build/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt b/build/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e69de29
diff --git a/img/AllResult.png b/img/AllResult.png
new file mode 100644
index 0000000..47a50a7
Binary files /dev/null and b/img/AllResult.png differ
diff --git a/img/BlockSizeMS.png b/img/BlockSizeMS.png
new file mode 100644
index 0000000..0ef1ae2
Binary files /dev/null and b/img/BlockSizeMS.png differ
diff --git a/img/CompactionArraySize.png b/img/CompactionArraySize.png
new file mode 100644
index 0000000..85a3b55
Binary files /dev/null and b/img/CompactionArraySize.png differ
diff --git a/img/ScanArraySize.png b/img/ScanArraySize.png
new file mode 100644
index 0000000..0fa0a40
Binary files /dev/null and b/img/ScanArraySize.png differ
diff --git a/src/main.cpp b/src/main.cpp
index 896ac2b..d069db4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -13,7 +13,7 @@
#include
#include "testing_helpers.hpp"
-const int SIZE = 1 << 8; // feel free to change the size of array
+const int SIZE = 1 << 20; // feel free to change the size of array
const int NPOT = SIZE - 3; // Non-Power-Of-Two
int *a = new int[SIZE];
int *b = new int[SIZE];
@@ -51,7 +51,6 @@ int main(int argc, char* argv[]) {
printDesc("naive scan, power-of-two");
StreamCompaction::Naive::scan(SIZE, c, a);
printElapsedTime(StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
printCmpResult(SIZE, b, c);
/* For bug-finding only: Array of 1s to help find bugs in stream compaction or scan
@@ -95,6 +94,26 @@ int main(int argc, char* argv[]) {
//printArray(NPOT, c, true);
printCmpResult(NPOT, b, c);
+ printf("\n");
+ printf("*****************************\n");
+ printf("** RADIX SORT TESTS **\n");
+ printf("*****************************\n");
+
+ memcpy(b, a, SIZE * sizeof(int));
+ std::sort(b, b + SIZE);
+ zeroArray(SIZE, c);
+ printDesc("radix sort, power-of-two");
+ StreamCompaction::Radix::radixSort(SIZE, c, a);
+ printCmpResult(SIZE, b, c);
+
+ memcpy(b, a, NPOT * sizeof(int));
+ std::sort(b, b + NPOT);
+ zeroArray(SIZE, c);
+ printDesc("radix sort, non-power-of-two");
+ StreamCompaction::Radix::radixSort(NPOT, c, a);
+ printCmpResult(NPOT, b, c);
+
+
printf("\n");
printf("*****************************\n");
printf("** STREAM COMPACTION TESTS **\n");
diff --git a/stream_compaction/common.cu b/stream_compaction/common.cu
index 2ed6d63..ce1e3f3 100644
--- a/stream_compaction/common.cu
+++ b/stream_compaction/common.cu
@@ -22,8 +22,21 @@ namespace StreamCompaction {
* Maps an array to an array of 0s and 1s for stream compaction. Elements
* which map to 0 will be removed, and elements which map to 1 will be kept.
*/
- __global__ void kernMapToBoolean(int n, int *bools, const int *idata) {
+ __global__ void kernMapToBoolean(int n, int roundN, int *bools, const int *idata) {
// TODO
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+ if (index >= roundN)
+ return;
+ else if (index >= n)
+ {
+ bools[index] = 0;
+ return;
+ }
+
+ if (idata[index] == 0)
+ bools[index] = 0;
+ else
+ bools[index] = 1;
}
/**
@@ -33,6 +46,14 @@ namespace StreamCompaction {
__global__ void kernScatter(int n, int *odata,
const int *idata, const int *bools, const int *indices) {
// TODO
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+ if (index >= n)
+ return;
+
+ if (bools[index] == 1)
+ {
+ odata[indices[index]] = idata[index];
+ }
}
}
diff --git a/stream_compaction/common.h b/stream_compaction/common.h
index d2c1fed..d5e1de3 100644
--- a/stream_compaction/common.h
+++ b/stream_compaction/common.h
@@ -32,7 +32,7 @@ inline int ilog2ceil(int x) {
namespace StreamCompaction {
namespace Common {
- __global__ void kernMapToBoolean(int n, int *bools, const int *idata);
+ __global__ void kernMapToBoolean(int n, int roundN, int *bools, const int *idata);
__global__ void kernScatter(int n, int *odata,
const int *idata, const int *bools, const int *indices);
diff --git a/stream_compaction/cpu.cu b/stream_compaction/cpu.cu
index 719fa11..d2e28e7 100644
--- a/stream_compaction/cpu.cu
+++ b/stream_compaction/cpu.cu
@@ -20,6 +20,12 @@ namespace StreamCompaction {
void scan(int n, int *odata, const int *idata) {
timer().startCpuTimer();
// TODO
+ int sum = 0;
+ for (int i = 0; i < n; i++)
+ {
+ odata[i] = sum;
+ sum += idata[i];
+ }
timer().endCpuTimer();
}
@@ -31,8 +37,17 @@ namespace StreamCompaction {
int compactWithoutScan(int n, int *odata, const int *idata) {
timer().startCpuTimer();
// TODO
+ int oCount = 0;
+ for (int i = 0; i < n; i++)
+ {
+ if (idata[i] != 0)
+ {
+ odata[oCount] = idata[i];
+ oCount++;
+ }
+ }
timer().endCpuTimer();
- return -1;
+ return oCount;
}
/**
@@ -43,8 +58,36 @@ namespace StreamCompaction {
int compactWithScan(int n, int *odata, const int *idata) {
timer().startCpuTimer();
// TODO
+ int* mapArray = new int[n]();
+ int* scannedArray = new int[n]();
+ int sumIndex = 0;
+ for (int i = 0; i < n; i++)
+ {
+ if (idata[i] != 0)
+ {
+ mapArray[i] = 1;
+ scannedArray[i] = sumIndex;
+ sumIndex++;
+ }
+ else
+ {
+ mapArray[i] = 0;
+ scannedArray[i] = sumIndex;
+ }
+ }
+ int oCount = 0;
+
+ for (int i = 0; i < n; i++)
+ {
+ if (mapArray[i] != 0)
+ {
+ odata[scannedArray[i]] = idata[i];
+ oCount++;
+ }
+ }
+
timer().endCpuTimer();
- return -1;
+ return oCount;
}
}
}
diff --git a/stream_compaction/efficient.cu b/stream_compaction/efficient.cu
index 2db346e..fcae950 100644
--- a/stream_compaction/efficient.cu
+++ b/stream_compaction/efficient.cu
@@ -3,6 +3,8 @@
#include "common.h"
#include "efficient.h"
+#define blockSize 128
+
namespace StreamCompaction {
namespace Efficient {
using StreamCompaction::Common::PerformanceTimer;
@@ -12,13 +14,112 @@ namespace StreamCompaction {
return timer;
}
+
+ // Up-Sweep
+ __global__ void kernUpSweep(int n, int d, int* sweepArray)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+
+ int power = 1 << (d + 1);
+ int lastPower = 1 << d;
+ int arrayIndex = index * power;
+ if (arrayIndex >= n)
+ return;
+
+ sweepArray[arrayIndex + power - 1] += sweepArray[arrayIndex + lastPower - 1];
+ }
+
+ // Down-Sweep
+ __global__ void kernDownSweep(int n, int d, int* sweepArray)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+ int power = 1 << (d + 1);
+ int lastPower = 1 << d;
+ int arrayIndex = index * power;
+
+ if (arrayIndex >= n)
+ return;
+
+ int t = sweepArray[arrayIndex + lastPower - 1];
+ sweepArray[arrayIndex + lastPower - 1] = sweepArray[arrayIndex + power - 1];
+ sweepArray[arrayIndex + power - 1] += t;
+ }
+
+ // Initialize Extra Memory
+ __global__ void kernResetIntBuffer(int N, int* intBuffer, int value) {
+ int index = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (index < N) {
+ intBuffer[index] = value;
+ }
+ }
+
+ // Non-zero Entry Scan
+ __global__ void kernNonZeroScan(int n, int roundN, int* zeroArray, int* iArray)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+ if (index >= roundN)
+ return;
+ else if (index >= n)
+ {
+ zeroArray[index] = 0;
+ return;
+ }
+
+ if (iArray[index] == 0)
+ zeroArray[index] = 0;
+ else
+ zeroArray[index] = 1;
+ }
+
+ __global__ void kernCompact(int n, int* zeroArray, int* idxArray, int* oArray, int* iArray)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+ if (index >= n)
+ return;
+
+ if (zeroArray[index] == 1)
+ {
+ oArray[idxArray[index]] = iArray[index];
+ }
+ }
+
/**
* Performs prefix-sum (aka scan) on idata, storing the result into odata.
*/
void scan(int n, int *odata, const int *idata) {
- timer().startGpuTimer();
+
// TODO
+ int scanN = ilog2ceil(n) - 1;
+
+ int roundCount = pow(2, scanN + 1);
+
+ int* result;
+ cudaMalloc((void**)&result, roundCount * sizeof(int));
+ dim3 roundInitilize = (roundCount + blockSize - 1) / blockSize;
+ kernResetIntBuffer<<>>(roundCount, result, 0);
+
+ cudaMemcpy(result, idata, n * sizeof(int), cudaMemcpyHostToDevice);
+
+ timer().startGpuTimer();
+
+ for (int d = 0; d <= scanN; d++)
+ {
+ dim3 upSweepBlockPerGrid = (roundCount / powf(2, d + 1) + blockSize - 1) / blockSize;
+ kernUpSweep<<>>(roundCount, d, result);
+ }
+
+ cudaMemset(result + roundCount - 1, 0, sizeof(int));
+
+ for (int d = scanN; d >= 0; d--)
+ {
+ dim3 upSweepBlockPerGrid = (roundCount / powf(2, d + 1) + blockSize - 1) / blockSize;
+ kernDownSweep<<>>(roundCount, d, result);
+ }
+
timer().endGpuTimer();
+
+ cudaMemcpy(odata, result, n * sizeof(int), cudaMemcpyDeviceToHost);
+ cudaFree(result);
}
/**
@@ -33,8 +134,222 @@ namespace StreamCompaction {
int compact(int n, int *odata, const int *idata) {
timer().startGpuTimer();
// TODO
+ int scanN = ilog2ceil(n) - 1;
+ int roundCount = pow(2, scanN + 1);
+
+ int* roundZeroArray;
+ cudaMalloc((void**)&roundZeroArray, roundCount * sizeof(int));
+
+ int* cudaIData;
+ cudaMalloc((void**)&cudaIData, n * sizeof(int));
+ cudaMemcpy(cudaIData, idata, n * sizeof(int), cudaMemcpyHostToDevice);
+
+ dim3 zeroScanBlockPerGrid = (roundCount + blockSize - 1) / blockSize;
+
+ StreamCompaction::Common::kernMapToBoolean<<>>(n, roundCount, roundZeroArray, cudaIData);
+
+ int* roundIdxArray;
+ cudaMalloc((void**)&roundIdxArray, roundCount * sizeof(int));
+ cudaMemcpy(roundIdxArray, roundZeroArray, roundCount * sizeof(int), cudaMemcpyDeviceToDevice);
+
+ for (int d = 0; d <= scanN; d++)
+ {
+ dim3 upSweepBlockPerGrid = (roundCount / powf(2, d + 1) + blockSize - 1) / blockSize;
+ kernUpSweep << > > (roundCount, d, roundIdxArray);
+ }
+
+ int* a = new int[1]();
+ a[0] = 0;
+ cudaMemcpy(roundIdxArray + roundCount - 1, a, sizeof(int), cudaMemcpyHostToDevice);
+
+ delete[]a;
+
+ for (int d = scanN; d >= 0; d--)
+ {
+ dim3 upSweepBlockPerGrid = (roundCount / powf(2, d + 1) + blockSize - 1) / blockSize;
+ kernDownSweep << > > (roundCount, d, roundIdxArray);
+ }
+
+ int compactCountTemp = -1;
+ cudaMemcpy(&compactCountTemp, roundIdxArray + roundCount - 1, sizeof(int), cudaMemcpyDeviceToHost);
+
+ int* result;
+ cudaMalloc((void**)&result, n * sizeof(int));
+ dim3 compactBlockPerGrid = (n + blockSize - 1) / blockSize;
+
+ StreamCompaction::Common::kernScatter<<>>(n, result, cudaIData, roundZeroArray, roundIdxArray);
+
+ cudaMemcpy(odata, result, n * sizeof(int), cudaMemcpyDeviceToHost);
+
timer().endGpuTimer();
- return -1;
+
+ cudaFree(roundZeroArray);
+ cudaFree(cudaIData);
+ cudaFree(roundIdxArray);
+ cudaFree(result);
+ return compactCountTemp;
+ }
+ }
+
+ namespace Radix
+ {
+ using StreamCompaction::Common::PerformanceTimer;
+ PerformanceTimer& timer()
+ {
+ static PerformanceTimer timer;
+ return timer;
+ }
+
+
+ // Scan each bit
+ __global__ void kernScanBit(int n, int* iArray, int* bitArray, int* eArray, int bit, int* bitExist)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+
+ if (index >= n)
+ return;
+
+ if ((iArray[index] >> bit) & 1)
+ {
+ if (bitExist[0] == 0)
+ bitExist[0] = 1;
+
+ bitArray[index] = 1;
+ eArray[index] = 0;
+ }
+ else
+ {
+ bitArray[index] = 0;
+ eArray[index] = 1;
+ }
+
+ }
+
+ __global__ void kernComputeTArray(int n, int totalFalses, int* tArray, int* fArray)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+
+ if (index >= n)
+ return;
+
+ tArray[index] = index - fArray[index] + totalFalses;
+ }
+
+ __global__ void kernComputeIndex(int n, int* dArray, int* tArray, int* fArray, int* bArray)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+
+ if (index >= n)
+ return;
+
+ if (bArray[index] == 1)
+ dArray[index] = tArray[index];
+ else
+ dArray[index] = fArray[index];
+ }
+
+ __global__ void kernReorganizeArray(int n, int* dArray, int* iArray, int* oArray)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+
+ if (index >= n)
+ return;
+
+ oArray[dArray[index]] = iArray[index];
+
}
+
+ void radixSort(int n, int* odata, const int* idata)
+ {
+ int scanN = ilog2ceil(n) - 1;
+ int roundCount = pow(2, scanN + 1);
+
+ int* dev_iArray;
+ int* dev_bArray;
+ int* dev_eArray;
+ int* dev_fArray;
+ int* dev_tArray;
+ int* dev_dArray;
+ int* dev_oArray;
+
+ cudaMalloc((void**)&dev_iArray, n * sizeof(int));
+ cudaMemcpy(dev_iArray, idata, n * sizeof(int), cudaMemcpyHostToDevice);
+
+ cudaMalloc((void**)&dev_bArray, n * sizeof(int));
+ cudaMalloc((void**)&dev_eArray, n * sizeof(int));
+ cudaMalloc((void**)&dev_fArray, roundCount * sizeof(int));
+ cudaMalloc((void**)&dev_tArray, n * sizeof(int));
+ cudaMalloc((void**)&dev_dArray, n * sizeof(int));
+ cudaMalloc((void**)&dev_oArray, n * sizeof(int));
+
+ int* isBitExist;
+ cudaMalloc((void**)&isBitExist, sizeof(int));
+
+ int curBit = 0;
+
+ dim3 bitCheckBlocksPerGrid = (n + blockSize - 1) / blockSize;
+ dim3 scanBlocksPerGrid = (roundCount + blockSize - 1) / blockSize;
+
+ while (true)
+ {
+ // Get bit condition for each entry
+ cudaMemset(isBitExist, 0, sizeof(int));
+ kernScanBit<<>>(n, dev_iArray, dev_bArray, dev_eArray, curBit, isBitExist);
+ int h_isBitExist = 0;
+ cudaMemcpy(&h_isBitExist, isBitExist, sizeof(int), cudaMemcpyDeviceToHost);
+ if (h_isBitExist == 0)
+ break;
+
+ // Scan the e array
+
+ dim3 roundInitilize = (roundCount + blockSize - 1) / blockSize;
+ StreamCompaction::Efficient::kernResetIntBuffer<<>>(roundCount, dev_fArray, 0);
+
+ cudaMemcpy(dev_fArray, dev_eArray, n * sizeof(int), cudaMemcpyDeviceToDevice);
+ int eArrayFinal = 0;
+ cudaMemcpy(&eArrayFinal, dev_fArray + roundCount - 1, sizeof(int), cudaMemcpyDeviceToHost);
+
+ for (int d = 0; d <= scanN; d++)
+ {
+ dim3 upSweepBlockPerGrid = (roundCount / powf(2, d + 1) + blockSize - 1) / blockSize;
+ StreamCompaction::Efficient::kernUpSweep<<>>(roundCount, d, dev_fArray);
+ }
+
+ cudaMemset(dev_fArray + roundCount - 1, 0, sizeof(int));
+
+ for (int d = scanN; d >= 0; d--)
+ {
+ dim3 upSweepBlockPerGrid = (roundCount / powf(2, d + 1) + blockSize - 1) / blockSize;
+ StreamCompaction::Efficient::kernDownSweep<<>>(roundCount, d, dev_fArray);
+ }
+
+
+ int fArrayFinal = 0;
+ cudaMemcpy(&fArrayFinal, dev_fArray + roundCount - 1, sizeof(int), cudaMemcpyDeviceToHost);
+
+ int totalFalses = eArrayFinal + fArrayFinal;
+
+ kernComputeTArray<<>>(n, totalFalses, dev_tArray, dev_fArray);
+ kernComputeIndex<<>>(n, dev_dArray, dev_tArray, dev_fArray, dev_bArray);
+ kernReorganizeArray<<>>(n, dev_dArray, dev_iArray, dev_oArray);
+
+ cudaMemcpy(dev_iArray, dev_oArray, n * sizeof(int), cudaMemcpyDeviceToDevice);
+
+ curBit++;
+ }
+
+ cudaMemcpy(odata, dev_iArray, n * sizeof(int), cudaMemcpyDeviceToHost);
+
+ cudaFree(dev_iArray);
+ cudaFree(dev_eArray);
+ cudaFree(dev_bArray);
+ cudaFree(dev_fArray);
+ cudaFree(dev_tArray);
+ cudaFree(dev_dArray);
+ cudaFree(dev_oArray);
+ }
+
+
}
}
+
diff --git a/stream_compaction/efficient.h b/stream_compaction/efficient.h
index 803cb4f..dcb92fc 100644
--- a/stream_compaction/efficient.h
+++ b/stream_compaction/efficient.h
@@ -11,3 +11,12 @@ namespace StreamCompaction {
int compact(int n, int *odata, const int *idata);
}
}
+
+namespace StreamCompaction
+{
+ namespace Radix{
+ StreamCompaction::Common::PerformanceTimer& timer();
+
+ void radixSort(int n, int* odata, const int* idata);
+ }
+}
\ No newline at end of file
diff --git a/stream_compaction/naive.cu b/stream_compaction/naive.cu
index 4308876..61f54b4 100644
--- a/stream_compaction/naive.cu
+++ b/stream_compaction/naive.cu
@@ -2,6 +2,11 @@
#include
#include "common.h"
#include "naive.h"
+#include
+
+#define blockSize 128
+
+//#define SHARED_MEMORY 1
namespace StreamCompaction {
namespace Naive {
@@ -12,14 +17,199 @@ namespace StreamCompaction {
return timer;
}
// TODO: __global__
+ __global__ void kernScanParallel(int d, int n, int* odata, int* idata)
+ {
+ int index = threadIdx.x + (blockIdx.x * blockDim.x);
+
+ if (index == 0)
+ {
+ odata[index] = 0;
+ }
+
+ if (index >= n)
+ return;
+
+#ifdef SHARED_MEMORY
+ __shared__ int temp[2 * blockSize];
+ int pout = 0;
+ int pin = 1;
+
+ temp[pout * blockSize + threadIdx.x] = index > 0 ? idata[index] : 0;
+ __syncthreads();
+
+ pout = 1 - pout;
+ pin = 1 - pout;
+
+ if (threadIdx.x < powf(2.0f, d - 1))
+ temp[pout * blockSize + threadIdx.x] = temp[pin * blockSize + threadIdx.x];
+ else
+ temp[pout * blockSize + threadIdx.x] = temp[pin * blockSize + threadIdx.x] + temp[pin * blockSize + threadIdx.x - (int)powf(2.0f, d - 1)];
+
+ __syncthreads();
+ odata[index] = temp[pout * blockSize + threadIdx.x];
+#else
+ if (index < powf(2.0f, d - 1))
+ {
+ odata[index] = idata[index];
+ }
+ else
+ {
+ int forwardIndex = index - powf(2.0f, d - 1);
+ odata[index] = idata[index] + idata[forwardIndex];
+ }
+#endif
+ }
+
+ // Initialize Extra Memory
+ __global__ void kernResetIntBuffer(int N, int* intBuffer, int value) {
+ int index = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (index < N) {
+ intBuffer[index] = value;
+ }
+ }
+
+ __global__ void kernBlockFinalValue(int n, int* finalValues, int* idata)
+ {
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+
+ if (index == 0)
+ {
+ finalValues[index] = 0;
+ return;
+ }
+
+
+ if (index * blockSize - 1 >= n)
+ return;
+
+ finalValues[index] = idata[index * blockSize - 1];
+ }
+
+ __global__ void kernAddFinalSum(int n, int* finalSum, int* odata, int* idata)
+ {
+ __shared__ int finalSumEntry;
+ int index = blockDim.x * blockIdx.x + threadIdx.x;
+
+ if (index >= n)
+ return;
+
+ if (threadIdx.x == 0)
+ {
+ finalSumEntry = finalSum[(int)floorf(index / blockSize)];
+ }
+ __syncthreads();
+
+ odata[index] = idata[index] + finalSumEntry;
+ }
+
/**
* Performs prefix-sum (aka scan) on idata, storing the result into odata.
*/
void scan(int n, int *odata, const int *idata) {
- timer().startGpuTimer();
+
// TODO
+ int* dev_idata; // Result Array
+ int* dev_odata;
+ int* dev_finalData;
+
+#ifdef SHARED_MEMORY
+ std::stack multiIndexingStack;
+ std::stack indexingLengthStack;
+ int curN = pow(2, ilog2ceil(n));
+
+ dim3 scanBlocksPerGrid((curN + blockSize - 1) / blockSize);
+ cudaMalloc((void**)&dev_idata, curN * sizeof(int) + sizeof(int));
+ kernResetIntBuffer << > > (curN, dev_idata, 0);
+ checkCUDAErrorWithLine("cudaMalloc dev_particleArrayIndices failed!");
+ cudaMemcpy(dev_idata + 1, idata, (n - 1) * sizeof(int), cudaMemcpyHostToDevice);
+
+ timer().startGpuTimer();
+
+ while (true)
+ {
+ if (curN != pow(2, ilog2ceil(n)))
+ {
+ dev_idata = dev_finalData;
+ }
+
+ cudaMalloc((void**)&dev_odata, curN * sizeof(int));
+ cudaMalloc((void**)&dev_finalData, (int)ceilf(curN / blockSize) * sizeof(int));
+ int sumN = ilog2ceil(blockSize);
+ dim3 scanBlocksPerGrid((curN + blockSize - 1) / blockSize);
+ for (int i = 1; i <= sumN + 1; i++)
+ {
+ kernScanParallel<<> > (i, n, dev_odata, dev_idata);
+ int* dev_temp;
+
+ dev_temp = dev_idata;
+ dev_idata = dev_odata;
+ dev_odata = dev_temp;
+ }
+
+ multiIndexingStack.push(dev_odata);
+ indexingLengthStack.push(curN);
+
+ if (curN <= blockSize)
+ break;
+
+ dim3 finalValueBlockPerGrid = ((int)ceilf(curN / blockSize) + blockSize - 1) / blockSize;
+ kernBlockFinalValue<<>>(curN, dev_finalData, dev_odata);
+ curN = (int)ceilf(curN / blockSize);
+ }
+
+
+ while(true)
+ {
+ dev_finalData = multiIndexingStack.top();
+ multiIndexingStack.pop();
+
+ if (multiIndexingStack.empty())
+ {
+ //cudaFree(dev_finalData);
+ break;
+ }
+
+
+ dev_odata = multiIndexingStack.top();
+
+ indexingLengthStack.pop();
+ curN = indexingLengthStack.top();
+
+ dim3 scanBlocksPerGrid((curN + blockSize - 1) / blockSize);
+ kernAddFinalSum<<>>(curN, dev_finalData, dev_odata, dev_odata);
+ //cudaFree(dev_finalData);
+ }
+
+ timer().endGpuTimer();
+ cudaMemcpy(odata, dev_odata, n * sizeof(int), cudaMemcpyDeviceToHost);
+ cudaFree(dev_odata);
+#else
+ int sumN = ilog2ceil(n);
+ dim3 scanBlocksPerGrid((n + blockSize - 1) / blockSize);
+
+ timer().startGpuTimer();
+
+ cudaMalloc((void**)&dev_idata, n * sizeof(int) + sizeof(int));
+ cudaMemcpy(dev_idata + 1, idata, (n - 1) * sizeof(int), cudaMemcpyHostToDevice);
+ cudaMalloc((void**)&dev_odata, n * sizeof(int));
+
+ for (int i = 1; i <= sumN + 1; i++)
+ {
+ kernScanParallel<<>>(i, n, dev_odata, dev_idata);
+
+ int* dev_temp;
+
+ dev_temp = dev_idata;
+ dev_idata = dev_odata;
+ dev_odata = dev_temp;
+ }
+
timer().endGpuTimer();
+
+ cudaMemcpy(odata, dev_odata, n * sizeof(int), cudaMemcpyDeviceToHost);
+#endif
+
}
}
}
diff --git a/stream_compaction/naive.h b/stream_compaction/naive.h
index 37dcb06..3b67a9d 100644
--- a/stream_compaction/naive.h
+++ b/stream_compaction/naive.h
@@ -1,6 +1,7 @@
#pragma once
#include "common.h"
+#define checkCUDAErrorWithLine(msg) checkCUDAError(msg, __LINE__)
namespace StreamCompaction {
namespace Naive {
diff --git a/stream_compaction/thrust.cu b/stream_compaction/thrust.cu
index 1def45e..2af1e20 100644
--- a/stream_compaction/thrust.cu
+++ b/stream_compaction/thrust.cu
@@ -18,11 +18,20 @@ namespace StreamCompaction {
* Performs prefix-sum (aka scan) on idata, storing the result into odata.
*/
void scan(int n, int *odata, const int *idata) {
+ thrust::host_vector idataHost(idata, idata + n);
+ thrust::device_vector idataDevice = idataHost;
+ thrust::device_vector odataDevice(n);
+
+
timer().startGpuTimer();
// TODO use `thrust::exclusive_scan`
// example: for device_vectors dv_in and dv_out:
// thrust::exclusive_scan(dv_in.begin(), dv_in.end(), dv_out.begin());
+ thrust::exclusive_scan(idataDevice.begin(), idataDevice.end(), odataDevice.begin());
+
+
timer().endGpuTimer();
+ thrust::copy(odataDevice.begin(), odataDevice.end(), odata);
}
}
}