Skip to content

Commit

Permalink
Fix number of GPU units in RunningFrameInfo. (#1017)
Browse files Browse the repository at this point in the history
  • Loading branch information
splhack committed Sep 12, 2021
1 parent 341a6d1 commit 42ffe1f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rqd/rqd/rqnetwork.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def __init__(self, rqCore, runFrame):
self.vsize = 0
self.maxVsize = 0

self.numGpus = 0
self.usedGpuMemory = 0
self.maxUsedGpuMemory = 0

Expand All @@ -90,7 +89,7 @@ def runningFrameInfo(self):
vsize=self.vsize,
attributes=self.runFrame.attributes,
llu_time=self.lluTime,
num_gpus=self.numGpus,
num_gpus=self.runFrame.num_gpus,
max_used_gpu_memory=self.maxUsedGpuMemory,
used_gpu_memory=self.usedGpuMemory
)
Expand Down

0 comments on commit 42ffe1f

Please sign in to comment.