You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It uses the same settings as the configs/RMaxTS.py file, but I changed to data_path to point to a jsonl file with a single simple theorem. When I run python -m prover.launch --config=configs/RMaxTSbin.py --log_dir=logs/RMaxTSbin_results it results in the following error:
ValueError: The model's max seq len (4096) is larger than the maximum number of tokens that can be stored in KV cache (2112). Try increasing `gpu_memory_utilization` or decreasing `max_model_len` when initializing the engine.
INFO 08-27 11:09:45 model_runner.py:976] Capturing the model for CUDA graphs. This may lead to unexpected consequences if the model is not static. To run the model in eager mode, set 'enforce_eager=True' or use '--enforce-eager' in the CLI.
INFO 08-27 11:09:45 model_runner.py:980] CUDA graphs can take additional 1~3 GiB memory per GPU. If you are running out of memory, consider decreasing `gpu_memory_utilization` or enforcing eager mode. You can also reduce the `max_num_seqs` as needed to decrease memory usage.
INFO 08-27 11:09:47 model_runner.py:1057] Graph capturing finished in 2 secs.
All 2 LLMProcesses stopped
{"name": "binaryAdditionLength", "split": "valid", "informal_prefix": "/-- Let `binaryAddition` be a function that takes two lists of booleans and returns a list of booleans representing their sum in binary. Prove that the length of the output is always positive (greater than zero). -/\n", "formal_statement": "theorem binaryAdditionLength (s t : List Bool) :\n (binaryAddition s t).length > 0 := by\n", "goal": "s t : List Bool\n⊢ (binaryAddition s t).length > 0", "header": "import Mathlib\n\nopen List\n\ndef binaryAddition (s t : List Bool) : List Bool :=\n let rec loop : Nat → List Bool → List Bool\n | i, acc =>\n if i ≥ 10 then\n acc.reverse\n else\n match s.get? i, t.get? i with\n | some c, some d =>\n let sum := (if c then 1 else 0) + (if d then 1 else 0) + (if acc.head? = some true then 1 else 0)\n loop (i+1) ((sum % 2 = 1) :: acc)\n | _, _ => acc.reverse\n termination_by i _ => 10 - i\n loop 0 []\n\n"}
The text was updated successfully, but these errors were encountered:
sethahrenbach
changed the title
configs/newfile does not alter settings, results in vLLM error
configs/newfile results in vLLM error
Aug 27, 2024
I made a new configs/ file
It uses the same settings as the
configs/RMaxTS.py
file, but I changed todata_path
to point to a jsonl file with a single simple theorem. When I runpython -m prover.launch --config=configs/RMaxTSbin.py --log_dir=logs/RMaxTSbin_results
it results in the following error:which I believe is related to vllm-project/vllm#2418
My new config file is:
The text was updated successfully, but these errors were encountered: