blob: ea0f9705f45b8b5dafcbc8ebff559f1b5a63617f [file] [log] [blame]
#-------------------------------------------------------------
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#-------------------------------------------------------------
imgSize=$1
numImg=$2
numChannels=$3
poolSize1=$4
poolSize2=$5
stride=$6
pad=$7
poolMode=$8
P = $9
Q = $10
# Assumption: NCHW image format
x=matrix(seq(1, numImg*numChannels*imgSize*imgSize), rows=numImg, cols=numChannels*imgSize*imgSize)
dout=matrix(seq(1, numImg*numChannels*P*Q), rows=numImg, cols=numChannels*P*Q)
if($12) {
zero_mask = (x - mean(x)*1.5) > 0
x = x * zero_mask
}
else {
x = x - mean(x)
}
if($13) {
zero_mask = (dout - mean(dout)*1.5) > 0
dout = dout * zero_mask
}
else {
dout = dout - mean(dout)
}
if(poolMode == "max") {
output = max_pool_backward(x, dout, stride=[stride, stride], padding=[pad, pad], input_shape=[numImg, numChannels, imgSize, imgSize], pool_size=[poolSize1, poolSize2])
}
else {
# Not supported yet
# output = avg_pool_backward(x, dout, stride=[stride, stride], padding=[pad, pad], input_shape=[numImg, numChannels, imgSize, imgSize], pool_size=[poolSize1, poolSize2])
}
write(output, $11, format="text")