Skip to content

Commit

Permalink
Release 6.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Raghavan Kanagaraj <[email protected]>
  • Loading branch information
rkanagar committed Jun 12, 2024
1 parent ccd9d8e commit cc0e6a6
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 6 deletions.
17 changes: 17 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
=======================================================================
Release v24.05 Jun 2024
=======================================================================

Contributors (alphabetical order):
Babu Moger <[email protected]>
Marcel Cornu <[email protected]>
Raghavan Kanagaraj <[email protected]>
Roman Storozhenko <[email protected]>

1. Library:
- Added AMD SMBA support
2. PQoS
- Added AMD SMBA support
3. General:
- Bug fixes

=======================================================================
Release v23.11 Nov 2023
=======================================================================
Expand Down
4 changes: 2 additions & 2 deletions lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
include ../pre-build.mk

LIB = libpqos
VERSION = 5.0.0
SO_VERSION = 5
VERSION = 6.0.0
SO_VERSION = 6
SHARED ?= y
LDFLAGS = -L. -lpthread -z noexecstack -z relro -z now
CFLAGS = -pthread -I./ -D_GNU_SOURCE \
Expand Down
2 changes: 1 addition & 1 deletion lib/pqos.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ extern "C" {
* =======================================
*/

#define PQOS_VERSION 50000 /**< version 5.0.0 */
#define PQOS_VERSION 60000 /**< version 6.0.0 */
#define PQOS_MAX_COS 16 /**< 16 x COS */
#define PQOS_MAX_L3CA_COS PQOS_MAX_COS
#define PQOS_MAX_L2CA_COS PQOS_MAX_COS
Expand Down
2 changes: 1 addition & 1 deletion lib/python/pqos/pqos.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __new__(cls):
def __init__(self):
"Finds PQoS library and constructs a new object."

self.lib = ctypes.cdll.LoadLibrary('libpqos.so.5')
self.lib = ctypes.cdll.LoadLibrary('libpqos.so.6')

def init(self, interface, log_file=None, log_callback=None,
log_context=None, verbose='default'):
Expand Down
2 changes: 1 addition & 1 deletion lib/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pqos"
version = "5.0.0"
version = "6.0.0"
description = "Python interface for Intel(R) RDT PQoS library"
authors = [
{ name = "Michal Aleksinski", email = "[email protected]"},
Expand Down
5 changes: 4 additions & 1 deletion rpm/intel-cmt-cat.spec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

%global githubname intel-cmt-cat
%global githubver 4.6.1
%global githubver 6.0.0

%if %{defined githubsubver}
%global githubfull %{githubname}-%{githubver}.%{githubsubver}
Expand Down Expand Up @@ -181,6 +181,9 @@ install -m 0644 %{_builddir}/%{githubfull}/examples/c/CMT_MBM/monitor_app.c %{bu
%doc %{_usrsrc}/%{githubfull}/LICENSE

%changelog
* Wed Jun 05 2024 Raghavan Kanagaraj <[email protected]> 6.0.0-1
- New release 6.0.0

* Wed Nov 1 2023 Raghavan Kanagaraj <[email protected]> 5.0.0-1
- New release 5.0.0

Expand Down

0 comments on commit cc0e6a6

Please sign in to comment.