Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gmmlib for openSUSE:Factory checked in at 2023-01-06 17:06:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gmmlib (Old) and /work/SRC/openSUSE:Factory/.gmmlib.new.1563 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gmmlib" Fri Jan 6 17:06:13 2023 rev:24 rq:1056368 version:22.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/gmmlib/gmmlib.changes 2023-01-01 09:38:56.382805147 +0100 +++ /work/SRC/openSUSE:Factory/.gmmlib.new.1563/gmmlib.changes 2023-01-06 17:06:55.892644971 +0100 @@ -1,0 +2,7 @@ +Fri Jan 6 08:41:41 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 22.3.3: + * Initialize Filedescriptor + * Disable MultiAdapter ULT testcases + +------------------------------------------------------------------- Old: ---- intel-gmmlib-22.3.2.tar.gz New: ---- intel-gmmlib-22.3.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gmmlib.spec ++++++ --- /var/tmp/diff_new_pack.ducjRi/_old 2023-01-06 17:06:56.364647621 +0100 +++ /var/tmp/diff_new_pack.ducjRi/_new 2023-01-06 17:06:56.368647644 +0100 @@ -1,7 +1,7 @@ # # spec file for package gmmlib # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %global somajor 12 %global libname libigdgmm%{somajor} Name: gmmlib -Version: 22.3.2 +Version: 22.3.3 Release: 0 Summary: Intel Graphics Memory Management Library Package License: MIT ++++++ intel-gmmlib-22.3.2.tar.gz -> intel-gmmlib-22.3.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gmmlib-intel-gmmlib-22.3.2/Source/GmmLib/ULT/GmmCommonULT.cpp new/gmmlib-intel-gmmlib-22.3.3/Source/GmmLib/ULT/GmmCommonULT.cpp --- old/gmmlib-intel-gmmlib-22.3.2/Source/GmmLib/ULT/GmmCommonULT.cpp 2022-12-07 16:53:01.000000000 +0100 +++ new/gmmlib-intel-gmmlib-22.3.3/Source/GmmLib/ULT/GmmCommonULT.cpp 2022-12-26 06:31:51.000000000 +0100 @@ -78,6 +78,8 @@ InArgs.Platform = GfxPlatform; #ifdef _WIN32 InArgs.stAdapterBDF = {0, 2, 0, 0}; +#else + InArgs.FileDescriptor = 512; // Initializing BDF to {0,2,0,0} which corresponds to decimal 512 for AdapterBDF.Data #endif hGmmLib = dlopen(GMM_UMD_DLL, RTLD_LAZY); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gmmlib-intel-gmmlib-22.3.2/Source/GmmLib/ULT/GmmMultiAdapterULT.cpp new/gmmlib-intel-gmmlib-22.3.3/Source/GmmLib/ULT/GmmMultiAdapterULT.cpp --- old/gmmlib-intel-gmmlib-22.3.2/Source/GmmLib/ULT/GmmMultiAdapterULT.cpp 2022-12-07 16:53:01.000000000 +0100 +++ new/gmmlib-intel-gmmlib-22.3.3/Source/GmmLib/ULT/GmmMultiAdapterULT.cpp 2022-12-26 06:31:51.000000000 +0100 @@ -262,7 +262,7 @@ // Load multiple Adapters in the same process with the Limit up to MAX_NUM_ADAPTERS // Increase MAX_NUM_ADAPTERS > 32 if needed -TEST_F(CTestMA, TestLoadMultipleAdapters) +TEST_F(CTestMA, DISABLED_TestLoadMultipleAdapters) { uint32_t AdapterCount = 0; uint32_t i = 0; @@ -305,7 +305,7 @@ } /// Load all adapters(MAX_NUM_ADAPTERS) multiple times up to MAX_COUNT_PER_ADAPTER in same process -TEST_F(CTestMA, TestLoadAdapterMultipleTimes) +TEST_F(CTestMA, DISABLED_TestLoadAdapterMultipleTimes) { uint32_t AdapterCount = 0, RefCount = 0; @@ -357,7 +357,7 @@ } /// Test Init-Destroy multiple times Upto MAX_COUNT_PER_ADAPTER before Unloading DLL, on Same Adapter upto MAX_NUM_ADAPTERS -TEST_F(CTestMA, TestInitDestroyMultipleTimesOnSameAdapter) +TEST_F(CTestMA, DISABLED_TestInitDestroyMultipleTimesOnSameAdapter) { uint32_t AdapterCount = 0, RefCount = 0; @@ -411,7 +411,7 @@ } /// Test Init-Destroy multiple times before Unloading DLL, on Multiple Adapters -TEST_F(CTestMA, TestInitDestroyMultipleTimesOnMultiAdapter) +TEST_F(CTestMA, DISABLED_TestInitDestroyMultipleTimesOnMultiAdapter) { uint32_t AdapterCount = 0, RefCount = 0; @@ -464,7 +464,7 @@ // Load Multiple Adapters upto MAX_NUM_ADAPTERS on multiple threads in same process at the same time // Here the number of client per adapter is 1 .i.e 0th count Index -TEST_F(CTestMA, TestMTLoadMultipleAdapters) +TEST_F(CTestMA, DISABLED_TestMTLoadMultipleAdapters) { uint32_t AdapterCount = 0; @@ -482,7 +482,7 @@ } // Load a Single Adapter multiple times upto MAX_COUNT_PER_ADAPTER on multiple threads in same process -TEST_F(CTestMA, TestMTLoadAdaptersMultipleTimes) +TEST_F(CTestMA, DISABLED_TestMTLoadAdaptersMultipleTimes) { uint32_t RefCount = 0; @@ -499,7 +499,7 @@ } // Load Multiple Adapters upto MAX_NUM_ADAPTERS, multiple times upto MAX_COUNT_PER_ADAPTER on multiple threads in same process -TEST_F(CTestMA, TestMTLoadMultipleAdaptersMultipleTimes) +TEST_F(CTestMA, DISABLED_TestMTLoadMultipleAdaptersMultipleTimes) { uint32_t i = 0, j = 0, k = 0; uint32_t AdapterCount = 0, RefCount = 0;