Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Code Computer Vision
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PolySTAR
RoboMaster
Computer Vision
Code Computer Vision
Commits
9024e4e9
Commit
9024e4e9
authored
4 years ago
by
Mathieu Beligon
Browse files
Options
Downloads
Patches
Plain Diff
[utils] (timeit)
parent
a5bca86e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/polystar/utils/time.py
+13
-0
13 additions, 0 deletions
src/polystar/utils/time.py
with
13 additions
and
0 deletions
src/polystar/utils/time.py
+
13
−
0
View file @
9024e4e9
from
datetime
import
datetime
from
functools
import
wraps
from
typing
import
Callable
def
create_time_id
()
->
str
:
return
datetime
.
now
().
strftime
(
"
%Y%m%d_%H%M%S
"
)
def
time_it
(
f
:
Callable
):
@wraps
(
f
)
def
_f
(
*
args
,
**
kwargs
):
t
=
datetime
.
now
()
rv
=
f
(
*
args
,
**
kwargs
)
print
(
f
"
{
f
.
__name__
}
took
{
datetime
.
now
()
-
t
}
"
)
return
rv
return
_f
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment