#!/bin/sh # File: # list_exp_speed.sh # Decription: # Configure, build, and run encoder/decoder for each experimental tool. # Display the encoder/decode run time # Preassumption: # 1) Assume all script files are in ~/Dev/sandbox/libvpx/scripts # Note: # See encoder config output if set, # verbose=-v #set -x # LBD or HBD # Note: # Standard bit depth: # 1) profile=0 # 2) bitdepth= # High bit depth: # 1) profile=2 # 2) bitdepth="--bit-depth=10/12" if [ "$#" -ne 2 ]; then root_dir=~/Dev/av1w profile=0 else root_dir=$1 profile=$2 fi if [ "$profile" == "2" ]; then bitdepth="--bit-depth=10" fi if [ "$profile" == "0" ]; then bitdepth= fi code_dir=$root_dir/aom build_dir=$root_dir/release test_dir=~/Dev/weekly script_dir=~/Dev/sandbox/libvpx/scripts . $script_dir/video_sequence.sh codec="--codec=av1" verbose= core_id=3 # for exp_tool in experimental ncobmc one_sided_compound chroma_sub8x8 rect_tx global_motion ext_tx cdef ext_intra ext_refs dual_filter motion_var warped_motion var_tx tx64x64 supertx ext_partition tpl_mv unpoison_partition_ctx wedge adapt_scan ans chroma_2x2 compound_segment ext_inter ext_tile filter_intra intrabc intra_interp loop_restoration lv_map q_adapt_probs compound_round convolve_round interintra mv_compound txk_sel ext_inter ec_adapt filter_7bit reference_buffer delta_q ext_delta_q loopfiltering_across_tiles ec_smallmul smooth_hv alt_intra do cd $build_dir $script_dir/weekly_config.sh $exp_tool make clean > /dev/null make -j > /dev/null if [ $? -ne 0 ]; then echo "AV1 build failed on experiment: $exp_tool" fi cp ./aomenc $test_dir/. cp ./aomdec $test_dir/. cd $test_dir elog=e_$exp_tool.txt dlog=d_$exp_tool.txt bs=bs_$exp_tool.webm if [ $exp_tool == intrabc ] || [ $exp_tool == palette ] || [ $exp_tool == palette_delta_encoding ] || [ $exp_tool == palette_throughput ]; then tune_content="--tune-content=screen" else tune_content= fi if [ $exp_tool == ext_tile ]; then col_num=1 else col_num=0 fi taskset -c $core_id ./aomenc $verbose -o /dev/shm/$bs $video $codec --limit=$frames --profile=$profile $bitdepth --fps=$fps $tune_content --target-bitrate=$bitrate --skip=0 -p 2 --good --cpu-used=0 --lag-in-frames=25 --min-q=0 --max-q=63 --auto-alt-ref=1 --kf-max-dist=150 --kf-min-dist=0 --drop-frame=0 --static-thresh=0 --bias-pct=50 --minsection-pct=0 --maxsection-pct=2000 --arnr-maxframes=7 --arnr-strength=5 --sharpness=0 --undershoot-pct=100 --overshoot-pct=100 --frame-parallel=0 --tile-columns=$col_num --test-decode=warn --psnr &> $elog # Note: $2 is the time unit, ms or us #etime=`cat $elog | grep 'Pass 2/2' | grep 'fps)' | sed -e 's/^.*b\/s//' | awk '{print $1" "$2}'` etime=`cat $elog | grep 'Pass 2/2' | grep 'fps)' | sed -e 's/^.*b\/s//' | awk '{print $1" "}'` psnr=`cat $elog | grep 'PSNR' | awk '{print $5, $6, $7, $8, $9}'` tmp=`cat $elog | grep mismatch` if [ "$?" -ne 0 ]; then eflag=e_ok else eflag=mismatch fi taskset -c $core_id ./aomdec /dev/shm/$bs $codec --i420 --noblit --summary 2>&1 &> $dlog if [ "$?" -ne 0 ]; then dflag=fault else dflag=d_ok fi # Note: $8 is the time unit ms or us #dtime=`awk '{print $7" "$8}' < $dlog` dtime=`awk '{print $7" "}' < $dlog` echo -e $exp_tool '\t'$etime'\t'$dtime'\t'$psnr'\t'$eflag'\t'$dflag rm ./aomenc rm ./aomdec done