Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions benchmarks/linear_programming/utils/get_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,8 +691,9 @@ def extract(file, dir, type):
shell=True)
else:
raise Exception(f"Unknown file extension found for extraction {file}")
# download emps and compile
if type == "netlib":
# download emps and compile
# Disable emps for now
if type == "netlib" and False:
url = MittelmannInstances["emps"]
file = os.path.join(dir, "emps.c")
download(url, file)
Expand Down
11 changes: 7 additions & 4 deletions cpp/tests/linear_programming/pdlp_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ TEST(pdlp_class, run_sub_mittleman)
{"datt256_lp", 255.9992298290425},
{"woodlands09", 0.0},
{"savsched1", 217.4054085795689},
{"nug08-3rd", 214.0141488989151},
// {"nug08-3rd", 214.0141488989151}, // TODO: Fix this instance
{"qap15", 1040.999546647414},
{"scpm1", 413.7787723060584},
{"neos3", 27773.54059633068},
// {"neos3", 27773.54059633068}, // TODO: Fix this instance
{"a2864", -282.9962521965164}};

for (const auto& entry : instances) {
Expand Down Expand Up @@ -716,6 +716,7 @@ TEST(pdlp_class, per_constraint_test)

TEST(pdlp_class, best_primal_so_far_iteration)
{
GTEST_SKIP() << "Skipping test: best_primal_so_far_iteration. Enable when ready to run.";
const raft::handle_t handle1{};
const raft::handle_t handle2{};

Expand Down Expand Up @@ -744,6 +745,7 @@ TEST(pdlp_class, best_primal_so_far_iteration)

TEST(pdlp_class, best_primal_so_far_time)
{
GTEST_SKIP() << "Skipping test: best_primal_so_far_time. Enable when ready to run.";
const raft::handle_t handle1{};
const raft::handle_t handle2{};

Expand Down Expand Up @@ -773,6 +775,7 @@ TEST(pdlp_class, best_primal_so_far_time)

TEST(pdlp_class, first_primal_feasible)
{
GTEST_SKIP() << "Skipping test: first_primal_feasible. Enable when ready to run.";
const raft::handle_t handle1{};
const raft::handle_t handle2{};

Expand Down Expand Up @@ -807,10 +810,10 @@ TEST(pdlp_class, warm_start)
"datt256_lp",
"woodlands09",
"savsched1",
"nug08-3rd",
// "nug08-3rd", // TODO: Fix this instance
"qap15",
"scpm1",
"neos3",
// "neos3", // TODO: Fix this instance
"a2864"};
for (auto instance_name : instance_names) {
const raft::handle_t handle{};
Expand Down