Skip to content

Commit

Permalink
Merge pull request #80 from tdd11235813/pr_results_update
Browse files Browse the repository at this point in the history
results K80, K20Xm and haswell updated
  • Loading branch information
tdd11235813 authored Mar 27, 2017
2 parents e3ad938 + f165abe commit 3ce8a19
Show file tree
Hide file tree
Showing 23 changed files with 147,697 additions and 78 deletions.
16,724 changes: 16,724 additions & 0 deletions results/K20Xm/clfft-2.12.2/clfft_gcc5.3.0_RHEL6.8.csv

Large diffs are not rendered by default.

17,024 changes: 17,024 additions & 0 deletions results/K20Xm/cuda-8.0.44/cufft_gcc5.3.0_RHEL6.8.csv

Large diffs are not rendered by default.

16,804 changes: 16,804 additions & 0 deletions results/K80/clfft-2.12.2/clfft_gcc5.3.0_RHEL6.8.csv

Large diffs are not rendered by default.

17,204 changes: 17,204 additions & 0 deletions results/K80/cuda-8.0.44/cufft_gcc5.3.0_RHEL6.8.csv

Large diffs are not rendered by default.

2,504 changes: 2,504 additions & 0 deletions results/K80/cuda-8.0.44/validate_cufft_r2c_inplace_RHEL6.8.csv

Large diffs are not rendered by default.

2,504 changes: 2,504 additions & 0 deletions results/K80/cuda-8.0.44/validate_cufft_r2c_inplace_small_RHEL6.8.csv

Large diffs are not rendered by default.

2,504 changes: 2,504 additions & 0 deletions results/K80/cuda-8.0.44/validate_cufft_standalone_r2c_inplace_RHEL6.8.csv

Large diffs are not rendered by default.

2,504 changes: 2,504 additions & 0 deletions results/K80/cuda-8.0.44/validate_cufft_standalone_r2c_inplace_small_RHEL6.8.csv

Large diffs are not rendered by default.

2,504 changes: 2,504 additions & 0 deletions results/K80/cuda-8.0.44/validate_cufft_standalone_r2c_tts_inplace_RHEL6.8.csv

Large diffs are not rendered by default.

Large diffs are not rendered by default.

17,144 changes: 17,144 additions & 0 deletions results/haswell/clfft-2.12.2/clfft_gcc5.3.0_RHEL6.8.csv

Large diffs are not rendered by default.

4,484 changes: 4,484 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_estimate_gcc5.3.0_RHEL6.8.1d.csv

Large diffs are not rendered by default.

5,844 changes: 5,844 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_estimate_gcc5.3.0_RHEL6.8.2d.csv

Large diffs are not rendered by default.

5,444 changes: 5,444 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_estimate_gcc5.3.0_RHEL6.8.3d.csv

Large diffs are not rendered by default.

4,484 changes: 4,484 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_gcc5.3.0_RHEL6.8.1d.csv

Large diffs are not rendered by default.

5,844 changes: 5,844 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_gcc5.3.0_RHEL6.8.2d.csv

Large diffs are not rendered by default.

5,444 changes: 5,444 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_gcc5.3.0_RHEL6.8.3d.csv

Large diffs are not rendered by default.

4,484 changes: 4,484 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_wisdom_gcc5.3.0_RHEL6.8.1d.csv

Large diffs are not rendered by default.

5,844 changes: 5,844 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_wisdom_gcc5.3.0_RHEL6.8.2d.csv

Large diffs are not rendered by default.

5,444 changes: 5,444 additions & 0 deletions results/haswell/fftw3.3.6pl1/fftw_wisdom_gcc5.3.0_RHEL6.8.3d.csv

Large diffs are not rendered by default.

78 changes: 0 additions & 78 deletions scripts/eval.r

This file was deleted.

32 changes: 32 additions & 0 deletions validation/cufft_standalone/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
cmake_minimum_required(VERSION 2.8)

project(cufft_test CXX)

set(CMAKE_CXX_STANDARD 14)

if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
if (NOT (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 5.0
OR CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL 5.0))
message(FATAL_ERROR "${PROJECT_NAME} requires g++ 5.0 or greater.")
endif()
set(CMAKE_CXX_FLAGS "--std=gnu++14" ${CMAKE_CXX_FLAGS})
#gcc4.8+ uses dwarf-4. If you have gdb <7.5 then use this line
#set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -gdwarf-2")
#gdb 7.0-7.5 may require
#set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -fvar-tracking-assignments")
endif()

#------------------------------------------------------------------------------
# CUDA+CUFFT
#------------------------------------------------------------------------------
find_package(CUDA)
if(CUDA_FOUND)
include(FindCUDA)
include_directories(${CUDA_INCLUDE_DIRS})
list(APPEND FFTLIBS "cufft")
message(">> cuFFT -> " ${CUDA_CUFFT_LIBRARIES})
endif()

set(LIBS ${CUDA_LIBRARIES} ${CUDA_CUFFT_LIBRARIES})
add_executable(cufft_time_r2c time_cufft_r2c.cpp)
target_link_libraries(cufft_time_r2c ${LIBS})
Loading

0 comments on commit 3ce8a19

Please sign in to comment.