@@ -795,61 +795,6 @@ class InjectRealization : public IRMutator2 {
795
795
found_compute_level (false ), target(t), env(env) {}
796
796
797
797
private:
798
- // Determine if 'loop_name' is the right level to inject produce/realize node
799
- // of 'func'. If 'loop_name' is a fused group, we should inject it at the
800
- // fused parent loop of the group.
801
- bool is_the_right_level (const string &loop_name) {
802
- if (loop_name == LoopLevel::root ().lock ().to_string ()) {
803
- return true ;
804
- }
805
-
806
- vector<string> v = split_string (loop_name, " ." );
807
- internal_assert (v.size () > 2 );
808
- const string &func_name = v[0 ];
809
- const string &var = v[v.size ()-1 ];
810
-
811
- int stage = -1 ;
812
- for (size_t i = 1 ; i < v.size () - 1 ; ++i) {
813
- if (v[i].substr (0 , 1 ) == " s" ) {
814
- string str = v[i].substr (1 , v[i].size () - 1 );
815
- bool has_only_digits = (str.find_first_not_of ( " 0123456789" ) == string::npos);
816
- if (has_only_digits) {
817
- stage = atoi (str.c_str ());
818
- }
819
- }
820
- }
821
- internal_assert (stage >= 0 );
822
-
823
- const auto &it = env.find (func_name);
824
- internal_assert (it != env.end ());
825
- const Function &f = it->second ;
826
- internal_assert (stage <= (int )f.updates ().size ());
827
-
828
- if (f.has_extern_definition ()) {
829
- return true ;
830
- }
831
-
832
- const Definition &def = (stage == 0 ) ? f.definition () : f.update (stage - 1 );
833
- const LoopLevel &fuse_level = def.schedule ().fuse_level ().level ;
834
- if (fuse_level.is_inlined () || fuse_level.is_root ()) {
835
- // It isn't fused to anyone
836
- return true ;
837
- } else {
838
- // Need to find out if it is fused at 'var'
839
- const vector<Dim> &dims = def.schedule ().dims ();
840
- const auto &it1 = std::find_if (dims.begin (), dims.end (),
841
- [&fuse_level](const Dim &d) { return var_name_match (d.var , fuse_level.var ().name ()); });
842
- internal_assert (it1 != dims.end ());
843
-
844
- const auto &it2 = std::find_if (dims.begin (), dims.end (),
845
- [&var](const Dim &d) { return var_name_match (d.var , var); });
846
- internal_assert (it2 != dims.end ());
847
-
848
- return it2 < it1;
849
- }
850
- return false ;
851
- }
852
-
853
798
Stmt build_pipeline (Stmt consumer) {
854
799
pair<Stmt, Stmt> realization = build_production (env, func, target);
855
800
@@ -951,7 +896,7 @@ class InjectRealization : public IRMutator2 {
951
896
952
897
body = mutate (body);
953
898
954
- if (compute_level.match (for_loop->name ) && is_the_right_level (for_loop-> name ) ) {
899
+ if (compute_level.match (for_loop->name )) {
955
900
debug (3 ) << " Found compute level\n " ;
956
901
if (!function_is_already_realized_in_stmt (func, body) &&
957
902
(function_is_used_in_stmt (func, body) || is_output)) {
@@ -960,7 +905,7 @@ class InjectRealization : public IRMutator2 {
960
905
found_compute_level = true ;
961
906
}
962
907
963
- if (store_level.match (for_loop->name ) && is_the_right_level (for_loop-> name ) ) {
908
+ if (store_level.match (for_loop->name )) {
964
909
debug (3 ) << " Found store level\n " ;
965
910
internal_assert (found_compute_level)
966
911
<< " The compute loop level was not found within the store loop level!\n " ;
0 commit comments