-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
【Hackathon 7th No.21】为 Paddle 新增 reset_max_memory_reserved/reset_max_memory_allocated API -part #70032
Merged
Merged
【Hackathon 7th No.21】为 Paddle 新增 reset_max_memory_reserved/reset_max_memory_allocated API -part #70032
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e2299f9
added reset peak value initialization
Qin-sx dc30348
added comments
Qin-sx d081dde
added cpp tests
Qin-sx 35a12c8
added python tests
Qin-sx cb5036c
added a python test for reset_max_memory_allocated
Qin-sx 5d28856
formatted by pre-commit
Qin-sx f6b3d84
formatted by pre-commit (clang-format)
Qin-sx b6ea9be
added reset max memory reserved function
Qin-sx caad368
deleted memory stats and reset peak memory stats
Qin-sx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,89 @@ | ||
# Copyright (c) 2024 PaddlePaddle Authors. 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 unittest | ||
|
||
import paddle | ||
from paddle.base import core | ||
from paddle.device.cuda import ( | ||
device_count, | ||
max_memory_allocated, | ||
memory_allocated, | ||
reset_max_memory_allocated, | ||
) | ||
|
||
|
||
class TestResetMaxMemoryAllocated(unittest.TestCase): | ||
def func_test_reset_max_memory_allocated(self, device=None): | ||
if core.is_compiled_with_cuda(): | ||
alloc_time = 100 | ||
max_alloc_size = 10000 | ||
for i in range(alloc_time): | ||
# first alloc | ||
shape = paddle.randint( | ||
low=max_alloc_size, high=max_alloc_size * 2 | ||
) | ||
tensor = paddle.zeros(shape) | ||
peak_memory_allocated_size_first = max_memory_allocated(device) | ||
|
||
del shape | ||
del tensor | ||
|
||
# second alloc | ||
shape = paddle.randint(low=0, high=max_alloc_size) | ||
tensor = paddle.zeros(shape) | ||
|
||
# reset peak memory stats | ||
reset_max_memory_allocated(device) | ||
|
||
peak_memory_allocated_size_second = max_memory_allocated(device) | ||
self.assertEqual( | ||
peak_memory_allocated_size_second, memory_allocated(device) | ||
) | ||
self.assertLess( | ||
peak_memory_allocated_size_second, | ||
peak_memory_allocated_size_first, | ||
) | ||
|
||
del shape | ||
del tensor | ||
|
||
def test_reset_max_memory_allocated_for_all_places(self): | ||
if core.is_compiled_with_cuda(): | ||
gpu_num = device_count() | ||
for i in range(gpu_num): | ||
paddle.device.set_device("gpu:" + str(i)) | ||
self.func_test_reset_max_memory_allocated(core.CUDAPlace(i)) | ||
self.func_test_reset_max_memory_allocated(i) | ||
self.func_test_reset_max_memory_allocated("gpu:" + str(i)) | ||
|
||
def test_reset_max_memory_allocated_exception(self): | ||
if core.is_compiled_with_cuda(): | ||
wrong_device = [ | ||
core.CPUPlace(), | ||
device_count() + 1, | ||
-2, | ||
0.5, | ||
"gpu1", | ||
] | ||
for device in wrong_device: | ||
with self.assertRaises(BaseException): # noqa: B017 | ||
reset_max_memory_allocated(device) | ||
else: | ||
with self.assertRaises(ValueError): | ||
reset_max_memory_allocated() | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
在这个测试中,这一步如果reset不成功,是不是后面的检查也是会通过的?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
如果reset不成功,下一行(107行)的检查应该无法通过。
如果将
reset_peak_value_func_
函数注释,测试将无法通过。下面为部分运行结果。