-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add NVTX ranges to categorize execution (#11945)
* Add NVTX ranges to optimizer step Signed-off-by: Jaemin Choi <[email protected]> * Use Tim's module Signed-off-by: Jaemin Choi <[email protected]> * Fix NVTX functions import Signed-off-by: Jaemin Choi <[email protected]> * Apply isort and black reformatting Signed-off-by: minitu <[email protected]> Signed-off-by: Jaemin Choi <[email protected]> * Apply isort and black reformatting Signed-off-by: minitu <[email protected]> Signed-off-by: Jaemin Choi <[email protected]> * Use NsysCallback and AppState Signed-off-by: Jaemin Choi <[email protected]> * Apply isort and black reformatting Signed-off-by: minitu <[email protected]> Signed-off-by: Jaemin Choi <[email protected]> * Add nvtx_label Signed-off-by: Jaemin Choi <[email protected]> * Add option to profile all ranks Signed-off-by: Jaemin Choi <[email protected]> * Update NVTX label for MCore optimizer Signed-off-by: Jaemin Choi <[email protected]> * Add NVTX range for data step Signed-off-by: Jaemin Choi <[email protected]> * Apply isort and black reformatting Signed-off-by: minitu <[email protected]> Signed-off-by: Jaemin Choi <[email protected]> * Remove NVTX range for gpt_data_step Signed-off-by: Jaemin Choi <[email protected]> * Cleanup Signed-off-by: Jaemin Choi <[email protected]> * Use stack to keep track of NVTX ranges Signed-off-by: Jaemin Choi <[email protected]> * Apply isort and black reformatting Signed-off-by: minitu <[email protected]> Signed-off-by: Jaemin Choi <[email protected]> * Apply isort and black reformatting Signed-off-by: minitu <[email protected]> Signed-off-by: Jaemin Choi <[email protected]> * Capitalize NVTX label Signed-off-by: Jaemin Choi <[email protected]> * Fix linting failure Signed-off-by: Jaemin Choi <[email protected]> --------- Signed-off-by: Jaemin Choi <[email protected]> Signed-off-by: minitu <[email protected]> Co-authored-by: Jaemin Choi <[email protected]> Co-authored-by: minitu <[email protected]>
- Loading branch information
1 parent
06684a6
commit a1a9745
Showing
4 changed files
with
82 additions
and
2 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,63 @@ | ||
# Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved. | ||
# | ||
# Licensed 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. | ||
|
||
import functools | ||
from typing import Optional | ||
|
||
import torch | ||
|
||
from nemo.utils.app_state import AppState | ||
|
||
# pylint: disable=C0116 | ||
|
||
|
||
@functools.lru_cache(maxsize=None) | ||
def _nvtx_enabled() -> bool: | ||
"""Check if NVTX range profiling is enabled""" | ||
return AppState()._nvtx_ranges | ||
|
||
|
||
# Messages associated with active NVTX ranges | ||
_nvtx_range_messages: list[str] = [] | ||
|
||
|
||
def nvtx_range_push(msg: str) -> None: | ||
# Return immediately if NVTX range profiling is not enabled | ||
if not _nvtx_enabled(): | ||
return | ||
|
||
# Push NVTX range to stack | ||
_nvtx_range_messages.append(msg) | ||
torch.cuda.nvtx.range_push(msg) | ||
|
||
|
||
def nvtx_range_pop(msg: Optional[str] = None) -> None: | ||
# Return immediately if NVTX range profiling is not enabled | ||
if not _nvtx_enabled(): | ||
return | ||
|
||
# Update list of NVTX range messages and check for consistency | ||
if not _nvtx_range_messages: | ||
raise RuntimeError("Attempted to pop NVTX range from empty stack") | ||
last_msg = _nvtx_range_messages.pop() | ||
if msg is not None and msg != last_msg: | ||
raise ValueError( | ||
f"Attempted to pop NVTX range from stack with msg={msg}, " f"but last range has msg={last_msg}" | ||
) | ||
|
||
# Pop NVTX range | ||
torch.cuda.nvtx.range_pop() | ||
|
||
|
||
# pylint: enable=C0116 |