Skip to content

Merge v0.9.0 to main #726

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
633da0d
Fix asan's user-poisoning flags bug
szadam Jul 11, 2024
066c8c5
Fix warnings RC4005: 'UMF_VERSION' : redefinition
ldorau Jul 19, 2024
34ad4ab
Add lock for updating file size in OS memory provider
ldorau Jul 19, 2024
cf6bb11
[CMake] Fix helpers module include
lukaszstolarczuk Jul 22, 2024
9f4cd2a
Disable memory poisoning in DisjointPool
PatKamin Jul 24, 2024
e537977
Fix disjoint pool memory poison macro
kswiecicki Jul 25, 2024
4078730
Add default switch warning suppression
kswiecicki Jul 26, 2024
5f552d8
Remove werror compile option from UMF targets
kswiecicki Jul 26, 2024
4e31669
Remove WX MSVC compiler option
kswiecicki Jul 26, 2024
f3a60a6
Add option to disable hwloc
igchor Jul 26, 2024
daffca6
Add option to link with hwloc statically on linux
igchor Jul 26, 2024
eb821ba
Add more CI runs with UMF_LINK_HWLOC_STATICALLY=1
igchor Jul 26, 2024
682c034
Add option to change hwloc repo url and tag
igchor Jul 29, 2024
68e739d
Avoid using non-existing symbols in .map
igchor Jul 29, 2024
d3fad20
Allow completely disabling hwloc on windows
igchor Jul 29, 2024
19a5bf5
Fix: size_fd has to be read under a lock
ldorau Jul 29, 2024
4133278
Merge pull request #652 from bratpiorka/rrudnick_0.9x_rc2
bratpiorka Jul 30, 2024
330dd30
[CMake] Don't use CMAKE_SOURCE_DIR during install
ProGTX Jul 31, 2024
c1f2232
Merge pull request #657 from bratpiorka/rrudnick_0.9x_rc3
bratpiorka Aug 1, 2024
9cb5f9a
[CMake] Add missing UMF_ prefix in 'public' umf options
lukaszstolarczuk Aug 2, 2024
32fd315
Properly prefix test_common lib with 'umf_'
lukaszstolarczuk Aug 2, 2024
37732d3
Fix or add missing include guards
lukaszstolarczuk Aug 2, 2024
cc4b8a7
Merge pull request #659 from lukaszstolarczuk/merge-fixes-for-0.9.0-rc4
lukaszstolarczuk Aug 2, 2024
73c2230
Disable opencl, cuda and nvml when configuring hwloc
igchor Aug 2, 2024
a7dad77
add googletest to 3rd party programs
bratpiorka Aug 5, 2024
85e3bd7
Merge pull request #662 from lukaszstolarczuk/merge-fixes-for-0.9.0-rc4
lukaszstolarczuk Aug 5, 2024
82d7764
Use PROJECT_VERSION not CMAKE_PROJECT_VERSION
kbenzie Aug 15, 2024
363e6a4
Merge pull request #683 from igchor/fixes_for_0.9.0-rc5
igchor Aug 15, 2024
8f1dc0e
Disable pciaccess library in hwloc
PatKamin Aug 14, 2024
5ccf12b
Fix stype for ze_device_mem_alloc_desc_t in l0 provider
igchor Aug 15, 2024
59c4150
Merge pull request #688 from lukaszstolarczuk/fixes-for-rc4
igchor Aug 19, 2024
e93b99a
fix coverity issues in hwloc
bratpiorka Aug 21, 2024
3c340e6
Merge pull request #696 from bratpiorka/rrudnick_fixes-for-rc4
lukaszstolarczuk Aug 23, 2024
65e4659
use *_DLL_DIRS env
bratpiorka Aug 26, 2024
490ed4d
add custom hwloc lib name
bratpiorka Aug 26, 2024
99c9bfc
Merge pull request #699 from bratpiorka/rrudnick_new_fixes_for_rc4
lukaszstolarczuk Aug 26, 2024
e306403
Fix hwloc patch application on windows
npmiller Sep 6, 2024
57e8199
0.9.0 release
lukaszstolarczuk Sep 12, 2024
67c8d54
Merge branch 'v0.9.x' into 'main'
lukaszstolarczuk Sep 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
Thu Jul 18 2024 Łukasz Stolarczuk <[email protected]>
Thu Sep 12 2024 Łukasz Stolarczuk <[email protected]>

* Version 0.9.0-rc1
* Version 0.9.0

This is a pre-release version. When 0.9.0 will be ready (with no rc status),
it will aim to be the first complete release of the UMF project.
With this release we don't yet guarantee a fully stable API.
This release aims to be the first complete release of the UMF project.
We don't yet guarantee a fully stable API, though.

This release contains all the features listed in the version 0.1.0
plus, additionally:
- IPC API
- fixes in the building system
- proper versioning
- minor patches in the source code
- improved CI and docs

Thu Jul 04 2024 Łukasz Stolarczuk <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion scripts/docs_config/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Intel"

# The full version, including alpha/beta/rc tags
release = "0.9.0-rc1"
release = "0.9.0"


# -- General configuration ---------------------------------------------------
Expand Down
Loading