aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tf2xla/kernels/dynamic_slice_ops.cc
blob: 4af1e8b44cbbd02d8e3ea5e42d841c92288b5d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* Copyright 2018 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 <algorithm>

#include "tensorflow/compiler/tf2xla/shape_util.h"
#include "tensorflow/compiler/tf2xla/xla_op_kernel.h"
#include "tensorflow/compiler/tf2xla/xla_op_registry.h"
#include "tensorflow/compiler/xla/client/xla_builder.h"
#include "tensorflow/core/framework/op_kernel.h"

#include "tensorflow/compiler/tf2xla/type_util.h"
#include "tensorflow/compiler/tf2xla/xla_helpers.h"
#include "tensorflow/core/framework/kernel_def_builder.h"

namespace tensorflow {
namespace {

class DynamicUpdateSliceOp : public XlaOpKernel {
 public:
  explicit DynamicUpdateSliceOp(OpKernelConstruction* context)
      : XlaOpKernel(context) {}

  void Compile(XlaOpKernelContext* ctx) override {
    DataType index_type = ctx->InputType("indices");
    CHECK(index_type == DT_INT32 || index_type == DT_INT64);

    const TensorShape input_shape = ctx->InputShape("input");
    const TensorShape update_shape = ctx->InputShape("update");
    const TensorShape index_shape = ctx->InputShape("indices");

    OP_REQUIRES(
        ctx,
        TensorShapeUtils::IsVector(index_shape) &&
            index_shape.num_elements() == input_shape.dims(),
        errors::InvalidArgument("index must be a vector with length equal to "
                                "the number of input dimensions"));
    OP_REQUIRES(
        ctx, input_shape.dims() == update_shape.dims(),
        errors::InvalidArgument("input and update must have the same rank,"
                                " input shape is ",
                                input_shape.DebugString(), "; update shape is ",
                                update_shape.DebugString()));

    xla::XlaOp result = xla::DynamicUpdateSlice(
        ctx->Input("input"), ctx->Input("update"), ctx->Input("indices"));
    ctx->SetOutput(0, result);
  }
};

REGISTER_XLA_OP(Name("XlaDynamicUpdateSlice"), DynamicUpdateSliceOp);

class DynamicSliceOp : public XlaOpKernel {
 public:
  explicit DynamicSliceOp(OpKernelConstruction* context)
      : XlaOpKernel(context) {}

  void Compile(XlaOpKernelContext* ctx) override {
    DataType index_type = ctx->InputType("start_indices");
    CHECK(index_type == DT_INT32 || index_type == DT_INT64);
    CHECK(index_type == ctx->InputType("size_indices"));

    const TensorShape input_shape = ctx->InputShape("input");
    const TensorShape start_indices_shape = ctx->InputShape("start_indices");
    const TensorShape size_indices_shape = ctx->InputShape("size_indices");

    OP_REQUIRES(ctx,
                TensorShapeUtils::IsVector(start_indices_shape) &&
                    start_indices_shape.num_elements() == input_shape.dims(),
                errors::InvalidArgument(
                    "start_indices must be a vector with length equal to "
                    "input rank, but input rank is ",
                    input_shape.dims(), " and start_indices has shape ",
                    start_indices_shape.DebugString()));
    OP_REQUIRES(ctx,
                TensorShapeUtils::IsVector(size_indices_shape) &&
                    size_indices_shape.num_elements() == input_shape.dims(),
                errors::InvalidArgument(
                    "size_indices must be a vector with length equal to "
                    "input rank, but input rank is ",
                    input_shape.dims(), " and size_indices has shape ",
                    size_indices_shape.DebugString()));

    std::vector<int64> size_indices;
    OP_REQUIRES_OK(
        ctx, ctx->ConstantInputAsIntVector("size_indices", &size_indices));
    xla::XlaOp result = xla::DynamicSlice(
        ctx->Input("input"), ctx->Input("start_indices"), size_indices);
    ctx->SetOutput(0, result);
  }
};

REGISTER_XLA_OP(Name("XlaDynamicSlice").CompileTimeConstInput("size_indices"),
                DynamicSliceOp);

}  // namespace
}  // namespace tensorflow