86 lines
3.2 KiB
Plaintext
86 lines
3.2 KiB
Plaintext
/* ******************************************************************************
|
|
*
|
|
*
|
|
* This program and the accompanying materials are made available under the
|
|
* terms of the Apache License, Version 2.0 which is available at
|
|
* https://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* See the NOTICE file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
* 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.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
******************************************************************************/
|
|
|
|
//
|
|
// @author GS <sgazeos@gmail.com>
|
|
//
|
|
#include <array/NDArrayFactory.h>
|
|
#include <ops/declarable/helpers/legacy_helpers.h>
|
|
#include <ops/ops.h>
|
|
#include <system/op_boilerplate.h>
|
|
|
|
|
|
namespace sd {
|
|
namespace ops {
|
|
namespace helpers {
|
|
////////////////////////////////////////////////////////////////////////
|
|
template <typename T>
|
|
void tanhDerivative_(NDArray* input, NDArray* epsilon, NDArray* output) {
|
|
auto functor = LAMBDA_TT(x, y) {
|
|
T th = math::sd_tanh<T, T>(x);
|
|
return y * ((T)1.0f - (th * th));
|
|
});
|
|
|
|
input->applyPairwiseLambda(epsilon, functor, output);
|
|
}
|
|
|
|
void tanhDerivative(LaunchContext* context, NDArray* theFirst, NDArray* theSecond, NDArray* theOutput) {
|
|
BUILD_SINGLE_SELECTOR(theFirst->dataType(), tanhDerivative_, (theFirst, theSecond, theOutput), SD_FLOAT_TYPES);
|
|
}
|
|
|
|
template <typename T>
|
|
void hardTanhDerivative_(NDArray* input, NDArray* epsilon, NDArray* output) {
|
|
auto functor = LAMBDA_TT(x, y) {
|
|
T th = math::sd_tanh<T, T>(x);
|
|
return y * simdOps::HardTanhDerivative<T>::op(x, nullptr);
|
|
});
|
|
|
|
input->applyPairwiseLambda(epsilon, functor, output);
|
|
}
|
|
|
|
void hardTanhDerivative(LaunchContext* context, NDArray* theFirst, NDArray* theSecond, NDArray* theOutput) {
|
|
BUILD_SINGLE_SELECTOR(theFirst->dataType(), hardTanhDerivative_, (theFirst, theSecond, theOutput), SD_FLOAT_TYPES);
|
|
}
|
|
|
|
template <typename T>
|
|
void rationalTanhDerivative_(NDArray* input, NDArray* epsilon, NDArray* output) {
|
|
auto functor = LAMBDA_TT(x, y) { return y * simdOps::RationalTanhDerivative<T>::op(x, nullptr); });
|
|
|
|
input->applyPairwiseLambda(epsilon, functor, output);
|
|
}
|
|
|
|
void rationalTanhDerivative(LaunchContext* context, NDArray* theFirst, NDArray* theSecond, NDArray* theOutput) {
|
|
BUILD_SINGLE_SELECTOR(theFirst->dataType(), rationalTanhDerivative_, (theFirst, theSecond, theOutput),
|
|
SD_FLOAT_TYPES);
|
|
}
|
|
|
|
template <typename T>
|
|
void rectifiedTanhDerivative_(NDArray* input, NDArray* epsilon, NDArray* output) {
|
|
auto functor = LAMBDA_TT(x, y) { return x > (T)0.0f ? y * (math::sd_tanhderivative<T, T>(x)) : (T)0.0f; });
|
|
|
|
input->applyPairwiseLambda(epsilon, functor, output);
|
|
}
|
|
|
|
void rectifiedTanhDerivative(LaunchContext* context, NDArray* theFirst, NDArray* theSecond, NDArray* theOutput) {
|
|
BUILD_SINGLE_SELECTOR(theFirst->dataType(), rectifiedTanhDerivative_, (theFirst, theSecond, theOutput),
|
|
SD_FLOAT_TYPES);
|
|
}
|
|
} // namespace helpers
|
|
} // namespace ops
|
|
} // namespace sd
|