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

PR: Resource allocation plots in util.py #3382

Merged
merged 9 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,6 @@ qiita_pet/*.conf

# jupyter notebooks input data
notebooks/*/*.tsv.gz

# jupyter notebooks input data
notebooks/resource-allocation/data
Binary file added qiita_db/test/test_data/jobs_2024-02-21.tsv.gz
Binary file not shown.
62 changes: 62 additions & 0 deletions qiita_db/test/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
from qiita_core.util import qiita_test_checker
import qiita_db as qdb

from matplotlib.figure import Figure
from matplotlib.axes import Axes
import matplotlib.pyplot as plt


@qiita_test_checker()
class DBUtilTestsBase(TestCase):
Expand Down Expand Up @@ -1303,6 +1307,64 @@ def test_quick_mounts_purge(self):
qdb.util.quick_mounts_purge()


class ResourceAllocationPlotTests(TestCase):
def setUp(self):

self.PATH_TO_DATA = ('./qiita_db/test/test_data/'
'jobs_2024-02-21.tsv.gz')
self.CNAME = "Validate"
self.SNAME = "Diversity types - alpha_vector"
self.col_name = 'samples * columns'
self.df = pd.read_csv(self.PATH_TO_DATA, sep='\t',
dtype={'extra_info': str})

def test_plot_return(self):
# check the plot returns correct objects
fig1, axs1 = qdb.util.resource_allocation_plot(
self.PATH_TO_DATA, self.CNAME, self.SNAME, self.col_name)
self.assertIsInstance(
fig1, Figure,
"Returned object fig1 is not a Matplotlib Figure")
for ax in axs1:
self.assertIsInstance(
ax, Axes,
"Returned object axs1 is not a single Matplotlib Axes object")

def test_minimize_const(self):
self.df = self.df[
(self.df.cName == self.CNAME) & (self.df.sName == self.SNAME)]
self.df.dropna(subset=['samples', 'columns'], inplace=True)
self.df[self.col_name] = self.df.samples * self.df['columns']
fig, axs = plt.subplots(ncols=2, figsize=(10, 4), sharey=False)

bm, options = qdb.util._resource_allocation_plot_helper(
self.df, axs[0], self.CNAME, self.SNAME, 'MaxRSSRaw',
qdb.util.MODELS_MEM, self.col_name)
# check that the algorithm chooses correct model for MaxRSSRaw and
# has 0 failures
k, a, b = options.x
failures_df = qdb.util._resource_allocation_failures(
self.df, k, a, b, bm, self.col_name, 'MaxRSSRaw')
failures = failures_df.shape[0]
self.assertEqual(bm, qdb.util.mem_model4, msg="""Best memory model
doesn't match""")
self.assertEqual(failures, 0, "Number of failures must be 0")

# check that the algorithm chooses correct model for ElapsedRaw and
# has 1 failure
bm, options = qdb.util._resource_allocation_plot_helper(
self.df, axs[1], self.CNAME, self.SNAME, 'ElapsedRaw',
qdb.util.MODELS_TIME, self.col_name)
k, a, b = options.x
failures_df = qdb.util._resource_allocation_failures(
self.df, k, a, b, bm, self.col_name, 'ElapsedRaw')
failures = failures_df.shape[0]

self.assertEqual(bm, qdb.util.time_model1, msg="""Best time model
doesn't match""")
self.assertEqual(failures, 1, "Number of failures must be 1")


STUDY_INFO = {
'study_id': 1,
'owner': 'Dude',
Expand Down
Loading
Loading