Trying to run benchmark.py script results "too many values to upack error" #1782
Unanswered
prasadwrites
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to run the benchmark.py script using as shown below :
mpirun -n 1 python3 benchmarks/python/benchmark.py -m starcoder_15.5b --mode plugin --batch_size "1;4;8;" --input_output_len "200;200"
This results in following error:
/python/gpt_benchmark.py", line 206, in get_config
for inlen, outlen in self.in_out_lens:
ValueError: too many values to unpack (expected 2)
Seems one should not unpack the values from self.in_out_lens to inlen and outlen as seen in the gpt_benchmark.py
Any one know how to fix that error ?
Beta Was this translation helpful? Give feedback.
All reactions