All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/2] Add crc32 calculation on dg2 gpu
@ 2022-06-03 13:05 Zbigniew Kempczyński
  2022-06-03 13:05 ` [igt-dev] [PATCH i-g-t 1/2] lib/i915_crc: Introduce crc32 on gpu for DG2 Zbigniew Kempczyński
                   ` (4 more replies)
  0 siblings, 5 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2022-06-03 13:05 UTC (permalink / raw)
  To: igt-dev

Add crc32 calculation library on gpu (dg2).

v2: use predication instead of cond_bbe with memory access.
v3: migrate crc32 tables to separate file to avoid license clashes.

Zbigniew Kempczyński (2):
  lib/i915_crc: Introduce crc32 on gpu for DG2
  tests/api_intel_bb: Add crc32 checking test for DG2

 lib/i915/i915_crc.c         | 311 ++++++++++++++++++++++++++++++++++++
 lib/i915/i915_crc.h         |  17 ++
 lib/i915/i915_crc32_table.c | 105 ++++++++++++
 lib/intel_reg.h             |   7 +
 lib/meson.build             |   1 +
 tests/i915/api_intel_bb.c   |  67 ++++++++
 6 files changed, 508 insertions(+)
 create mode 100644 lib/i915/i915_crc.c
 create mode 100644 lib/i915/i915_crc.h
 create mode 100644 lib/i915/i915_crc32_table.c

-- 
2.32.0

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] Add crc32 calculation on dg2 gpu
@ 2022-06-03 11:08 Zbigniew Kempczyński
  2022-06-03 11:08 ` [igt-dev] [PATCH i-g-t 1/2] lib/i915_crc: Introduce crc32 on gpu for DG2 Zbigniew Kempczyński
  0 siblings, 1 reply; 16+ messages in thread
From: Zbigniew Kempczyński @ 2022-06-03 11:08 UTC (permalink / raw)
  To: igt-dev

Add crc32 calculation library on gpu (dg2).

v2: use predication instead of cond_bbe with memory access.

Zbigniew Kempczyński (2):
  lib/i915_crc: Introduce crc32 on gpu for DG2
  tests/api_intel_bb: Add crc32 checking test for DG2

 lib/i915/i915_crc.c       | 373 ++++++++++++++++++++++++++++++++++++++
 lib/i915/i915_crc.h       |  17 ++
 lib/intel_reg.h           |   7 +
 lib/meson.build           |   1 +
 tests/i915/api_intel_bb.c |  64 +++++++
 5 files changed, 462 insertions(+)
 create mode 100644 lib/i915/i915_crc.c
 create mode 100644 lib/i915/i915_crc.h

-- 
2.32.0

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] Add crc32 calculation on dg2 gpu
@ 2022-06-02 13:17 Zbigniew Kempczyński
  2022-06-02 13:17 ` [igt-dev] [PATCH i-g-t 1/2] lib/i915_crc: Introduce crc32 on gpu for DG2 Zbigniew Kempczyński
  0 siblings, 1 reply; 16+ messages in thread
From: Zbigniew Kempczyński @ 2022-06-02 13:17 UTC (permalink / raw)
  To: igt-dev

Add crc32 calculation library on gpu (dg2).

Zbigniew Kempczyński (2):
  lib/i915_crc: Introduce crc32 on gpu for DG2
  tests/api_intel_bb: Add crc32 checking test for DG2

 lib/i915/i915_crc.c       | 369 ++++++++++++++++++++++++++++++++++++++
 lib/i915/i915_crc.h       |  16 ++
 lib/intel_reg.h           |   7 +
 lib/meson.build           |   1 +
 tests/i915/api_intel_bb.c |  53 ++++++
 5 files changed, 446 insertions(+)
 create mode 100644 lib/i915/i915_crc.c
 create mode 100644 lib/i915/i915_crc.h

-- 
2.32.0

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2022-06-09  7:24 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-03 13:05 [igt-dev] [PATCH i-g-t 0/2] Add crc32 calculation on dg2 gpu Zbigniew Kempczyński
2022-06-03 13:05 ` [igt-dev] [PATCH i-g-t 1/2] lib/i915_crc: Introduce crc32 on gpu for DG2 Zbigniew Kempczyński
2022-06-03 13:11   ` Petri Latvala
2022-06-06  6:33     ` Zbigniew Kempczyński
2022-06-06  8:07       ` Petri Latvala
2022-06-08  9:17         ` Zbigniew Kempczyński
2022-06-09  7:22           ` Petri Latvala
2022-06-03 13:05 ` [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_bb: Add crc32 checking test " Zbigniew Kempczyński
2022-06-06 14:47   ` Kamil Konieczny
2022-06-03 13:36 ` [igt-dev] ✗ GitLab.Pipeline: warning for Add crc32 calculation on dg2 gpu (rev3) Patchwork
2022-06-03 19:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-06-03 21:44 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2022-06-03 11:08 [igt-dev] [PATCH i-g-t 0/2] Add crc32 calculation on dg2 gpu Zbigniew Kempczyński
2022-06-03 11:08 ` [igt-dev] [PATCH i-g-t 1/2] lib/i915_crc: Introduce crc32 on gpu for DG2 Zbigniew Kempczyński
2022-06-03 11:39   ` Petri Latvala
2022-06-02 13:17 [igt-dev] [PATCH i-g-t 0/2] Add crc32 calculation on dg2 gpu Zbigniew Kempczyński
2022-06-02 13:17 ` [igt-dev] [PATCH i-g-t 1/2] lib/i915_crc: Introduce crc32 on gpu for DG2 Zbigniew Kempczyński
2022-06-02 13:30   ` Petri Latvala

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.