diff --git a/tensorflow/core/ops/compat/ops_history_v1/BeginEpoch.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/BeginEpoch.pbtxt new file mode 100644 index 00000000000..d933a0a37fa --- /dev/null +++ b/tensorflow/core/ops/compat/ops_history_v1/BeginEpoch.pbtxt @@ -0,0 +1,19 @@ +op { + name: "BeginEpoch" + input_arg { + name: "dataset_id" + type: DT_INT64 + } + input_arg { + name: "address" + type: DT_STRING + } + input_arg { + name: "protocol" + type: DT_STRING + } + output_arg { + name: "epoch_id" + type: DT_INT64 + } +} diff --git a/tensorflow/core/ops/compat/ops_history_v1/DataServiceDataset.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/DataServiceDataset.pbtxt new file mode 100644 index 00000000000..5fc666e77a9 --- /dev/null +++ b/tensorflow/core/ops/compat/ops_history_v1/DataServiceDataset.pbtxt @@ -0,0 +1,32 @@ +op { + name: "DataServiceDataset" + input_arg { + name: "address" + type: DT_STRING + } + input_arg { + name: "protocol" + type: DT_STRING + } + input_arg { + name: "max_outstanding_requests" + type: DT_INT64 + } + output_arg { + name: "handle" + type: DT_VARIANT + } + attr { + name: "output_types" + type: "list(type)" + has_minimum: true + minimum: 1 + } + attr { + name: "output_shapes" + type: "list(shape)" + has_minimum: true + minimum: 1 + } + is_stateful: true +} diff --git a/tensorflow/core/ops/compat/ops_history_v1/MakeDataServiceIterator.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/MakeDataServiceIterator.pbtxt new file mode 100644 index 00000000000..11a7fc1a764 --- /dev/null +++ b/tensorflow/core/ops/compat/ops_history_v1/MakeDataServiceIterator.pbtxt @@ -0,0 +1,16 @@ +op { + name: "MakeDataServiceIterator" + input_arg { + name: "dataset" + type: DT_VARIANT + } + input_arg { + name: "epoch_id" + type: DT_INT64 + } + input_arg { + name: "iterator" + type: DT_RESOURCE + } + is_stateful: true +} diff --git a/tensorflow/core/ops/compat/ops_history_v1/RegisterDataset.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/RegisterDataset.pbtxt new file mode 100644 index 00000000000..4c6693926b2 --- /dev/null +++ b/tensorflow/core/ops/compat/ops_history_v1/RegisterDataset.pbtxt @@ -0,0 +1,23 @@ +op { + name: "RegisterDataset" + input_arg { + name: "dataset" + type: DT_VARIANT + } + input_arg { + name: "address" + type: DT_STRING + } + input_arg { + name: "protocol" + type: DT_STRING + } + output_arg { + name: "dataset_id" + type: DT_INT64 + } + attr { + name: "external_state_policy" + type: "int" + } +} diff --git a/tensorflow/core/ops/compat/ops_history_v1/ResizeArea.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/ResizeArea.pbtxt index 688728082dd..ec861564fc4 100644 --- a/tensorflow/core/ops/compat/ops_history_v1/ResizeArea.pbtxt +++ b/tensorflow/core/ops/compat/ops_history_v1/ResizeArea.pbtxt @@ -75,3 +75,43 @@ op { } } } +op { + name: "ResizeArea" + input_arg { + name: "images" + type_attr: "T" + } + input_arg { + name: "size" + type: DT_INT32 + } + output_arg { + name: "resized_images" + type: DT_FLOAT + } + attr { + name: "T" + type: "type" + allowed_values { + list { + type: DT_INT8 + type: DT_UINT8 + type: DT_INT16 + type: DT_UINT16 + type: DT_INT32 + type: DT_INT64 + type: DT_HALF + type: DT_FLOAT + type: DT_DOUBLE + type: DT_BFLOAT16 + } + } + } + attr { + name: "align_corners" + type: "bool" + default_value { + b: false + } + } +} diff --git a/tensorflow/core/ops/compat/ops_history_v1/ResizeBicubic.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/ResizeBicubic.pbtxt index 9abf6283b02..5e479a9432b 100644 --- a/tensorflow/core/ops/compat/ops_history_v1/ResizeBicubic.pbtxt +++ b/tensorflow/core/ops/compat/ops_history_v1/ResizeBicubic.pbtxt @@ -121,3 +121,50 @@ op { } } } +op { + name: "ResizeBicubic" + input_arg { + name: "images" + type_attr: "T" + } + input_arg { + name: "size" + type: DT_INT32 + } + output_arg { + name: "resized_images" + type: DT_FLOAT + } + attr { + name: "T" + type: "type" + allowed_values { + list { + type: DT_INT8 + type: DT_UINT8 + type: DT_INT16 + type: DT_UINT16 + type: DT_INT32 + type: DT_INT64 + type: DT_HALF + type: DT_FLOAT + type: DT_DOUBLE + type: DT_BFLOAT16 + } + } + } + attr { + name: "align_corners" + type: "bool" + default_value { + b: false + } + } + attr { + name: "half_pixel_centers" + type: "bool" + default_value { + b: false + } + } +} diff --git a/tensorflow/core/ops/compat/ops_history_v1/ResizeBilinear.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/ResizeBilinear.pbtxt index 4e7c77278ee..b991a8ad63d 100644 --- a/tensorflow/core/ops/compat/ops_history_v1/ResizeBilinear.pbtxt +++ b/tensorflow/core/ops/compat/ops_history_v1/ResizeBilinear.pbtxt @@ -162,3 +162,51 @@ op { } } } +op { + name: "ResizeBilinear" + input_arg { + name: "images" + type_attr: "T" + } + input_arg { + name: "size" + type: DT_INT32 + } + output_arg { + name: "resized_images" + type: DT_FLOAT + } + attr { + name: "T" + type: "type" + allowed_values { + list { + type: DT_INT8 + type: DT_UINT8 + type: DT_INT16 + type: DT_UINT16 + type: DT_INT32 + type: DT_INT64 + type: DT_BFLOAT16 + type: DT_HALF + type: DT_FLOAT + type: DT_DOUBLE + type: DT_BFLOAT16 + } + } + } + attr { + name: "align_corners" + type: "bool" + default_value { + b: false + } + } + attr { + name: "half_pixel_centers" + type: "bool" + default_value { + b: false + } + } +} diff --git a/tensorflow/core/ops/compat/ops_history_v1/ResizeNearestNeighbor.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/ResizeNearestNeighbor.pbtxt index 627bae843a5..18d87c3583c 100644 --- a/tensorflow/core/ops/compat/ops_history_v1/ResizeNearestNeighbor.pbtxt +++ b/tensorflow/core/ops/compat/ops_history_v1/ResizeNearestNeighbor.pbtxt @@ -121,3 +121,50 @@ op { } } } +op { + name: "ResizeNearestNeighbor" + input_arg { + name: "images" + type_attr: "T" + } + input_arg { + name: "size" + type: DT_INT32 + } + output_arg { + name: "resized_images" + type_attr: "T" + } + attr { + name: "T" + type: "type" + allowed_values { + list { + type: DT_INT8 + type: DT_UINT8 + type: DT_INT16 + type: DT_UINT16 + type: DT_INT32 + type: DT_INT64 + type: DT_HALF + type: DT_FLOAT + type: DT_DOUBLE + type: DT_BFLOAT16 + } + } + } + attr { + name: "align_corners" + type: "bool" + default_value { + b: false + } + } + attr { + name: "half_pixel_centers" + type: "bool" + default_value { + b: false + } + } +} diff --git a/tensorflow/core/ops/compat/ops_history_v1/VarHandleOp.pbtxt b/tensorflow/core/ops/compat/ops_history_v1/VarHandleOp.pbtxt index b5722b97032..6e7d9a38cad 100644 --- a/tensorflow/core/ops/compat/ops_history_v1/VarHandleOp.pbtxt +++ b/tensorflow/core/ops/compat/ops_history_v1/VarHandleOp.pbtxt @@ -28,3 +28,41 @@ op { } is_stateful: true } +op { + name: "VarHandleOp" + output_arg { + name: "resource" + type: DT_RESOURCE + } + attr { + name: "container" + type: "string" + default_value { + s: "" + } + } + attr { + name: "shared_name" + type: "string" + default_value { + s: "" + } + } + attr { + name: "dtype" + type: "type" + } + attr { + name: "shape" + type: "shape" + } + attr { + name: "allowed_devices" + type: "list(string)" + default_value { + list { + } + } + } + is_stateful: true +} diff --git a/tensorflow/core/ops/ops.pbtxt b/tensorflow/core/ops/ops.pbtxt index 1716ea09259..fce46bfe81e 100644 --- a/tensorflow/core/ops/ops.pbtxt +++ b/tensorflow/core/ops/ops.pbtxt @@ -4256,6 +4256,25 @@ op { } } } +op { + name: "BeginEpoch" + input_arg { + name: "dataset_id" + type: DT_INT64 + } + input_arg { + name: "address" + type: DT_STRING + } + input_arg { + name: "protocol" + type: DT_STRING + } + output_arg { + name: "epoch_id" + type: DT_INT64 + } +} op { name: "BesselI0e" input_arg { @@ -10435,6 +10454,38 @@ op { } } } +op { + name: "DataServiceDataset" + input_arg { + name: "address" + type: DT_STRING + } + input_arg { + name: "protocol" + type: DT_STRING + } + input_arg { + name: "max_outstanding_requests" + type: DT_INT64 + } + output_arg { + name: "handle" + type: DT_VARIANT + } + attr { + name: "output_types" + type: "list(type)" + has_minimum: true + minimum: 1 + } + attr { + name: "output_shapes" + type: "list(shape)" + has_minimum: true + minimum: 1 + } + is_stateful: true +} op { name: "DatasetCardinality" input_arg { @@ -21275,6 +21326,22 @@ op { } } } +op { + name: "MakeDataServiceIterator" + input_arg { + name: "dataset" + type: DT_VARIANT + } + input_arg { + name: "epoch_id" + type: DT_INT64 + } + input_arg { + name: "iterator" + type: DT_RESOURCE + } + is_stateful: true +} op { name: "MakeIterator" input_arg { @@ -34571,6 +34638,29 @@ op { } } } +op { + name: "RegisterDataset" + input_arg { + name: "dataset" + type: DT_VARIANT + } + input_arg { + name: "address" + type: DT_STRING + } + input_arg { + name: "protocol" + type: DT_STRING + } + output_arg { + name: "dataset_id" + type: DT_INT64 + } + attr { + name: "external_state_policy" + type: "int" + } +} op { name: "Relu" input_arg { @@ -35055,6 +35145,7 @@ op { type: DT_HALF type: DT_FLOAT type: DT_DOUBLE + type: DT_BFLOAT16 } } } @@ -35094,6 +35185,7 @@ op { type: DT_HALF type: DT_FLOAT type: DT_DOUBLE + type: DT_BFLOAT16 } } } @@ -35180,6 +35272,7 @@ op { type: DT_HALF type: DT_FLOAT type: DT_DOUBLE + type: DT_BFLOAT16 } } } @@ -35267,6 +35360,7 @@ op { type: DT_HALF type: DT_FLOAT type: DT_DOUBLE + type: DT_BFLOAT16 } } } @@ -52381,6 +52475,14 @@ op { name: "shape" type: "shape" } + attr { + name: "allowed_devices" + type: "list(string)" + default_value { + list { + } + } + } is_stateful: true } op {