seems like NVDLA can't execute PReLU correctly by default.
I have the following description in prototxt:
layer {
name: "relu1"
type: "ReLU"
bottom: "scale1"
top: "relu1"
relu_param {
negative_slope: 0.1
}
}
Although it can be parsed by the compiler, on NVDLA it's being executed as a standard ReLU. Does anyone know how to change the KMD, in order to properly execute this layer as PReLU?
Hi everyone,
seems like NVDLA can't execute PReLU correctly by default.
I have the following description in prototxt: layer { name: "relu1" type: "ReLU" bottom: "scale1" top: "relu1" relu_param { negative_slope: 0.1 } }
Although it can be parsed by the compiler, on NVDLA it's being executed as a standard ReLU. Does anyone know how to change the KMD, in order to properly execute this layer as PReLU?
Thanks.
Best Tim