Files
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

158 lines
6.1 KiB
C++

/* Copyright 2017 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 <cstdint>
#include "absl/status/status.h"
#include "tensorflow/compiler/tf2xla/lib/broadcast.h"
#include "tensorflow/compiler/tf2xla/lib/util.h"
#include "tensorflow/compiler/tf2xla/shape_util.h"
#include "tensorflow/compiler/tf2xla/type_util.h"
#include "tensorflow/compiler/tf2xla/xla_helpers.h"
#include "tensorflow/compiler/tf2xla/xla_op_kernel.h"
#include "tensorflow/compiler/tf2xla/xla_op_registry.h"
#include "xla/hlo/builder/lib/arithmetic.h"
#include "xla/hlo/builder/lib/constants.h"
#include "xla/hlo/builder/xla_builder.h"
#include "xla/primitive_util.h"
#include "xla/xla_data.pb.h"
#include "tensorflow/core/framework/kernel_def_builder.h"
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/types.pb.h"
#include "tensorflow/core/lib/core/errors.h"
namespace tensorflow {
namespace {
class CastOp : public XlaOpKernel {
public:
explicit CastOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) {
OP_REQUIRES_OK(ctx, ctx->GetAttr("SrcT", &src_dtype_));
OP_REQUIRES_OK(ctx, ctx->GetAttr("DstT", &dst_dtype_));
OP_REQUIRES_OK(ctx, DataTypeToPrimitiveType(src_dtype_, &src_type_));
OP_REQUIRES_OK(ctx, DataTypeToPrimitiveType(dst_dtype_, &dst_type_));
OP_REQUIRES_OK(ctx, ctx->GetAttr("Truncate", &use_truncation_));
}
void Compile(XlaOpKernelContext* ctx) override {
xla::XlaBuilder* builder = ctx->builder();
xla::XlaOp input = ctx->Input(0);
xla::XlaOp output;
if (src_dtype_ == dst_dtype_) {
output = input;
} else if (dst_dtype_ == DT_BOOL) {
output = xla::Ne(input, XlaHelpers::Zero(builder, src_dtype_));
} else if (xla::primitive_util::IsComplexType(src_type_) &&
!xla::primitive_util::IsComplexType(dst_type_)) {
// As in cast_op.h, we replicate the numpy behavior of truncating the
// imaginary part.
output = xla::ConvertElementType(xla::Real(input), dst_type_);
} else {
if (use_truncation_) {
OP_REQUIRES(ctx,
xla::primitive_util::IsFloatingPointType(src_type_) &&
xla::primitive_util::IsFloatingPointType(dst_type_),
absl::UnimplementedError(
"Truncate attribute is only "
"implemented for floating point datatypes."));
int mantissa_difference =
xla::primitive_util::SignificandWidth(src_type_) -
xla::primitive_util::SignificandWidth(dst_type_);
OP_REQUIRES(ctx, mantissa_difference > 0,
absl::UnimplementedError(
"Truncate attribute is only implemented in cases where "
"dst datatype "
"has fewer mantissa bits than the src datatype"));
int src_bitwidth = xla::primitive_util::BitWidth(src_type_);
// Bitcast to same-width integer, mask off the LSBs, bitcast back to the
// source datatype.
int64_t mask = ~((1L << mantissa_difference) - 1);
xla::PrimitiveType same_width_int =
xla::primitive_util::UnsignedIntegralTypeForBitWidth(src_bitwidth);
OP_REQUIRES(ctx, same_width_int != xla::PRIMITIVE_TYPE_INVALID,
absl::UnimplementedError("Unexpected type bitwidth"));
input = xla::BitcastConvertType(
xla::And(
xla::BitcastConvertType(input, same_width_int),
::tensorflow::IntegerLiteral(builder, same_width_int, mask)),
src_type_);
}
output = xla::ConvertElementType(input, dst_type_);
}
ctx->SetOutput(0, output);
}
protected:
DataType src_dtype_, dst_dtype_;
xla::PrimitiveType src_type_, dst_type_;
bool use_truncation_;
CastOp(const CastOp&) = delete;
void operator=(const CastOp&) = delete;
};
REGISTER_XLA_OP(Name("Cast"), CastOp);
class BitcastOp : public XlaOpKernel {
public:
explicit BitcastOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) {
OP_REQUIRES_OK(ctx, ctx->GetAttr("T", &src_dtype_));
OP_REQUIRES_OK(ctx, ctx->GetAttr("type", &dst_dtype_));
OP_REQUIRES_OK(ctx, DataTypeToPrimitiveType(src_dtype_, &src_type_));
OP_REQUIRES_OK(ctx, DataTypeToPrimitiveType(dst_dtype_, &dst_type_));
}
void Compile(XlaOpKernelContext* ctx) override {
xla::XlaOp input = ctx->Input(0);
xla::XlaOp output;
if (src_dtype_ == dst_dtype_) {
output = input;
ctx->SetOutput(0, output);
return;
}
// Error out if the bitcast has a complex source or destination type and
// the bitcast is not trivial.
OP_REQUIRES(ctx,
!xla::primitive_util::IsComplexType(src_type_) &&
!xla::primitive_util::IsComplexType(dst_type_),
absl::UnimplementedError("Complex types not supported."));
auto input_bit_width = xla::primitive_util::BitWidth(src_type_);
auto output_bit_width = xla::primitive_util::BitWidth(dst_type_);
OP_REQUIRES(ctx,
output_bit_width % input_bit_width == 0 ||
input_bit_width % output_bit_width == 0,
absl::InvalidArgumentError(
"Neither bit width is a multiple of the other."));
output = xla::BitcastConvertType(input, dst_type_);
ctx->SetOutput(0, output);
}
protected:
DataType src_dtype_, dst_dtype_;
xla::PrimitiveType src_type_, dst_type_;
BitcastOp(const BitcastOp&) = delete;
void operator=(const BitcastOp&) = delete;
};
REGISTER_XLA_OP(Name("Bitcast"), BitcastOp);
} // anonymous namespace
} // namespace tensorflow