[PATCH v1 00/14] Add Zcompress32, Zdecompress32, Compress and Decompress test.
by Li Zhang
Add software algorithms of Zcompress32, Zdecompress32 and Decompress,
add operation Zcompress32, Zdecompress32, Compress and Decompress
test code, modify Makefile and test script.
Li Zhang (14):
accel-config/test: Add algorithm to do Zcompress32
accel-config/test: Add test code of operation Zcompress32
accel-config/test: Modify script for executing Zcompress32 test
accel-config/test: Add algorithm to do Zdecompress32
accel-config/test: Add test code of operation Zdecompress32
accel-config/test: Modify script for executing Zdecompress32 test
accel-config/test: Add function to do Decompress
accel-config/test: Add macros for IAA Compress register
accel-config/test: Add test code of operation Compress
Modify script for executing Compress test
accel-config/test: Add macros for IAA Decompress register
accel-config/test: Add element input_size to struct task
accel-config/test: Add test code of operation Decompress
accel-config/test: Modify script for executing Decompress test
accfg/idxd.h | 10 +
test/Makefile.am | 5 +-
test/accel_test.h | 1 +
test/algorithms/iaa_compress.c | 58 ++++
test/algorithms/iaa_compress.h | 413 +++++++++++++++++++++++
test/algorithms/iaa_zcompress.c | 77 +++++
test/algorithms/iaa_zcompress.h | 2 +
test/iaa.c | 569 +++++++++++++++++++++++++++++++-
test/iaa.h | 13 +
test/iaa_prep.c | 50 +++
test/iaa_test.c | 97 +++++-
test/iaa_user_test_runner.sh | 4 +-
12 files changed, 1292 insertions(+), 7 deletions(-)
create mode 100644 test/algorithms/iaa_compress.c
create mode 100644 test/algorithms/iaa_compress.h
--
2.25.1
1 month
[PATCH v1 00/11] Add Zcompress16 and Zdecompress16 to IAA test
by Li Zhang
Add software algorithms of Zcompress16 and Zdecompress16,
add operation Zcompress16 and Zdecompress16 test code,
modify Makefile, test script and configuration file.
Li Zhang (11):
accel-config/test: Move macro ADDR_ALIGNMENT to common file
accel-config/test: Modify max_transfer_size in config file
accel-config/test: Add algorithm to generate random data for
Zcompress16
accel-config/test: Add algorithm to do Zcompress16
accel-config/test: Add element output to struct task
accel-config/test: Add test code of operation Zcompress16
accel-config/test: Modify script for executing Zcompress16 test
accel-config/test: Add algorithm to do Zdecompress16
accel-config/test: Add element input to struct task
accel-config/test: Add test code of operation Zdecompress16
accel-config/test: Modify script for executing Zdecompress16 test
test/Makefile.am | 2 +-
test/accel_test.c | 2 +
test/accel_test.h | 3 +
test/algorithms/iaa_zcompress.c | 121 +++++++++++++++
test/algorithms/iaa_zcompress.h | 12 ++
test/configs/2g2q_user_2.conf | 4 +-
test/dsa.h | 2 -
test/iaa.c | 252 +++++++++++++++++++++++++++++++-
test/iaa.h | 6 +
test/iaa_prep.c | 24 ++-
test/iaa_test.c | 79 ++++++++++
test/iaa_user_test_runner.sh | 14 ++
12 files changed, 513 insertions(+), 8 deletions(-)
create mode 100644 test/algorithms/iaa_zcompress.c
create mode 100644 test/algorithms/iaa_zcompress.h
--
2.25.1
1 month, 2 weeks
Re: [PATCH v3 0/4] Add operation CRC64 into IAA test
by Dave Jiang
Reviewed-by: Dave Jiang <dave.jiang(a)intel.com> for the series
On 5/2/2022 9:33 AM, Li Zhang wrote:
> Add software algorithm of CRC64, add operation CRC64 test code,
> and modify Makefile and test script.
>
> Changelog:
> v2:
> - Convert all the IAX to IAA.
> v3:
> - Keep IAX in legacy code and use IAA on new introduced code.
>
> Li Zhang (4):
> accel-config/test: Convert the key word IAX to IAA
> accel-config/test: Add a software CRC64 algorithm
> accel-config/test: Add source code of operation CRC64
> accel-config/test: Modify script for executing CRC64 test
>
> test/Makefile.am | 2 +-
> test/accel_test.h | 16 ++--
> test/algorithms/iaa_crc64.c | 152 +++++++++++++++++++++++++++++++
> test/algorithms/iaa_crc64.h | 18 ++++
> test/common | 6 +-
> test/iaa.c | 168 +++++++++++++++++++++++++++++++++--
> test/iaa.h | 15 ++--
> test/iaa_prep.c | 14 ++-
> test/iaa_test.c | 94 +++++++++++++++++---
> test/iaa_user_test_runner.sh | 48 ++++++----
> 10 files changed, 479 insertions(+), 54 deletions(-)
> create mode 100644 test/algorithms/iaa_crc64.c
> create mode 100644 test/algorithms/iaa_crc64.h
>
2 months