From 790d0c81501c3fcc9e036ac4e73464e789e6b46a Mon Sep 17 00:00:00 2001 From: kuangjux <18630816527@163.com> Date: Thu, 30 May 2024 14:05:01 +0800 Subject: [PATCH] small fix. --- thriller-core/src/dataflow/block.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/thriller-core/src/dataflow/block.rs b/thriller-core/src/dataflow/block.rs index 45238ee..0913491 100644 --- a/thriller-core/src/dataflow/block.rs +++ b/thriller-core/src/dataflow/block.rs @@ -63,8 +63,6 @@ impl ThrillerBlock { // Iterate over the inputs and check if the access maps are the same. // If they are the same, then we can merge them into a unified access map. - // TODO: Implement this function. - self.merge_loops(); if self.loop_groups.len() == 1 { self.unified_access_map = Some(self.inputs[0].get_access().as_ref().unwrap().clone());