8000 Comparing v0.9.0-rc1...v0.9.0-rc2 · oneapi-src/unified-memory-framework · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull req 10000 uest by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: oneapi-src/unified-memory-framework
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.9.0-rc1
Choose a base ref
...
head repository: oneapi-src/unified-memory-framework
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.0-rc2
Choose a head ref
  • 17 commits
  • 20 files changed
  • 8 contributors

Commits on Jul 30, 2024

  1. Fix asan's user-poisoning flags bug

    It add utils_annotate_memory_defined() (which does unpoison on memory region)
    after all mmap().
    This should be unnecessary change but pairs of mmap/munmap do not reset
    asan's user-poisoning flags, leading to invalid error reports.
    This bug is describe here - 81619: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81619
    szadam authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    633da0d View commit details
    Browse the repository at this point in the history
  2. Fix warnings RC4005: 'UMF_VERSION' : redefinition

    Fix the warnings:
    
    umf\build\src\libumf.rc(12): warning RC4005: 'UMF_VERSION' : redefinition
    umf\build\src\proxy_lib\proxy_lib.rc(12): warning RC4005: 'UMF_VERSION' : redefinition
    
    Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
    ldorau authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    066c8c5 View commit details
    Browse the repository at this point in the history
  3. Add lock for updating file size in OS memory provider

    Add lock for updating file size in OS memory provider,
    because umfMemoryProviderAlloc() has to be MT-safe.
    
    Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
    ldorau authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    34ad4ab View commit details
    Browse the repository at this point in the history
  4. [CMake] Fix helpers module include

    8000
    use full path, to omit potential conflicts in names with other modules,
    e.g. in other projects, which can use the same module name.
    lukaszstolarczuk authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    cf6bb11 View commit details
    Browse the repository at this point in the history
  5. Disable memory poisoning in DisjointPool

    ASan throws an error whenever the memory poison is called for the memory allocated on GPU:
    "AddressSanitizer: CHECK failed: asan_mapping.h:359 "((AddrIsInMem(p))) != (0)" (0x0, 0x0)".
    
    This commit disables poisoning.
    PatKamin authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    9f4cd2a View commit details
    Browse the repository at this point in the history
  6. Fix disjoint pool memory poison macro

    The poison memory macro definition is always defined, so an #ifdef check
    is insufficient.
    kswiecicki authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    e537977 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4078730 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5f552d8 View commit details
    Browse the repository at this point in the history
  9. Remove WX MSVC compiler option

    kswiecicki authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    4e31669 View commit details
    Browse the repository at this point in the history
  10. Add option to disable hwloc

    igchor authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    f3a60a6 View commit details
    Browse the repository at this point in the history
  11. Add option to link with hwloc statically on linux

    Co-authored-by: Krzysztof Filipek <krzysztof.filipek@intel.com>
    2 people authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    daffca6 < 8000 /span> View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    eb821ba View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    682c034 View commit details
    Browse the repository at this point in the history
  14. Avoid using non-existing symbols in .map

    to fix:
    
    "ld.lld: error: version script assignment of 'UMF_1.0' to symbol
    'umfLevelZeroMemoryProviderOps' failed: symbol not defined"
    
    when using lld linker
    igchor authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    68e739d View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d3fad20 View commit details
    Browse the repository at this point in the history
  16. Fix: size_fd has to be read under a lock

    Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
    ldorau authored and bratpiorka committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    19a5bf5 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #652 from bratpiorka/rrudnick_0.9x_rc2

    commits for 0.9x rc2
    bratpiorka authored Jul 30, 2024
    Configuration menu
    Copy the full SHA
    4133278 View commit details
    Browse the repository at this point in the history
Loading
0