This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement storage tagging, the first half of the memory profiler
- Loading branch information
1 parent
48e9e2c
commit d37d7ba
Showing
46 changed files
with
1,066 additions
and
99 deletions.
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,84 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
# Find the nvml libraries | ||
# | ||
# The following variables are optionally searched for defaults | ||
# NVML_ROOT_DIR: Base directory where all NVML components are found | ||
# NVML_INCLUDE_DIR: Directory where NVML header is found | ||
# NVML_LIB_DIR: Directory where NVML library is found | ||
# | ||
# The following are set after configuration is done: | ||
# NVML_FOUND | ||
# NVML_INCLUDE_DIRS | ||
# NVML_LIBRARIES | ||
# | ||
# The path hints include CUDA_TOOLKIT_ROOT_DIR seeing as some folks | ||
# install NVML in the same location as the CUDA toolkit. | ||
# See https://github.com/caffe2/caffe2/issues/1601 | ||
|
||
if ($ENV{NVML_ROOT_DIR}) | ||
message(WARNING "NVML_ROOT_DIR is deprecated. Please set NVML_ROOT instead.") | ||
endif() | ||
|
||
find_path(NVML_INCLUDE_DIRS | ||
NAMES nvml.h | ||
HINTS | ||
${NVML_INCLUDE_DIR} | ||
${NVML_ROOT_DIR} | ||
${NVML_ROOT_DIR}/include | ||
${CUDA_TOOLKIT_ROOT_DIR}/include | ||
$ENV{NVML_DIR}/include | ||
) | ||
|
||
find_library(NVML_LIBRARIES | ||
NAMES nvidia-ml | ||
HINTS | ||
${NVML_LIB_DIR} | ||
${NVML_ROOT_DIR} | ||
${NVML_ROOT_DIR}/lib | ||
${NVML_ROOT_DIR}/lib/x86_64-linux-gnu | ||
${NVML_ROOT_DIR}/lib64 | ||
${CUDA_TOOLKIT_ROOT_DIR}/lib64/stubs | ||
$ENV{NVML_DIR}/lib | ||
) | ||
|
||
# if not found in any of the above paths, finally, check in the /usr/local/cuda for UNIX systems | ||
if (UNIX) | ||
set (search_paths "/usr/local/cuda") | ||
|
||
find_path(NVML_INCLUDE_DIRS | ||
NAMES nvml.h | ||
PATHS ${search_paths} | ||
PATH_SUFFIXES include | ||
) | ||
|
||
find_library(NVML_LIBRARIES | ||
NAMES nvidia-ml | ||
PATHS ${search_paths} | ||
PATH_SUFFIXES lib64/stubs | ||
) | ||
endif() | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(NVML DEFAULT_MSG NVML_INCLUDE_DIRS NVML_LIBRARIES) | ||
|
||
if(NVML_FOUND) | ||
message(STATUS "Found NVML (include: ${NVML_INCLUDE_DIRS}, library: ${NVML_LIBRARIES})") | ||
mark_as_advanced(NVML_ROOT_DIR NVML_INCLUDE_DIRS NVML_LIBRARIES) | ||
endif() | ||
|
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
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
Oops, something went wrong.