321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
|
if r.sw.cost and r.sw.cost.cycles then
table.insert(props, {title = "Compute Usage", desc=lib.math.siUI('cycles',r.sw.cost.cycles,true), affinity='info'})
end
if r.powerCost then
table.insert(props, {title = "Power Draw", desc=lib.math.siUI('W', r.powerCost), affinity='info'})
end
if r.speed then
table.insert(props, {title = "Minimum Runtime", desc=lib.math.timespec(r.speed), affinity='info'})
end
table.insert(tbl, {
color = color, fg = fg;
label = r.sw.label or r.sw.name;
id = string.format('suit_pgm_%s_', id);
desc = starlit.ui.tooltip {
title = r.sw.name;
|
|
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
|
if r.sw.cost and r.sw.cost.cycles then
table.insert(props, {title = "Compute Usage", desc=lib.math.siUI('cycles',r.sw.cost.cycles,true), affinity='info'})
end
if r.powerCost then
table.insert(props, {title = "Power Draw", desc=lib.math.siUI('W', r.powerCost), affinity='info'})
end
if r.speed then
table.insert(props, {title = "Base Runtime", desc=lib.math.timespec(r.speed), affinity='info'})
end
table.insert(tbl, {
color = color, fg = fg;
label = r.sw.label or r.sw.name;
id = string.format('suit_pgm_%s_', id);
desc = starlit.ui.tooltip {
title = r.sw.name;
|