From a4c68051b09adb50de55916f75feafec71244da2 Mon Sep 17 00:00:00 2001 From: Guillaume-Helbecque <helbecque.guillaume@gmail.com> Date: Mon, 28 Apr 2025 14:33:33 +0200 Subject: [PATCH] update best known UBs for PFSP --- baselines/pfsp/lib/c_taillard.c | 8 ++++---- lib/pfsp/Taillard.chpl | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/baselines/pfsp/lib/c_taillard.c b/baselines/pfsp/lib/c_taillard.c index 3b27454..f6e4803 100644 --- a/baselines/pfsp/lib/c_taillard.c +++ b/baselines/pfsp/lib/c_taillard.c @@ -34,13 +34,13 @@ int optimal[] = 2297, 2099, 2326, 2223, 2291, 2226, 2273, 2200, 2237, 2178, // 20x20 2724, 2834, 2621, 2751, 2863, 2829, 2725, 2683, 2552, 2782, // 50x5 2991, 2867, 2839, 3063, 2976, 3006, 3093, 3037, 2897, 3065, // 50x10 - 3850, 3704, 3640, 3723, 3611, 3679, 3704, 3691, 3743, 3756, // 50x20 + 3846, 3699, 3640, 3719, 3610, 3679, 3704, 3691, 3741, 3755, // 50x20 5493, 5268, 5175, 5014, 5250, 5135, 5246, 5094, 5448, 5322, // 100x5 5770, 5349, 5676, 5781, 5467, 5303, 5595, 5617, 5871, 5845, // 100x10 - 6202, 6183, 6271, 6269, 6314, 6364, 6268, 6401, 6275, 6434, // 100x20 + 6173, 6183, 6252, 6254, 6285, 6331, 6223, 6372, 6247, 6404, // 100x20 10862, 10480, 10922, 10889, 10524, 10329, 10854, 10730, 10438, 10675, // 200x10 - 11195, 11203, 11281, 11275, 11259, 11176, 11360, 11334, 11192, 11284, // 200x20 - 26040, 26520, 26371, 26456, 26334, 26477, 26389, 26560, 26005, 26457}; // 500x20 + 11158, 11160, 11281, 11275, 11259, 11176, 11337, 11301, 11146, 11284, // 200x20 + 26040, 26500, 26371, 26456, 26334, 26469, 26389, 26560, 26005, 26457}; // 500x20 int taillard_get_nb_jobs(const int id) { diff --git a/lib/pfsp/Taillard.chpl b/lib/pfsp/Taillard.chpl index 92dafe5..b7618f9 100644 --- a/lib/pfsp/Taillard.chpl +++ b/lib/pfsp/Taillard.chpl @@ -58,13 +58,13 @@ module Taillard 2297, 2099, 2326, 2223, 2291, 2226, 2273, 2200, 2237, 2178, // 20x20 2724, 2834, 2621, 2751, 2863, 2829, 2725, 2683, 2552, 2782, // 50x5 2991, 2867, 2839, 3063, 2976, 3006, 3093, 3037, 2897, 3065, // 50x10 - 3850, 3704, 3640, 3723, 3611, 3679, 3704, 3691, 3743, 3756, // 50x20 + 3846, 3699, 3640, 3719, 3610, 3679, 3704, 3691, 3741, 3755, // 50x20 5493, 5268, 5175, 5014, 5250, 5135, 5246, 5094, 5448, 5322, // 100x5 5770, 5349, 5676, 5781, 5467, 5303, 5595, 5617, 5871, 5845, // 100x10 - 6202, 6183, 6271, 6269, 6314, 6364, 6268, 6401, 6275, 6434, // 100x20 + 6173, 6183, 6252, 6254, 6285, 6331, 6223, 6372, 6247, 6404, // 100x20 10862, 10480, 10922, 10889, 10524, 10329, 10854, 10730, 10438, 10675, // 200x10 - 11195, 11203, 11281, 11275, 11259, 11176, 11360, 11334, 11192, 11284, // 200x20 - 26040, 26520, 26371, 26456, 26334, 26477, 26389, 26560, 26005, 26457]; // 500x20 + 11158, 11160, 11281, 11275, 11259, 11176, 11337, 11301, 11146, 11284, // 200x20 + 26040, 26500, 26371, 26456, 26334, 26469, 26389, 26560, 26005, 26457]; // 500x20 return optimal[id]; } -- GitLab