diff --git a/plugin/src/regent/flow.t b/plugin/src/regent/flow.t index 3a3f381..ce5b571 100644 --- a/plugin/src/regent/flow.t +++ b/plugin/src/regent/flow.t @@ -32,7 +32,7 @@ -- Dataflow IR local ast = require("regent/ast") -local data = require("regent/data") +local data = require("common/data") local flow = ast.make_factory("flow") diff --git a/plugin/src/regent/flow_from_ast.t b/plugin/src/regent/flow_from_ast.t index 2154fab..da51af9 100644 --- a/plugin/src/regent/flow_from_ast.t +++ b/plugin/src/regent/flow_from_ast.t @@ -32,7 +32,7 @@ -- Conversion from AST to Dataflow IR local ast = require("regent/ast") -local data = require("regent/data") +local data = require("common/data") local flow = require("regent/flow") local flow_region_tree = require("regent/flow_region_tree") local passes_hooks = require("regent/passes_hooks") diff --git a/plugin/src/regent/flow_outline_task.t b/plugin/src/regent/flow_outline_task.t index 1830034..df81277 100644 --- a/plugin/src/regent/flow_outline_task.t +++ b/plugin/src/regent/flow_outline_task.t @@ -35,7 +35,7 @@ local ast = require("regent/ast") local codegen = require("regent/codegen") -local data = require("regent/data") +local data = require("common/data") local flow = require("regent/flow") local flow_extract_subgraph = require("regent/flow_extract_subgraph") local flow_to_ast = require("regent/flow_to_ast") diff --git a/plugin/src/regent/flow_spmd.t b/plugin/src/regent/flow_spmd.t index c72268f..7359fa9 100644 --- a/plugin/src/regent/flow_spmd.t +++ b/plugin/src/regent/flow_spmd.t @@ -30,7 +30,7 @@ -- Dataflow-based SPMD Optimization local ast = require("regent/ast") -local data = require("regent/data") +local data = require("common/data") local codegen = require("regent/codegen") local flow = require("regent/flow") local flow_extract_subgraph = require("regent/flow_extract_subgraph") diff --git a/plugin/src/regent/flow_summarize_subgraph.t b/plugin/src/regent/flow_summarize_subgraph.t index a80d90b..a0374e0 100644 --- a/plugin/src/regent/flow_summarize_subgraph.t +++ b/plugin/src/regent/flow_summarize_subgraph.t @@ -29,7 +29,7 @@ -- Summarize Privileges used in Subgraph of Node -local data = require("regent/data") +local data = require("common/data") local flow = require("regent/flow") local std = require("regent/std") diff --git a/plugin/src/regent/flow_to_ast.t b/plugin/src/regent/flow_to_ast.t index 8754410..30781ec 100644 --- a/plugin/src/regent/flow_to_ast.t +++ b/plugin/src/regent/flow_to_ast.t @@ -32,7 +32,7 @@ -- Conversion from Dataflow IR to AST local ast = require("regent/ast") -local data = require("regent/data") +local data = require("common/data") local flow = require("regent/flow") local flow_region_tree = require("regent/flow_region_tree") local passes_hooks = require("regent/passes_hooks")