Revision b543bb66a157f4632524652d6f6c20e71c81ccde authored by Dillon Sharlet on 16 February 2021, 09:09:56 UTC, committed by Dillon Sharlet on 16 February 2021, 09:50:13 UTC
1 parent 6cd6601
Raw File
MaxPool.sh
MAXPOOL=$1
# Columns are: schedule C W H N stride pad_width pad_height filter_width filter_height output_min output_max
$MAXPOOL 8 16 16 1 1 0 0 1 1 0 255
$MAXPOOL 8 16 16 1 1 1 1 3 3 0 255
$MAXPOOL 8 16 16 1 2 1 1 3 3 0 255
$MAXPOOL 8 16 16 1 2 2 2 5 5 0 255

$MAXPOOL 32 7 7 1 1 0 0 1 1 0 255
$MAXPOOL 32 7 7 1 1 1 1 3 3 0 255
$MAXPOOL 32 7 7 1 2 1 1 3 3 0 255
$MAXPOOL 32 7 7 4 2 2 2 5 5 0 255

$MAXPOOL 8 16 16 1 1 0 0 1 1 64 128
$MAXPOOL 8 16 16 1 1 1 1 3 3 64 128
$MAXPOOL 8 16 16 1 2 1 1 3 3 64 128
back to top