-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the performance test program #64
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
*.a | ||
demo-* | ||
.demo-* | ||
mado-perf | ||
.mado-perf | ||
|
||
# Swap | ||
[._]*.s[a-v][a-z] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* Twin - A Tiny Window System | ||
* Copyright (c) 2024 National Cheng Kung University, Taiwan | ||
* All rights reserved. | ||
*/ | ||
|
||
#include <assert.h> | ||
#include <stdio.h> | ||
#include <string.h> | ||
#include <sys/time.h> | ||
#include <time.h> | ||
|
||
#include "twin.h" | ||
|
||
#define TEST_PIX_WIDTH 1200 | ||
#define TEST_PIX_HEIGHT 800 | ||
|
||
static twin_pixmap_t *src32, *dst32; | ||
static int twidth, theight, titers; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rename from |
||
|
||
static void test_argb32_source_argb32(void) | ||
{ | ||
twin_operand_t srco = {.source_kind = TWIN_PIXMAP, .u.pixmap = src32}; | ||
twin_composite(dst32, 0, 0, &srco, 0, 0, NULL, 0, 0, TWIN_SOURCE, twidth, | ||
theight); | ||
} | ||
|
||
static void test_argb32_over_argb32(void) | ||
{ | ||
twin_operand_t srco = {.source_kind = TWIN_PIXMAP, .u.pixmap = src32}; | ||
twin_composite(dst32, 0, 0, &srco, 0, 0, NULL, 0, 0, TWIN_OVER, twidth, | ||
theight); | ||
} | ||
|
||
static void do_test(const char *name, void (*test)(void)) | ||
{ | ||
struct timeval start, end; | ||
unsigned long long sus, eus; | ||
char spc[128]; | ||
char *s; | ||
int i; | ||
|
||
printf("%s", name); | ||
|
||
gettimeofday(&start, NULL); | ||
for (i = 0; i < titers; i++) | ||
test(); | ||
gettimeofday(&end, NULL); | ||
sus = (unsigned long long) start.tv_sec * 1000000ull + start.tv_usec; | ||
eus = (unsigned long long) end.tv_sec * 1000000ull + end.tv_usec; | ||
|
||
s = spc; | ||
for (i = strlen(name); i < 40; i++) | ||
*(s++) = ' '; | ||
*s = 0; | ||
printf("%s %f sec\n", spc, ((float) (eus - sus)) / 1000000.0); | ||
} | ||
|
||
#define DO_TEST(name) do_test(#name, test_##name) | ||
|
||
static void do_tests(int width, int height, int iters) | ||
{ | ||
twidth = width; | ||
theight = height; | ||
titers = iters; | ||
|
||
DO_TEST(argb32_source_argb32); | ||
DO_TEST(argb32_over_argb32); | ||
} | ||
|
||
static void do_all_tests(const char *title, | ||
int len_init, | ||
int len_max, | ||
int len_incre, | ||
int iters) | ||
{ | ||
for (int len = len_init; len < len_max; len += len_incre) { | ||
printf("[ %s: %dx%dx%d ]\n", title, len, len, iters); | ||
do_tests(len, len, iters); | ||
} | ||
|
||
printf("\n"); | ||
} | ||
|
||
int main(void) | ||
{ | ||
/* Create some test pixmaps */ | ||
src32 = twin_pixmap_from_file("assets/tux.png", TWIN_ARGB32); | ||
assert(src32); | ||
dst32 = twin_pixmap_create(TWIN_ARGB32, TEST_PIX_WIDTH, TEST_PIX_HEIGHT); | ||
assert(dst32); | ||
|
||
/* fill pixmaps */ | ||
twin_fill(dst32, 0x80112233, TWIN_SOURCE, 0, 0, TEST_PIX_WIDTH, | ||
TEST_PIX_HEIGHT); | ||
|
||
/* pre-touch data */ | ||
test_argb32_source_argb32(); | ||
|
||
do_all_tests("Pixmap", 7, 18, 2, 1000000); | ||
|
||
return 0; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,6 +58,14 @@ config LOADER_GIF | |
|
||
endmenu | ||
|
||
menu "Performance Testers" | ||
|
||
config PERFORMANCE_TEST | ||
bool "Build composite tester" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Describe it as "Build performance tester." |
||
default y | ||
|
||
endmenu | ||
|
||
menu "Demo Applications" | ||
|
||
config DEMO_APPLICATIONS | ||
|
@@ -98,4 +106,4 @@ config DEMO_ANIMATION | |
bool "Build animation demo" | ||
default y | ||
depends on DEMO_APPLICATIONS | ||
endmenu | ||
endmenu | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Be aware of a new line to the end of a file?. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rewrite as following:
The performance test program has nothing with "demo."