Skip to content

Add run time and memory usage #5

Description

@spatts14

For each analysis module, add to get estimated run time and use of memory

Want to include info on how this might scale depending on the amount of data inputted

Maybe use crude approach?

import time

# Get the time at the start of the run
start_time = time.time()

# Analysis code to run

# Get the time at the end of the run
end_time = time.time()

# Calculate the total time of the run
total_time = end_time - start_time
print(total_time)

Metadata

Metadata

Assignees

No one assigned

    Labels

    featureAdding a new functionality, small or large

    Type

    Fields

    No fields configured for Task.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions