You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## only when --assert_all_regions_parallellizable is used do we care about all regions being parallelizable
75
67
if [ "$pash_all_region_parallelizable"-ne 0 ] && [ "$pash_assert_all_regions_parallelizable_flag"-eq 1 ];then
76
68
pash_redir_output echo"$$: ERROR: (2) Compiler failed with error code because some regions were not parallelizable: $pash_all_region_parallelizable while assert_all_regions_parallelizable_flag was enabled! Exiting PaSh..."
77
-
inform_daemon_exit
78
69
exit 1
79
70
fi
80
71
81
72
if [ "$pash_runtime_return_code"-ne 0 ] && [ "$pash_assert_all_regions_parallelizable_flag"-eq 1 ];then
82
73
pash_redir_output echo"$$: ERROR: (2) Compiler failed with error code: $pash_runtime_return_code while assert_all_regions_parallelizable_flag was enabled! Exiting PaSh..."
83
-
inform_daemon_exit
84
74
exit 1
85
75
fi
86
76
87
-
## for pash_assert_compiler_success_flag, exit when return code is not 0 (general exception caught) and when all regions are parallelizable
77
+
## for pash_assert_compiler_success_flag, exit when return code is 0 (general exception caught) and not when all regions are parallelizable
0 commit comments