You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE.md
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,25 @@
48
48
* Added support for `stablehlo.maximum`.
49
49
* Added support for `stablehlo.minimum`.
50
50
* Added boolean parameter support for `tfl.gather_nd`.
51
+
* C API:
52
+
* New API functions:
53
+
* `tensorflow/lite/c/c_api_experimental.h`:
54
+
* `TfLiteInterpreterGetVariableTensorCount`
55
+
* `TfLiteInterpreterGetVariableTensor`
56
+
* `TfLiteInterpreterGetBufferHandle`
57
+
* `TfLiteInterpreterSetBufferHandle`
58
+
* `tensorflow/lite/c/c_api_opaque.h`:
59
+
* `TfLiteOpaqueTensorSetAllocationTypeToDynamic`
60
+
* API functions promoted from experimental to stable:
61
+
* `tensorflow/lite/c/c_api.h`:
62
+
* `TfLiteInterpreterOptionsEnableCancellation`
63
+
* `TfLiteInterpreterCancel`
64
+
* C++ API:
65
+
* New virtual methods in the `tflite::SimpleDelegateInterface` class in `tensorflow/lite/delegates/utils/simple_delegate.h`,
66
+
and likewise in the `tflite::SimpleOpaqueDelegateInterface` class in `tensorflow/lite/delegates/utils/simple_opaque_delegate.h`:
67
+
* `CopyFromBufferHandle`
68
+
* `CopyToBufferHandle`
69
+
* `FreeBufferHandle`
51
70
52
71
* `tf.train.CheckpointOptions` and `tf.saved_model.SaveOptions`
53
72
* These now take in a new argument called `experimental_sharding_callback`. This is a callback function wrapper that will be executed to determine how tensors will be split into shards when the saver writes the checkpoint shards to disk. `tf.train.experimental.ShardByTaskPolicy` is the default sharding behavior, but `tf.train.experimental.MaxShardSizePolicy` can be used to shard the checkpoint with a maximum shard file size. Users with advanced use cases can also write their own custom `tf.train.experimental.ShardingCallback`s.
0 commit comments