We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47028eb commit c6eec8eCopy full SHA for c6eec8e
mlir/utils/performance/analysis/quickTuningGen.py
@@ -318,6 +318,8 @@ def find(self):
318
prob += pulp.lpSum([a[i][j] * x[j] for j in range(m)]) >= 1, f"Cover_problem_{i}"
319
320
prob.solve(pulp.PULP_CBC_CMD(msg=0))
321
+ if prob.status != pulp.LpStatusOptimal:
322
+ raise ValueError(f"No optimal solution found for data type {data_type}")
323
324
selected_configs = [perfconfigs[j] for j in range(m) if x[j].varValue == 1]
325
0 commit comments