Tests: Add benchmarks for JPEGLoader

I'm the author of the image.
This commit is contained in:
Lucas CHOLLET 2023-03-28 11:51:48 -04:00 committed by Linus Groh
parent b746d324cf
commit 2812ef246d
Notes: sideshowbarker 2024-07-17 01:12:07 +09:00
3 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,48 @@
/*
* Copyright (c) 2023, Lucas Chollet <lucas.chollet@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCore/File.h>
#include <LibGfx/ImageFormats/JPEGLoader.h>
#include <LibTest/TestCase.h>
#ifdef AK_OS_SERENITY
# define TEST_INPUT(x) ("/usr/Tests/LibGfx/test-inputs/" x)
#else
# define TEST_INPUT(x) ("test-inputs/" x)
#endif
// FIXME: Enable formatting when the patch will be mainstream
// https://github.com/llvm/llvm-project/commit/fd86789962964a98157e8159c3d95cdc241942e3
// clang-format off
auto small_image = Core::File::open(TEST_INPUT("rgb24.jpg"sv), Core::File::OpenMode::Read).release_value()->read_until_eof().release_value();
auto big_image = Core::File::open(TEST_INPUT("big_image.jpg"sv), Core::File::OpenMode::Read).release_value()->read_until_eof().release_value();
auto rgb_image = Core::File::open(TEST_INPUT("rgb_components.jpg"sv), Core::File::OpenMode::Read).release_value()->read_until_eof().release_value();
auto several_scans = Core::File::open(TEST_INPUT("several_scans.jpg"sv), Core::File::OpenMode::Read).release_value()->read_until_eof().release_value();
// clang-format on
BENCHMARK_CASE(small_image)
{
auto plugin_decoder = MUST(Gfx::JPEGImageDecoderPlugin::create(small_image));
MUST(plugin_decoder->frame(0));
}
BENCHMARK_CASE(big_image)
{
auto plugin_decoder = MUST(Gfx::JPEGImageDecoderPlugin::create(big_image));
MUST(plugin_decoder->frame(0));
}
BENCHMARK_CASE(rgb_image)
{
auto plugin_decoder = MUST(Gfx::JPEGImageDecoderPlugin::create(rgb_image));
MUST(plugin_decoder->frame(0));
}
BENCHMARK_CASE(several_scans)
{
auto plugin_decoder = MUST(Gfx::JPEGImageDecoderPlugin::create(several_scans));
MUST(plugin_decoder->frame(0));
}

View file

@ -1,5 +1,6 @@
set(TEST_SOURCES
BenchmarkGfxPainter.cpp
BenchmarkJPEGLoader.cpp
TestFontHandling.cpp
TestICCProfile.cpp
TestImageDecoder.cpp

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 MiB