Commit a0d43ec8 authored by 周成波's avatar 周成波

因3090显存不够,暂时改成串行画图

parent 264e54cf
...@@ -544,7 +544,9 @@ const onDraw = async () => { ...@@ -544,7 +544,9 @@ const onDraw = async () => {
}; };
if (is_all_ok) { if (is_all_ok) {
for (const item of form.adapt_result_json) { for (const item of form.adapt_result_json) {
onDrawOne(item); // onDrawOne(item);
// 因3090显存不够,暂时改成串行画图
await onDrawOne(item);
} }
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment