@@ -20,7 +20,6 @@ using namespace it_lab_ai;
2020TEST (bfs, check_struct_graph) {
2121 RuntimeOptions options;
2222 options.backend = Backend::kNaive ;
23- options.parallel = false ;
2423 options.threads = 4 ;
2524
2625 Graph graph;
@@ -96,7 +95,6 @@ TEST(bfs, check_struct_graph) {
9695TEST (bfs, check_struct_graph_not_used_yolo) {
9796 RuntimeOptions options;
9897 options.backend = Backend::kNaive ;
99- options.parallel = false ;
10098 options.threads = 4 ;
10199
102100 Graph graph;
@@ -150,7 +148,6 @@ TEST(bfs, check_struct_graph_not_used_yolo) {
150148TEST (bfs, check_struct_graph_resnet1) {
151149 RuntimeOptions options;
152150 options.backend = Backend::kNaive ;
153- options.parallel = false ;
154151 options.threads = 4 ;
155152
156153 Graph graph;
@@ -196,7 +193,6 @@ TEST(bfs, check_struct_graph_resnet1) {
196193TEST (bfs, check_struct_graph_resnet2) {
197194 RuntimeOptions options;
198195 options.backend = Backend::kNaive ;
199- options.parallel = false ;
200196 options.threads = 4 ;
201197
202198 Graph graph;
@@ -240,7 +236,6 @@ TEST(bfs, check_struct_graph_resnet2) {
240236TEST (bfs, check_struct_graph_google1) {
241237 RuntimeOptions options;
242238 options.backend = Backend::kNaive ;
243- options.parallel = false ;
244239 options.threads = 4 ;
245240
246241 Graph graph;
@@ -286,7 +281,6 @@ TEST(bfs, check_struct_graph_google1) {
286281TEST (bfs, check_result_vec) {
287282 RuntimeOptions options;
288283 options.backend = Backend::kNaive ;
289- options.parallel = false ;
290284 options.threads = 4 ;
291285
292286 Graph graph;
@@ -364,7 +358,6 @@ TEST(bfs, check_result_vec) {
364358TEST (bfs, check_end_to_end) {
365359 RuntimeOptions options;
366360 options.backend = Backend::kNaive ;
367- options.parallel = false ;
368361 options.threads = 4 ;
369362
370363 Graph graph;
@@ -410,7 +403,6 @@ TEST(bfs, check_end_to_end) {
410403TEST (bfs, check_struct_layer) {
411404 RuntimeOptions options;
412405 options.backend = Backend::kNaive ;
413- options.parallel = false ;
414406 options.threads = 4 ;
415407
416408 Graph graph;
@@ -443,7 +435,6 @@ TEST(bfs, check_struct_layer) {
443435TEST (bfs, check_struct_layer_added) {
444436 RuntimeOptions options;
445437 options.backend = Backend::kNaive ;
446- options.parallel = false ;
447438 options.threads = 4 ;
448439
449440 Graph graph;
@@ -479,7 +470,6 @@ TEST(bfs, check_struct_layer_added) {
479470FLAKY_TEST (bfs, check_struct_graph_split) {
480471 RuntimeOptions options;
481472 options.backend = Backend::kNaive ;
482- options.parallel = false ;
483473 options.threads = 4 ;
484474
485475 std::vector<std::vector<std::pair<int , int >>> split = {
0 commit comments