Skip to content

Commit

Permalink
Remove some old tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Snektron committed Nov 9, 2021
1 parent 0ec894d commit cd9ade6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 132 deletions.
18 changes: 5 additions & 13 deletions src/compiler/bridge.fut
Original file line number Diff line number Diff line change
Expand Up @@ -78,29 +78,21 @@ let convert_node_type (node_type: front_node_type) =
let convert_data_type (data_type: front_data_type) =
DATA_TYPE_LOOKUP[i32.u8 data_type]

let convert_node_idx (idx: front_node_idx_type) =
idx

let convert_child_idx (child_idx: front_child_idx_type) =
child_idx

let convert_node_data (node_data: front_node_data_type) =
node_data

let backend_convert_node (
node_type: front_node_type,
data_type: front_data_type,
parent: front_node_idx_type,
depth: front_depth_type,
child_idx: front_child_idx_type,
data: front_node_data_type) : Node =
data: front_node_data_type
): Node =
{
node_type = convert_node_type node_type,
resulting_type = convert_data_type data_type,
parent = convert_node_idx parent,
parent = parent,
depth = depth,
child_idx = convert_child_idx child_idx,
node_data = convert_node_data data
child_idx = child_idx,
node_data = data
}

let zip6 [n] 'a 'b 'c 'd 'e 'f
Expand Down
16 changes: 0 additions & 16 deletions src/tools/gen_futhark_dataset.py

This file was deleted.

70 changes: 0 additions & 70 deletions src/tools/test_parser.cpp

This file was deleted.

33 changes: 0 additions & 33 deletions src/tools/test_parser_input.py

This file was deleted.

0 comments on commit cd9ade6

Please sign in to comment.