Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
s5u13b committed Feb 7, 2025
1 parent 3f863b2 commit a172468
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions llumnix/server_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self):
self.manager_generate_timestamp = -1.0
self.llumlet_generate_timestamp = -1.0
self.engine_add_request_timestamp = -1.0
self.engine_process_model_outputs_timestamp_begin = -1.0
self.engine_process_model_outputs_timestamp_begin = -1.0
self.engine_process_model_outputs_timestamp_end = -1.0
self.engine_step_timestamp_begin = -1.0
self.engine_step_timestamp_end = -1.0
Expand All @@ -32,10 +32,10 @@ def __init__(self):
self.queue_server_receive_timestamp = -1.0
self.api_server_background_process_get_queue_timestamp = -1.0
self.api_server_generate_benchmark_timestamp_end = -1.0
@property
def process_model_outputs_latency(self):
return (self.engine_process_model_outputs_timestamp_end - self.engine_process_model_outputs_timestamp_begin)*1000

@property
def process_model_outputs_latency(self):
return (self.engine_process_model_outputs_timestamp_end - self.engine_process_model_outputs_timestamp_begin)*1000

@property
def step_latency_engine(self):
Expand Down

0 comments on commit a172468

Please sign in to comment.