Skip to content
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

Проверить скорость работы импортёров/экспортёров #539

Open
PavelBlend opened this issue Jul 25, 2022 · 0 comments
Labels
performance Повысить скорость работы инструментов refactor Не меняет функционал, но делает код лучше

Comments

@PavelBlend
Copy link
Owner

Проверить, нет ли слишком неоптимальных импортёров/экспортёров, которые слишком медленно работают. Скорость работы можно проверить с помощью модуля pprofile:

import pprofile
profiler = pprofile.Profile()
with profiler:
    # выполняемый код
    ...
profiler.print_stats()
profiler.dump_stats("D:\\profiler_stats.txt")
@PavelBlend PavelBlend added refactor Не меняет функционал, но делает код лучше performance Повысить скорость работы инструментов labels Jul 25, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
performance Повысить скорость работы инструментов refactor Не меняет функционал, но делает код лучше
Projects
None yet
Development

No branches or pull requests

1 participant