-
Notifications
You must be signed in to change notification settings - Fork 313
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
Выполнить профилирование памяти в скриптах. #1863
base: master
Are you sure you want to change the base?
Выполнить профилирование памяти в скриптах. #1863
Conversation
Проанализировать результат и определить программы с наиболее эффективным использованием памяти.
from collections import OrderedDict | ||
|
||
|
||
def decor(func): # что-то мне тут не нравится |
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.
что-то мне тут не нравится - что?....
def wrapper(*args, **kwargs): | ||
memory_start = memory_profiler.memory_usage() # начало замера памяти | ||
time_start = default_timer() # начало замера времени | ||
func(*args, **kwargs) # начало замера функции (к которым декоратор стоит) |
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.
начало замера функции (к которым декоратор стоит)
декоратор к функциям не стоит, а применяется
|
||
@decor | ||
def revers_2(): # изменённый вариант | ||
new_list = [i for i in str(enter_number_1)] # сипользование LC вместо цикла (ибо быстрее) |
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.
у нас цель - память. при чем здесь скорость?....
def revers_2(): # изменённый вариант | ||
new_list = [i for i in str(enter_number_1)] # сипользование LC вместо цикла (ибо быстрее) | ||
new_list = reversed(new_list) # размер 448 байт | ||
# new_list = array(new_list) # для уменьшения размера списка - тогда порядка 112 байт, |
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.
LC никак не влияет на память, т.к. массив так и так создается
но, если во втором варианте выводить (print(*new_list) или производить иные действия | ||
(например [i for i in new_list] или цикл) с new_list, | ||
то размер составит 48 байт. | ||
закоментированные строки кода не убирал, чтобы посмотреть/запустить с другими параметрами можно было""" |
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.
Алексей, у нас цель -память. при чем здесь timeit?
преподаватель в ступоре..
|
||
@decor # изменённая версия (создание списка) | ||
def append_list_1(lst_1, x): # Выполнение заняло памяти: 0.63671875 MiB, И времени: 0.10525219999544788 | ||
lst_1 = lst_1 + ([i for i in range(x)]) # использование генератора помогает ускорить создание массива |
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.
использование генератора помогает ускорить создание массива
аналогичный вопрос
Проанализировать результат и определить программы с
наиболее эффективным использованием памяти.