Changed default parallel strategy to GRAPH_COLORING

This commit is contained in:
T.D. (Tongdong) Qiu
2020-07-06 11:16:46 +02:00
parent 4c037b0998
commit 5aa8dda487

View File

@@ -42,8 +42,8 @@
// Level Scheduling respects the depencies in the original matrix
// Graph Coloring is more aggresive and is likely to change the number of linearizations and linear iterations to converge, but can still be faster on GPU because it results in more parallelism
#define LEVEL_SCHEDULING 1
#define GRAPH_COLORING 0
#define LEVEL_SCHEDULING 0
#define GRAPH_COLORING 1
namespace bda
{