-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
quick partial fix for not supported symbols
- Loading branch information
1 parent
9fc6aa3
commit 81836d5
Showing
4 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* | ||
* Copyright (C) 2023-2024 Intel Corporation | ||
* | ||
* Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT. | ||
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
* | ||
*/ | ||
|
||
#include <umf.h> | ||
#include <umf/memspace.h> | ||
|
||
#if UMF_NO_HWLOC | ||
|
||
umf_result_t umfMemspaceCreateFromNumaArray(unsigned *nodeIds, size_t numIds, | ||
umf_memspace_handle_t *hMemspace) { | ||
(void)nodeIds; | ||
(void)numIds; | ||
(void)hMemspace; | ||
|
||
return UMF_RESULT_ERROR_NOT_SUPPORTED; | ||
} | ||
|
||
#endif |