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 4c6c9b86 Add image blur algorithms using Benchmark Library Contains Im [...] new 9ad270d3 Add interpolation kernels using Benchmark Library Contains Im [...]
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/Interpolation/CMakeLists.txt | 13 ++ .../Interpolation/bicubic.reference_output | 1 + .../ImageProcessing/Interpolation/bicubicKernel.c | 59 ++++++++ .../Interpolation/bilinear.reference_output | 1 + .../ImageProcessing/Interpolation/bilinearKernel.c | 41 ++++++ .../ImageProcessing/Interpolation/interpolation.h | 15 ++ .../ImageProcessing/Interpolation/main.cpp | 152 +++++++++++++++++++++ 8 files changed, 283 insertions(+) create mode 100644 MicroBenchmarks/ImageProcessing/Interpolation/CMakeLists.txt create mode 100644 MicroBenchmarks/ImageProcessing/Interpolation/bicubic.reference_output create mode 100644 MicroBenchmarks/ImageProcessing/Interpolation/bicubicKernel.c create mode 100644 MicroBenchmarks/ImageProcessing/Interpolation/bilinear.referenc [...] create mode 100644 MicroBenchmarks/ImageProcessing/Interpolation/bilinearKernel.c create mode 100644 MicroBenchmarks/ImageProcessing/Interpolation/interpolation.h create mode 100644 MicroBenchmarks/ImageProcessing/Interpolation/main.cpp