d4ab30ba33
The ioat driver supports DMA engine copy offload hardware available on Intel Xeon platforms. Change-Id: Ida0b17b25816576948ddb1b0443587e0f09574d4 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
24 lines
379 B
Bash
Executable File
24 lines
379 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -xe
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir="$testdir/../../.."
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
timing_enter ioat
|
|
|
|
timing_enter unit
|
|
$testdir/unit/ioat_ut
|
|
timing_exit unit
|
|
|
|
timing_enter perf
|
|
$rootdir/examples/ioat/perf/perf
|
|
timing_exit perf
|
|
|
|
timing_enter verify
|
|
$rootdir/examples/ioat/verify/verify
|
|
timing_exit verify
|
|
|
|
timing_exit ioat
|