mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 18:06:13 +00:00
tests/gem_pwrite_pread: subtest annotation
This testcase mixes correctnes tests with performance tests, so it's good to track the different correctness test separate for QA. Together with pread_after_blt the pwrite->blt tests here exercise the full cache coherency lifecycle of both snooped and uncached objects. /me is happy Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
3dba47e896
commit
57622965e5
@ -32,6 +32,7 @@ TESTS_progs_M = \
|
|||||||
gem_partial_pwrite_pread \
|
gem_partial_pwrite_pread \
|
||||||
gem_pread_after_blit \
|
gem_pread_after_blit \
|
||||||
gem_prw_concurrent_blit \
|
gem_prw_concurrent_blit \
|
||||||
|
gem_pwrite_pread \
|
||||||
gem_ringfill \
|
gem_ringfill \
|
||||||
gem_set_tiling_vs_blt \
|
gem_set_tiling_vs_blt \
|
||||||
gem_suspend \
|
gem_suspend \
|
||||||
@ -74,7 +75,6 @@ TESTS_progs = \
|
|||||||
gem_pipe_control_store_loop \
|
gem_pipe_control_store_loop \
|
||||||
gem_pread \
|
gem_pread \
|
||||||
gem_pwrite \
|
gem_pwrite \
|
||||||
gem_pwrite_pread \
|
|
||||||
gem_readwrite \
|
gem_readwrite \
|
||||||
gem_reg_read \
|
gem_reg_read \
|
||||||
gem_reloc_overflow \
|
gem_reloc_overflow \
|
||||||
|
@ -383,6 +383,7 @@ int main(int argc, char **argv)
|
|||||||
uint32_t *tmp, src, dst;
|
uint32_t *tmp, src, dst;
|
||||||
int fd, count;
|
int fd, count;
|
||||||
|
|
||||||
|
drmtest_subtest_init(argc, argv);
|
||||||
drmtest_skip_on_simulation();
|
drmtest_skip_on_simulation();
|
||||||
|
|
||||||
if (argc > 1)
|
if (argc > 1)
|
||||||
@ -399,62 +400,74 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
gem_set_cacheing(fd, src, 0);
|
gem_set_cacheing(fd, src, 0);
|
||||||
gem_set_cacheing(fd, dst, 0);
|
gem_set_cacheing(fd, dst, 0);
|
||||||
test_copy(fd, src, dst, tmp, object_size);
|
if (drmtest_run_subtest("uncached-copy-correctness"))
|
||||||
for (count = 1; count <= 1<<17; count <<= 1) {
|
test_copy(fd, src, dst, tmp, object_size);
|
||||||
struct timeval start, end;
|
if (drmtest_run_subtest("uncached-copy-performance")) {
|
||||||
|
for (count = 1; count <= 1<<17; count <<= 1) {
|
||||||
|
struct timeval start, end;
|
||||||
|
|
||||||
gettimeofday(&start, NULL);
|
gettimeofday(&start, NULL);
|
||||||
copy(fd, src, dst, tmp, object_size, count);
|
copy(fd, src, dst, tmp, object_size, count);
|
||||||
gettimeofday(&end, NULL);
|
gettimeofday(&end, NULL);
|
||||||
printf("Time to uncached copy %d bytes x %6d: %7.3fµs, %s\n",
|
printf("Time to uncached copy %d bytes x %6d: %7.3fµs, %s\n",
|
||||||
object_size, count,
|
object_size, count,
|
||||||
elapsed(&start, &end, count),
|
elapsed(&start, &end, count),
|
||||||
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
|
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
test_as_gtt_mmap(fd, src, dst, object_size);
|
if (drmtest_run_subtest("uncached-pwrite-blt-gtt_mmap-correctness"))
|
||||||
for (count = 1; count <= 1<<17; count <<= 1) {
|
test_as_gtt_mmap(fd, src, dst, object_size);
|
||||||
struct timeval start, end;
|
if (drmtest_run_subtest("uncached-pwrite-blt-gtt_mmap-performance")) {
|
||||||
|
for (count = 1; count <= 1<<17; count <<= 1) {
|
||||||
|
struct timeval start, end;
|
||||||
|
|
||||||
gettimeofday(&start, NULL);
|
gettimeofday(&start, NULL);
|
||||||
as_gtt_mmap(fd, src, dst, tmp, object_size, count);
|
as_gtt_mmap(fd, src, dst, tmp, object_size, count);
|
||||||
gettimeofday(&end, NULL);
|
gettimeofday(&end, NULL);
|
||||||
printf("** mmap uncached copy %d bytes x %6d: %7.3fµs, %s\n",
|
printf("** mmap uncached copy %d bytes x %6d: %7.3fµs, %s\n",
|
||||||
object_size, count,
|
object_size, count,
|
||||||
elapsed(&start, &end, count),
|
elapsed(&start, &end, count),
|
||||||
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
|
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gem_set_cacheing(fd, src, 1);
|
gem_set_cacheing(fd, src, 1);
|
||||||
gem_set_cacheing(fd, dst, 1);
|
gem_set_cacheing(fd, dst, 1);
|
||||||
test_copy(fd, src, dst, tmp, object_size);
|
if (drmtest_run_subtest("snooped-copy-correctness"))
|
||||||
for (count = 1; count <= 1<<17; count <<= 1) {
|
test_copy(fd, src, dst, tmp, object_size);
|
||||||
struct timeval start, end;
|
if (drmtest_run_subtest("snooped-copy-performance")) {
|
||||||
|
for (count = 1; count <= 1<<17; count <<= 1) {
|
||||||
|
struct timeval start, end;
|
||||||
|
|
||||||
gettimeofday(&start, NULL);
|
gettimeofday(&start, NULL);
|
||||||
copy(fd, src, dst, tmp, object_size, count);
|
copy(fd, src, dst, tmp, object_size, count);
|
||||||
gettimeofday(&end, NULL);
|
gettimeofday(&end, NULL);
|
||||||
printf("Time to snooped copy %d bytes x %6d: %7.3fµs, %s\n",
|
printf("Time to snooped copy %d bytes x %6d: %7.3fµs, %s\n",
|
||||||
object_size, count,
|
object_size, count,
|
||||||
elapsed(&start, &end, count),
|
elapsed(&start, &end, count),
|
||||||
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
|
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
test_as_cpu_mmap(fd, src, dst, object_size);
|
if (drmtest_run_subtest("snooped-pwrite-blt-cpu_mmap-correctness"))
|
||||||
for (count = 1; count <= 1<<17; count <<= 1) {
|
test_as_cpu_mmap(fd, src, dst, object_size);
|
||||||
struct timeval start, end;
|
if (drmtest_run_subtest("snooped-pwrite-blt-cpu_mmap-performance")) {
|
||||||
|
for (count = 1; count <= 1<<17; count <<= 1) {
|
||||||
|
struct timeval start, end;
|
||||||
|
|
||||||
gettimeofday(&start, NULL);
|
gettimeofday(&start, NULL);
|
||||||
as_cpu_mmap(fd, src, dst, tmp, object_size, count);
|
as_cpu_mmap(fd, src, dst, tmp, object_size, count);
|
||||||
gettimeofday(&end, NULL);
|
gettimeofday(&end, NULL);
|
||||||
printf("** mmap snooped copy %d bytes x %6d: %7.3fµs, %s\n",
|
printf("** mmap snooped copy %d bytes x %6d: %7.3fµs, %s\n",
|
||||||
object_size, count,
|
object_size, count,
|
||||||
elapsed(&start, &end, count),
|
elapsed(&start, &end, count),
|
||||||
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
|
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
free(tmp);
|
free(tmp);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user