Skip to content

Commit

Permalink
Update for Regent reorganization.
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottslaughter committed Aug 11, 2016
1 parent 4493d9a commit f37f5d6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion plugin/src/regent/flow.t
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion plugin/src/regent/flow_from_ast.t
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/regent/flow_outline_task.t
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/regent/flow_spmd.t
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/regent/flow_summarize_subgraph.t
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion plugin/src/regent/flow_to_ast.t
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit f37f5d6

Please sign in to comment.