Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions .github/workflows/pr_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ jobs:
security-events: write
uses: ./.github/workflows/reusable_trivy.yml
Compatibility:
# TODO: bring back when new UMF version is ready
if: false
needs: [Build]
uses: ./.github/workflows/reusable_compatibility.yml
strategy:
Expand Down
12 changes: 6 additions & 6 deletions src/libumf.def
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ EXPORTS
DllMain
umfInit
umfTearDown
umfGetCurrentVersion
umfCloseIPCHandle
umfCUDAMemoryProviderOps
umfCUDAMemoryProviderParamsCreate
Expand All @@ -32,6 +31,7 @@ EXPORTS
umfFileMemoryProviderParamsSetProtection
umfFileMemoryProviderParamsSetVisibility
umfFree
umfGetCurrentVersion
umfGetIPCHandle
umfGetLastFailedMemoryProvider
umfJemallocPoolOps
Expand Down Expand Up @@ -86,13 +86,13 @@ EXPORTS
umfOsMemoryProviderOps
umfOsMemoryProviderParamsCreate
umfOsMemoryProviderParamsDestroy
umfOsMemoryProviderParamsSetProtection
umfOsMemoryProviderParamsSetVisibility
umfOsMemoryProviderParamsSetShmName
umfOsMemoryProviderParamsSetNumaList
umfOsMemoryProviderParamsSetNumaMode
umfOsMemoryProviderParamsSetPartSize
umfOsMemoryProviderParamsSetPartitions
umfOsMemoryProviderParamsSetPartSize
umfOsMemoryProviderParamsSetProtection
umfOsMemoryProviderParamsSetShmName
umfOsMemoryProviderParamsSetVisibility
umfPoolAlignedMalloc
umfPoolByPtr
umfPoolCalloc
Expand Down Expand Up @@ -134,8 +134,8 @@ EXPORTS
umfFixedMemoryProviderParamsCreate
umfFixedMemoryProviderParamsDestroy
umfFixedMemoryProviderParamsSetMemory
umfLevelZeroMemoryProviderParamsSetFreePolicy
umfLevelZeroMemoryProviderParamsSetDeviceOrdinal
umfLevelZeroMemoryProviderParamsSetFreePolicy
; Added in UMF_1.0
umfCtlExec
umfCtlGet
Expand Down
22 changes: 9 additions & 13 deletions src/libumf.map
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
# Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

UMF_0.10 {
UMF_1.0 {
global:
umfInit;
umfTearDown;
umfGetCurrentVersion;
umfCloseIPCHandle;
umfCUDAMemoryProviderOps;
umfCUDAMemoryProviderParamsCreate;
Expand All @@ -26,6 +25,7 @@ UMF_0.10 {
umfFileMemoryProviderParamsSetProtection;
umfFileMemoryProviderParamsSetVisibility;
umfFree;
umfGetCurrentVersion;
umfGetIPCHandle;
umfGetLastFailedMemoryProvider;
umfJemallocPoolOps;
Expand Down Expand Up @@ -82,8 +82,8 @@ UMF_0.10 {
umfOsMemoryProviderParamsDestroy;
umfOsMemoryProviderParamsSetNumaList;
umfOsMemoryProviderParamsSetNumaMode;
umfOsMemoryProviderParamsSetPartSize;
umfOsMemoryProviderParamsSetPartitions;
umfOsMemoryProviderParamsSetPartSize;
umfOsMemoryProviderParamsSetProtection;
umfOsMemoryProviderParamsSetShmName;
umfOsMemoryProviderParamsSetVisibility;
Expand All @@ -110,11 +110,7 @@ UMF_0.10 {
umfScalablePoolParamsDestroy;
umfScalablePoolParamsSetGranularity;
umfScalablePoolParamsSetKeepAllMemory;
local:
*;
};

UMF_0.11 {
# Added in UMF_0.11
umfCUDAMemoryProviderParamsSetAllocFlags;
umfDisjointPoolOps;
umfDisjointPoolParamsCreate;
Expand All @@ -132,16 +128,16 @@ UMF_0.11 {
umfFixedMemoryProviderParamsCreate;
umfFixedMemoryProviderParamsDestroy;
umfFixedMemoryProviderParamsSetMemory;
umfLevelZeroMemoryProviderParamsSetFreePolicy;
umfLevelZeroMemoryProviderParamsSetDeviceOrdinal;
} UMF_0.10;

UMF_1.0 {
umfLevelZeroMemoryProviderParamsSetFreePolicy;
# Added in UMF_1.0
umfCtlExec;
umfCtlGet;
umfCtlSet;
umfJemallocPoolParamsCreate;
umfJemallocPoolParamsDestroy;
umfJemallocPoolParamsSetNumArenas;
umfPoolGetName;
} UMF_0.11;
local:
*;
};
Loading