本文整理汇总了Python中executor.Executor.get_run_dir方法的典型用法代码示例。如果您正苦于以下问题:Python Executor.get_run_dir方法的具体用法?Python Executor.get_run_dir怎么用?Python Executor.get_run_dir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类executor.Executor
的用法示例。
在下文中一共展示了Executor.get_run_dir方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _get_wload
# 需要导入模块: from executor import Executor [as 别名]
# 或者: from executor.Executor import get_run_dir [as 别名]
def _get_wload(cls, test_env):
cpus = range(test_env.platform['cpus_count'])
# We're pinning stuff in the first phase, so give it ample time to
# clean the pinned logic out of balance_interval
free_time_s = 1.1 * cls._get_max_lb_interval(test_env)
stagger_s = free_time_s / (10 * len(cpus))
params = {}
for cpu in cpus:
params["misfit_{}".format(cpu)] = (
Periodic(
duty_cycle_pct=100,
duration_s=cls.pin_delay_s,
delay_s=cls.idling_delay_s,
period_ms=16,
cpus=[cpu]
) + Periodic(
duty_cycle_pct=100,
# Introduce staggered task completions
duration_s=free_time_s + cpu * stagger_s,
period_ms=16,
cpus=cpus
)
).get()
wload = RTA(test_env.target, 'tmp',
calibration=test_env.calibration())
wload.conf(kind='profile', params=params,
run_dir=Executor.get_run_dir(test_env.target))
return {
'staggered' : {
'type' : 'rt-app',
'conf' : {
'class' : 'custom',
'json' : wload.json
}
}
}