Skip to content

Commit f37f5d6

Browse files
Update for Regent reorganization.
1 parent 4493d9a commit f37f5d6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

plugin/src/regent/flow.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
-- Dataflow IR
3333

3434
local ast = require("regent/ast")
35-
local data = require("regent/data")
35+
local data = require("common/data")
3636

3737
local flow = ast.make_factory("flow")
3838

plugin/src/regent/flow_from_ast.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
-- Conversion from AST to Dataflow IR
3333

3434
local ast = require("regent/ast")
35-
local data = require("regent/data")
35+
local data = require("common/data")
3636
local flow = require("regent/flow")
3737
local flow_region_tree = require("regent/flow_region_tree")
3838
local passes_hooks = require("regent/passes_hooks")

plugin/src/regent/flow_outline_task.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
local ast = require("regent/ast")
3737
local codegen = require("regent/codegen")
38-
local data = require("regent/data")
38+
local data = require("common/data")
3939
local flow = require("regent/flow")
4040
local flow_extract_subgraph = require("regent/flow_extract_subgraph")
4141
local flow_to_ast = require("regent/flow_to_ast")

plugin/src/regent/flow_spmd.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
-- Dataflow-based SPMD Optimization
3131

3232
local ast = require("regent/ast")
33-
local data = require("regent/data")
33+
local data = require("common/data")
3434
local codegen = require("regent/codegen")
3535
local flow = require("regent/flow")
3636
local flow_extract_subgraph = require("regent/flow_extract_subgraph")

plugin/src/regent/flow_summarize_subgraph.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
-- Summarize Privileges used in Subgraph of Node
3131

32-
local data = require("regent/data")
32+
local data = require("common/data")
3333
local flow = require("regent/flow")
3434
local std = require("regent/std")
3535

plugin/src/regent/flow_to_ast.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
-- Conversion from Dataflow IR to AST
3333

3434
local ast = require("regent/ast")
35-
local data = require("regent/data")
35+
local data = require("common/data")
3636
local flow = require("regent/flow")
3737
local flow_region_tree = require("regent/flow_region_tree")
3838
local passes_hooks = require("regent/passes_hooks")

0 commit comments

Comments
 (0)