mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
12 lines
358 B
Bash
Executable file
12 lines
358 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Test SMP and AMP blocks.
|
|
|
|
set -eu
|
|
. "${0%/*}/util.sh"
|
|
|
|
valgrind_test 264x130 4 --threads=2 --owf=1 --wpp --smp
|
|
valgrind_test 264x130 4 --threads=2 --owf=1 --wpp --amp
|
|
valgrind_test 264x130 4 --threads=2 --owf=1 --wpp --smp --amp
|
|
if [ ! -z ${GITLAB_CI+x} ];then valgrind_test 264x130 16 --gop=8 --threads=2 --owf=1 --wpp --smp --amp --bipred; fi
|