yipengLeo
Results
1
issues of
yipengLeo
I found the` _get_block_execution_time()` function in the `vidur/entities/execution_time.py` path computes 'add_time' only once. ``` def _get_block_execution_time(self) -> float: return ( self._get_attention_layer_execution_time() + self._get_mlp_layer_execution_time() + self._add_time ) ``` But in other...