summaryrefslogtreecommitdiff
path: root/src/util/resource_manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/resource_manager.cpp')
-rw-r--r--src/util/resource_manager.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/util/resource_manager.cpp b/src/util/resource_manager.cpp
index de9a32248..f0cc78789 100644
--- a/src/util/resource_manager.cpp
+++ b/src/util/resource_manager.cpp
@@ -164,7 +164,7 @@ ResourceManager::ResourceManager(StatisticsRegistry& stats,
d_infidWeights.fill(1);
d_resourceWeights.fill(1);
- for (const auto& opt : d_options[options::resourceWeightHolder])
+ for (const auto& opt : d_options.resman.resourceWeightHolder)
{
std::string name;
uint64_t weight;
@@ -189,9 +189,9 @@ uint64_t ResourceManager::getTimeUsage() const { return d_cumulativeTimeUsed; }
uint64_t ResourceManager::getResourceRemaining() const
{
- if (d_options[options::cumulativeResourceLimit] <= d_cumulativeResourceUsed)
+ if (d_options.resman.cumulativeResourceLimit <= d_cumulativeResourceUsed)
return 0;
- return d_options[options::cumulativeResourceLimit] - d_cumulativeResourceUsed;
+ return d_options.resman.cumulativeResourceLimit - d_cumulativeResourceUsed;
}
void ResourceManager::spendResource(uint64_t amount)
@@ -237,21 +237,21 @@ void ResourceManager::spendResource(theory::InferenceId iid)
void ResourceManager::beginCall()
{
- d_perCallTimer.set(d_options[options::perCallMillisecondLimit]);
+ d_perCallTimer.set(d_options.resman.perCallMillisecondLimit);
d_thisCallResourceUsed = 0;
- if (d_options[options::cumulativeResourceLimit] > 0)
+ if (d_options.resman.cumulativeResourceLimit > 0)
{
// Compute remaining cumulative resource budget
d_thisCallResourceBudget =
- d_options[options::cumulativeResourceLimit] - d_cumulativeResourceUsed;
+ d_options.resman.cumulativeResourceLimit - d_cumulativeResourceUsed;
}
- if (d_options[options::perCallResourceLimit] > 0)
+ if (d_options.resman.perCallResourceLimit > 0)
{
// Check if per-call resource budget is even smaller
- if (d_options[options::perCallResourceLimit] < d_thisCallResourceBudget)
+ if (d_options.resman.perCallResourceLimit < d_thisCallResourceBudget)
{
- d_thisCallResourceBudget = d_options[options::perCallResourceLimit];
+ d_thisCallResourceBudget = d_options.resman.perCallResourceLimit;
}
}
}
@@ -265,25 +265,25 @@ void ResourceManager::endCall()
bool ResourceManager::limitOn() const
{
- return (d_options[options::cumulativeResourceLimit] > 0)
- || (d_options[options::perCallMillisecondLimit] > 0)
- || (d_options[options::perCallResourceLimit] > 0);
+ return (d_options.resman.cumulativeResourceLimit > 0)
+ || (d_options.resman.perCallMillisecondLimit > 0)
+ || (d_options.resman.perCallResourceLimit > 0);
}
bool ResourceManager::outOfResources() const
{
- if (d_options[options::perCallResourceLimit] > 0)
+ if (d_options.resman.perCallResourceLimit > 0)
{
// Check if per-call resources are exhausted
- if (d_thisCallResourceUsed >= d_options[options::perCallResourceLimit])
+ if (d_thisCallResourceUsed >= d_options.resman.perCallResourceLimit)
{
return true;
}
}
- if (d_options[options::cumulativeResourceLimit] > 0)
+ if (d_options.resman.cumulativeResourceLimit > 0)
{
// Check if cumulative resources are exhausted
- if (d_cumulativeResourceUsed >= d_options[options::cumulativeResourceLimit])
+ if (d_cumulativeResourceUsed >= d_options.resman.cumulativeResourceLimit)
{
return true;
}
@@ -293,7 +293,7 @@ bool ResourceManager::outOfResources() const
bool ResourceManager::outOfTime() const
{
- if (d_options[options::perCallMillisecondLimit] == 0) return false;
+ if (d_options.resman.perCallMillisecondLimit == 0) return false;
return d_perCallTimer.expired();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback