File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -901,7 +901,7 @@ struct test {
901901 int n_prompt;
902902 int n_gen;
903903 std::string test_time;
904- std::vector<uint64_t > samples_e2e_ns; // e2e latency including prompt processing + token generation
904+ std::vector<uint64_t > samples_e2e_ns; // e2e latency, i.e. prompt processing + token generation
905905 std::vector<uint64_t > samples_prompt_ns; // prompt processing latency
906906 std::vector<uint64_t > samples_gen_ns; // token generation latency
907907
@@ -959,7 +959,7 @@ struct test {
959959 }
960960
961961 std::vector<double > get_e2e_ts () const {
962- // for only prompt processing, atleast 1 token is generated
962+ // for only prompt processing, at least 1 token is generated
963963 int n_tokens = n_gen==0 ? 1 : n_gen;
964964 return get_ts (samples_e2e_ns, n_tokens);
965965 }
You can’t perform that action at this time.
0 commit comments