Raman Sarokin aa34a156de gpu/cl/kernels moved to gpu/common/tasks
PiperOrigin-RevId: 344105303
Change-Id: I94840b86be4838c570ca27f9058994b1ba8df14a
2020-11-24 12:04:54 -08:00

92 lines
3.4 KiB
C++

/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed 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.
==============================================================================*/
#include "tensorflow/lite/delegates/gpu/common/tasks/prelu.h"
#include "absl/strings/str_cat.h"
#include "absl/types/variant.h"
#include "tensorflow/lite/delegates/gpu/common/task/storage_type_util.h"
#include "tensorflow/lite/delegates/gpu/common/tensor.h"
namespace tflite {
namespace gpu {
GPUOperation CreatePReLU(const GpuInfo& gpu_info,
const OperationDef& definition,
const PReLUAttributes& attr) {
GPUOperation result(definition);
result.elementwise_ = true;
std::string alpha_read;
auto alpha_linear =
absl::get_if<tflite::gpu::Tensor<Linear, DataType::FLOAT32>>(&attr.alpha);
if (alpha_linear) {
TensorLinearDescriptor desc;
desc.storage_type =
DeduceLinearStorageType(definition.GetPrimaryStorageType());
desc.element_type = definition.GetPrimaryDataType();
desc.UploadLinearData(*alpha_linear);
result.args_.AddObject(
"alpha", absl::make_unique<TensorLinearDescriptor>(std::move(desc)));
alpha_read = "FLT4 alpha_val = args.alpha.Read(S_COORD);\n";
}
auto alpha_hwc =
absl::get_if<tflite::gpu::Tensor<HWC, DataType::FLOAT32>>(&attr.alpha);
if (alpha_hwc) {
const BHWC shape =
BHWC(1, alpha_hwc->shape.h, alpha_hwc->shape.w, alpha_hwc->shape.c);
TensorStorageType storage_type = SelectBestStorageType(
gpu_info, shape, definition.GetPrimaryStorageType(),
definition.GetDataType(), Layout::HWC);
TensorDescriptor desc{definition.GetDataType(), storage_type, Layout::HWC};
desc.UploadData(*alpha_hwc);
result.args_.AddObject(
"alpha", absl::make_unique<TensorDescriptor>(std::move(desc)));
const std::string x_coord = shape.w == 1 ? "0" : "X_COORD";
const std::string y_coord = shape.h == 1 ? "0" : "Y_COORD";
const std::string s_coord = shape.c == 1 ? "0" : "S_COORD";
alpha_read = absl::StrCat("FLT4 alpha_val = args.alpha.Read(", x_coord,
", ", y_coord, ", ", s_coord, ");\n");
if (shape.c == 1) {
alpha_read += " alpha_val.y = alpha_val.x;\n";
alpha_read += " alpha_val.z = alpha_val.x;\n";
alpha_read += " alpha_val.w = alpha_val.x;\n";
}
}
if (attr.clip != 0) {
if (definition.precision == CalculationsPrecision::F32) {
result.args_.AddFloat("clip", attr.clip);
} else {
result.args_.AddHalf("clip", half(attr.clip));
}
result.code_ =
alpha_read +
"in_out_value = clamp(in_out_value, (FLT4)(0.0f), (FLT4)(args.clip)) + "
"min((FLT4)(0.0f), in_out_value) * alpha_val;";
} else {
result.code_ =
alpha_read +
"in_out_value = max((FLT4)(0.0f), in_out_value) + min((FLT4)(0.0f), "
"in_out_value) * alpha_val;";
}
return result;
}
} // namespace gpu
} // namespace tflite