Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
medialibrary
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Storsjö
medialibrary
Commits
457873be
Commit
457873be
authored
2 years ago
by
Hugo Beauzée-Luyssen
Browse files
Options
Downloads
Patches
Plain Diff
benchmark: Add an artist request benchmark
parent
3098d34f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
benchmark/requests/BenchArtistRequests.cpp
+63
-0
63 additions, 0 deletions
benchmark/requests/BenchArtistRequests.cpp
benchmark/requests/meson.build
+1
-0
1 addition, 0 deletions
benchmark/requests/meson.build
with
64 additions
and
0 deletions
benchmark/requests/BenchArtistRequests.cpp
0 → 100644
+
63
−
0
View file @
457873be
/*****************************************************************************
* Media Library
*****************************************************************************
* Copyright (C) 2022 Hugo Beauzée-Luyssen, Videolabs, VideoLAN
*
* Authors: Hugo Beauzée-Luyssen <hugo@beauzee.fr>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include
"BenchRequestsCommon.h"
#include
<benchmark/benchmark.h>
#include
"Artist.h"
static
void
ListAllArtists
(
benchmark
::
State
&
state
)
{
auto
bml
=
commonInit
();
QueryParameters
params
{};
params
.
sort
=
static_cast
<
SortingCriteria
>
(
state
.
range
(
0
)
);
for
(
auto
_
:
state
)
{
auto
artists
=
bml
.
ml
->
artists
(
ArtistIncluded
::
All
,
&
params
)
->
all
();
benchmark
::
DoNotOptimize
(
artists
);
}
}
static
void
ListAllPublicArtists
(
benchmark
::
State
&
state
)
{
auto
bml
=
commonInit
();
QueryParameters
params
{};
params
.
publicOnly
=
true
;
for
(
auto
_
:
state
)
{
auto
artists
=
bml
.
ml
->
artists
(
ArtistIncluded
::
All
,
&
params
)
->
all
();
// assert(artists.empty() == true);
benchmark
::
DoNotOptimize
(
artists
);
}
}
BENCHMARK
(
ListAllArtists
)
->
Arg
(
toInt
(
SortingCriteria
::
Duration
)
)
->
Arg
(
toInt
(
SortingCriteria
::
ReleaseDate
)
)
->
Arg
(
toInt
(
SortingCriteria
::
InsertionDate
)
)
->
Arg
(
toInt
(
SortingCriteria
::
Alpha
)
)
->
Arg
(
toInt
(
SortingCriteria
::
Default
)
);
BENCHMARK
(
ListAllPublicArtists
);
This diff is collapsed.
Click to expand it.
benchmark/requests/meson.build
+
1
−
0
View file @
457873be
bench_requests_srcs
=
[
bench_requests_srcs
=
[
'BenchAlbumRequests.cpp'
,
'BenchAlbumRequests.cpp'
,
'BenchMediaRequests.cpp'
,
'BenchMediaRequests.cpp'
,
'BenchArtistRequests.cpp'
,
'main.cpp'
,
'main.cpp'
,
'BenchRequestsCommon.cpp'
'BenchRequestsCommon.cpp'
]
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment