aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2024-02-21 09:36:37 +0200
committerMatias Elo <matias.elo@nokia.com>2024-02-21 17:00:40 +0200
commit7abbd0d823091bfc52ec0345fb8fc67f68cc8c80 (patch)
tree5d4b10c39e30224be42a5daaa15c7c8ffc2ab65f
parent472da6b66b3c4cc49bc075cd201b09a3a65e3ef2 (diff)
api: increment ODP API version to 1.44.0v1.44.0.0
Increment API version number to reflect the following changes: Backward compatible: - ml: add new API module for machine learning offload Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
-rw-r--r--CHANGELOG37
-rw-r--r--configure.ac2
2 files changed, 38 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index dd3d04048..e9d953a92 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,40 @@
+== OpenDataPlane (1.44.0.0)
+
+=== Backward compatible API changes
+==== ML
+* Add new API module for Machine Learning offload.
+
+=== Implementation
+==== ML
+* Implement the API using ONNX Runtime. A non-standard ONNX install path can be
+passed with `--with-ort-path` configure option. See `DEPENDENCIES` for
+additional information.
+
+=== Example Applications
+==== debug
+* Print packet IO link information.
+* Add packet IO interface name option (`-i`).
+
+==== packet_dump
+* Add support for measuring packet input delay.
+
+=== Performance Tests
+==== l2fwd
+* Add packet input timestamping option (`-T`).
+* Add packet data prefetch option (`-F`).
+* Add packet data read option (`-R`).
+* Add packet print option (`-V`).
+
+==== pool_latency
+* New pool latency tester application for profiling pool allocation and free
+latencies under different load patterns.
+
+==== sched_perf
+* Add options to read (`-u`) and modify (`-U`) event user area contents per
+event reception.
+* Run application indefinitely when the number of events to schedule option
+(`-s`) is set to zero.
+
== OpenDataPlane (1.43.0.0)
=== Backward incompatible API changes
diff --git a/configure.ac b/configure.ac
index da1dbc491..f0b2c9952 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ AC_PREREQ([2.5])
# ODP API version
##########################################################################
m4_define([odp_version_generation], [1])
-m4_define([odp_version_major], [43])
+m4_define([odp_version_major], [44])
m4_define([odp_version_minor], [0])
m4_define([odp_version_patch], [0])