blob: d6142f3274288a6936d7e1d59916ca88c05883e4 [file] [log] [blame]
/* Copyright 2020 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/core/framework/common_shape_fns.h"
#include "tensorflow/core/framework/op.h"
#include "tensorflow/core/framework/shape_inference.h"
namespace tensorflow {
namespace {
//TODO(kttian): Support non-scalar values
REGISTER_OP("EmptyTensorMap")
.Output("handle: variant")
.SetShapeFn([](shape_inference::InferenceContext* c) {
c->set_output(0, c->Scalar());
return Status::OK();
});
REGISTER_OP("TensorMapSize")
.Input("input_handle: variant")
.Output("size: int32")
.SetShapeFn(shape_inference::ScalarShape);
REGISTER_OP("TensorMapInsert")
.Input("input_handle: variant")
.Input("key: key_dtype")
.Input("value: value_dtype")
.Output("output_handle: variant")
.Attr("key_dtype: type")
.Attr("value_dtype: type")
.SetShapeFn([](shape_inference::InferenceContext* c) {
c->set_output(0, c->Scalar());
return Status::OK();
});
REGISTER_OP("TensorMapLookup")
.Input("input_handle: variant")
.Input("key: key_dtype")
.Output("value: value_dtype")
.Attr("key_dtype: type")
.Attr("value_dtype: type")
.SetShapeFn([](shape_inference::InferenceContext* c) {
c->set_output(0, c->UnknownShape());
return Status::OK();
});
REGISTER_OP("TensorMapErase")
.Input("input_handle: variant")
.Input("key: key_dtype")
.Output("output_handle: variant")
.Output("value: value_dtype")
.Attr("key_dtype: type")
.Attr("value_dtype: type")
.SetShapeFn([](shape_inference::InferenceContext* c) {
c->set_output(0, c->Scalar()); // output map
c->set_output(1, c->UnknownShape()); // removed element
return Status::OK();
});
REGISTER_OP("TensorMapHasKey")
.Input("input_handle: variant")
.Input("key: element_dtype")
.Output("has_key: bool")
.Attr("element_dtype: type")
.SetShapeFn(shape_inference::ScalarShape);
} // namespace
} // namespace tensorflow