Skip to content

Commit

Permalink
Fix service init fiber->meta_fiber
Browse files Browse the repository at this point in the history
  • Loading branch information
eagarvey-amd committed Feb 14, 2025
1 parent 845c66b commit 6277c6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shortfin/python/shortfin_apps/sd/components/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def __init__(
self.fibers_per_worker = int(fibers_per_device / workers_per_device)

self.workers = []
self.fibers = []
self.idle_fibers = []
self.meta_fibers = []
self.idle_meta_fibers = []
# For each worker index we create one on each device, and add their fibers to the idle set.
# This roughly ensures that the first picked fibers are distributed across available devices.
for idx, device in enumerate(self.sysman.ls.devices):
Expand Down

0 comments on commit 6277c6d

Please sign in to comment.