[PATCH i-g-t 4/4] api-intel-bb crc32

Zbigniew Kempczyński zbigniew.kempczynski at intel.com
Mon Jun 6 10:34:31 UTC 2022


---
 tests/i915/api_intel_bb.c | 69 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 69 insertions(+)

diff --git a/tests/i915/api_intel_bb.c b/tests/i915/api_intel_bb.c
index 92f44cecf4..03303d776b 100644
--- a/tests/i915/api_intel_bb.c
+++ b/tests/i915/api_intel_bb.c
@@ -22,6 +22,7 @@
  */
 
 #include "igt.h"
+#include "igt_crc.h"
 #include "i915/gem.h"
 #include "i915/gem_create.h"
 #include <unistd.h>
@@ -38,6 +39,7 @@
 #include <zlib.h>
 #include "intel_bufops.h"
 #include "i915/gem_vm.h"
+#include "i915/i915_crc.h"
 
 #define PAGE_SIZE 4096
 
@@ -1395,6 +1397,57 @@ static void render_ccs(struct buf_ops *bops)
 	igt_assert_f(fails == 0, "render-ccs fails: %d\n", fails);
 }
 
+static double elapsed(const struct timeval *start,
+		      const struct timeval *end)
+{
+	return (1e6*(end->tv_sec - start->tv_sec) + (end->tv_usec - start->tv_usec)) / 1e6;
+}
+
+static void test_crc32(int i915, const intel_ctx_t *ctx,
+		       const struct intel_execution_engine2 *e,
+		       struct drm_i915_gem_memory_class_instance *r)
+{
+	uint64_t ahnd = get_reloc_ahnd(i915, ctx->id);
+	uint32_t data, *ptr;
+
+	uint32_t region = INTEL_MEMORY_REGION_ID(r->memory_class,
+						 r->memory_instance);
+
+	igt_info("[engine: %s, region: %s]\n", e->name,
+		 region == REGION_SMEM ? "smem" : "lmem");
+	for (int i = 12; i < 21; i++) {
+		struct timeval start, end;
+		uint64_t size = 1 << i;
+		uint32_t cpu_crc, gpu_crc;
+
+		double cpu_time, gpu_time;
+
+		data = gem_create_in_memory_regions(i915, size, region);
+		ptr = gem_mmap__device_coherent(i915, data, 0, size, PROT_WRITE);
+		for (int j = 0; j < size / sizeof(*ptr); j++)
+			ptr[j] = j;
+
+		gettimeofday(&start, NULL);
+		cpu_crc = igt_cpu_crc32(ptr, size);
+		gettimeofday(&end, NULL);
+		cpu_time = elapsed(&start, &end);
+
+		gettimeofday(&start, NULL);
+		gpu_crc = i915_crc32(i915, ahnd, ctx, e, data, size);
+		gettimeofday(&end, NULL);
+		gpu_time = elapsed(&start, &end);
+		igt_info("size: %10lld, cpu crc: 0x%08x (time: %.3f), "
+				 "gpu crc: 0x%08x (time: %.3f) [ %s ]\n",
+			 (long long) size, cpu_crc, cpu_time, gpu_crc, gpu_time,
+			 cpu_crc == gpu_crc ? "EQUAL" : "DIFFERENT");
+		munmap(ptr, size);
+		gem_close(i915, data);
+		igt_assert(cpu_crc == gpu_crc);
+	}
+
+	put_ahnd(ahnd);
+}
+
 static int opt_handler(int opt, int opt_index, void *data)
 {
 	switch (opt) {
@@ -1552,6 +1605,22 @@ igt_main_args("dpib", NULL, help_str, opt_handler, NULL)
 	igt_subtest("render-ccs")
 		render_ccs(bops);
 
+	igt_describe("Compare cpu and gpu crc32 sums on input object");
+	igt_subtest_with_dynamic_f("crc32") {
+		const intel_ctx_t *ctx;
+		const struct intel_execution_engine2 *e;
+
+		igt_require(supports_gpu_crc32(i915));
+
+		ctx = intel_ctx_create_all_physical(i915);
+		for_each_ctx_engine(i915, ctx, e) {
+			for_each_memory_region(r, i915) {
+				igt_dynamic_f("%s-%s", e->name, r->name)
+					test_crc32(i915, ctx, e, &r->ci);
+			}
+		}
+	}
+
 	igt_fixture {
 		buf_ops_destroy(bops);
 		close(i915);
-- 
2.32.0



More information about the Intel-gfx-trybot mailing list