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 377a8e84 Add utilities functions for Image Processing Kernels new 7dedc179 Add Image dithering kernels using Benchmark Library
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: MicroBenchmarks/ImageProcessing/CMakeLists.txt | 1 + .../ImageProcessing/Dither/CMakeLists.txt | 13 ++ MicroBenchmarks/ImageProcessing/Dither/dither.h | 15 ++ .../Dither/floydDither.reference_output | 1 + .../ImageProcessing/Dither/floydDitherKernel.c | 69 +++++++++ MicroBenchmarks/ImageProcessing/Dither/main.cpp | 156 +++++++++++++++++++++ .../Dither/orderedDither.reference_output | 1 + .../ImageProcessing/Dither/orderedDitherKernel.c | 72 ++++++++++ 8 files changed, 328 insertions(+) create mode 100644 MicroBenchmarks/ImageProcessing/CMakeLists.txt create mode 100644 MicroBenchmarks/ImageProcessing/Dither/CMakeLists.txt create mode 100644 MicroBenchmarks/ImageProcessing/Dither/dither.h create mode 100644 MicroBenchmarks/ImageProcessing/Dither/floydDither.reference_output create mode 100644 MicroBenchmarks/ImageProcessing/Dither/floydDitherKernel.c create mode 100644 MicroBenchmarks/ImageProcessing/Dither/main.cpp create mode 100644 MicroBenchmarks/ImageProcessing/Dither/orderedDither.reference_output create mode 100644 MicroBenchmarks/ImageProcessing/Dither/orderedDitherKernel.c