This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository test-suite.
from 40b4756 [test-suite] Add CUDA printf test. new 24d9547 [test-suite] Adding three bitcode benchmarks from Halide suite
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Bitcode/Benchmarks/CMakeLists.txt | 1 + Bitcode/Benchmarks/Halide/CMakeLists.txt | 22 ++ .../Halide/bilateral_grid/CMakeLists.txt | 14 + .../Halide/bilateral_grid/bilateral_grid.bc | Bin 0 -> 54632 bytes .../Halide/bilateral_grid/bilateral_grid.h | 42 +++ .../Benchmarks/Halide/bilateral_grid/driver.cpp | 37 +++ .../Halide/bilateral_grid/output/rgb_out.bytes | Bin 0 -> 15728652 bytes .../Halide/bilateral_grid/output/rgba_out.bytes | Bin 0 -> 15728652 bytes Bitcode/Benchmarks/Halide/blur/CMakeLists.txt | 8 + Bitcode/Benchmarks/Halide/blur/driver.cpp | 119 ++++++++ Bitcode/Benchmarks/Halide/blur/halide_blur.bc | Bin 0 -> 22072 bytes Bitcode/Benchmarks/Halide/blur/halide_blur.h | 42 +++ Bitcode/Benchmarks/Halide/common/benchmark.h | 58 ++++ Bitcode/Benchmarks/Halide/common/halide_buffer.h | 27 ++ Bitcode/Benchmarks/Halide/common/halide_image.h | 234 +++++++++++++++ .../Benchmarks/Halide/common/halide_image_info.h | 314 ++++++++++++++++++++ Bitcode/Benchmarks/Halide/common/halide_image_io.h | 320 +++++++++++++++++++++ .../Halide/common}/x86_halide_runtime.bc | Bin Bitcode/Benchmarks/Halide/images/rgb.bytes | Bin 0 -> 15728652 bytes Bitcode/Benchmarks/Halide/images/rgba.bytes | Bin 0 -> 15728652 bytes .../Halide/local_laplacian/CMakeLists.txt | 14 + .../Benchmarks/Halide/local_laplacian/driver.cpp | 33 +++ .../Halide/local_laplacian/local_laplacian.bc | Bin 0 -> 274084 bytes .../Halide/local_laplacian/local_laplacian.h | 42 +++ .../Halide/local_laplacian/output/rgb_out.bytes | Bin 0 -> 15728652 bytes .../Halide/local_laplacian/output/rgba_out.bytes | Bin 0 -> 15728652 bytes Bitcode/CMakeLists.txt | 1 + 27 files changed, 1328 insertions(+) create mode 100644 Bitcode/Benchmarks/CMakeLists.txt create mode 100644 Bitcode/Benchmarks/Halide/CMakeLists.txt create mode 100644 Bitcode/Benchmarks/Halide/bilateral_grid/CMakeLists.txt create mode 100644 Bitcode/Benchmarks/Halide/bilateral_grid/bilateral_grid.bc create mode 100644 Bitcode/Benchmarks/Halide/bilateral_grid/bilateral_grid.h create mode 100644 Bitcode/Benchmarks/Halide/bilateral_grid/driver.cpp create mode 100644 Bitcode/Benchmarks/Halide/bilateral_grid/output/rgb_out.bytes create mode 100644 Bitcode/Benchmarks/Halide/bilateral_grid/output/rgba_out.bytes create mode 100644 Bitcode/Benchmarks/Halide/blur/CMakeLists.txt create mode 100644 Bitcode/Benchmarks/Halide/blur/driver.cpp create mode 100644 Bitcode/Benchmarks/Halide/blur/halide_blur.bc create mode 100644 Bitcode/Benchmarks/Halide/blur/halide_blur.h create mode 100644 Bitcode/Benchmarks/Halide/common/benchmark.h create mode 100644 Bitcode/Benchmarks/Halide/common/halide_buffer.h create mode 100644 Bitcode/Benchmarks/Halide/common/halide_image.h create mode 100644 Bitcode/Benchmarks/Halide/common/halide_image_info.h create mode 100644 Bitcode/Benchmarks/Halide/common/halide_image_io.h copy Bitcode/{simd_ops => Benchmarks/Halide/common}/x86_halide_runtime.bc (100%) create mode 100644 Bitcode/Benchmarks/Halide/images/rgb.bytes create mode 100644 Bitcode/Benchmarks/Halide/images/rgba.bytes create mode 100644 Bitcode/Benchmarks/Halide/local_laplacian/CMakeLists.txt create mode 100644 Bitcode/Benchmarks/Halide/local_laplacian/driver.cpp create mode 100644 Bitcode/Benchmarks/Halide/local_laplacian/local_laplacian.bc create mode 100644 Bitcode/Benchmarks/Halide/local_laplacian/local_laplacian.h create mode 100644 Bitcode/Benchmarks/Halide/local_laplacian/output/rgb_out.bytes create mode 100644 Bitcode/Benchmarks/Halide/local_laplacian/output/rgba_out.bytes