Revision d14d3a17f92541dd266d3a52c783c23555939424 authored by Z Stern on 28 July 2018, 00:28:59 UTC, committed by Z Stern on 28 July 2018, 00:28:59 UTC
guarantee they are in any particular order otherwise.
1 parent 7018190
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