-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/codegen gather indices greater than rank 1 (#2199)
* implemented muli-dim index for GatherNode The `NodeCodegen` impl for `GatherNode` now performs gather in complete accordance with the ONNX Gather spec. - a `gather` function was added to the gather.rs file - `gather()` is now called within the codegen instead of `tensor.select()` - a test with two test cases have been added - test axes 0 and 1 - both use 2D index tensors * add gather_onnx to numeric api Added int and float implementations of gather to the burn-tensor numeric api: - named the methods `gather_onnx` to not be confused with the current `gather` - these implementations follow the `Gather` ONNX spec Updated the gather*.py variants and their onnx outputs * modified files didn't end up in last commit * tests passing for onnx gather The implementation of gather for the ONNX `Gather` spec is tentatively complete: - py test models are updated - onnx_tests are modified and passing: `gather`, `gather_scalar`, and `gather_shape` - node/gather tests are passing NOTE: The two additional tests in crates/burn-import/src/burn/node/gather.rs that test the actual functionality of gather are likely to be deleted, since they are redundant to the tests in crates/burn-import/onnx-tests/tests/onnx_tests.rs. * inlined onnx gather within codegen * rm gather_onnx from public api; rm unnecessary tests * add comments to gather py models * some codegen changes; formatting to appease run-checks - Some necessary changes and improvements to the codegen inlined code after translating from public api (removed in previous commit). - Changed some formatting that run-checks complained about. * simplify gather codegen; include 1d and 2d onnx tests Modified the `Gather` codegen per requested changes: - combined match statements on index - remove use of `alloc::vec::Vec` - use map -> collect instead of procedural - include a 1d index gather onnx test - remove superflous tests * delete unused gather.onnx
- Loading branch information
1 parent
795201d
commit 0292967
Showing
14 changed files
with
321 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
62 changes: 62 additions & 0 deletions
62
crates/burn-import/onnx-tests/tests/gather/gather_1d_idx.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# used to generate model: onnx-tests/tests/gather/gather.onnx | ||
|
||
# There is no current support for `Split`, and the `for` loop over the indices | ||
# results in a `Split` node in the ONNX model. | ||
# Therefore, this model is built and exported using ONNX directly. | ||
|
||
import onnx | ||
|
||
|
||
def build_model(): | ||
return onnx.helper.make_model( | ||
ir_version=8, | ||
opset_imports=[onnx.helper.make_operatorsetid("", 16)], | ||
graph=onnx.helper.make_graph(name="main_graph", nodes=[ | ||
onnx.helper.make_node( | ||
"Gather", | ||
inputs=["input1", "input2"], | ||
outputs=["output1"], | ||
name="/Gather", | ||
axis=1 | ||
), | ||
], | ||
inputs=[ | ||
onnx.helper.make_value_info( | ||
name="input1", | ||
type_proto=onnx.helper.make_tensor_type_proto( | ||
elem_type=onnx.TensorProto.FLOAT, shape=[2, 3] | ||
), | ||
), | ||
onnx.helper.make_value_info( | ||
name="input2", | ||
type_proto=onnx.helper.make_tensor_type_proto( | ||
elem_type=onnx.TensorProto.INT64, shape=[2] | ||
), | ||
), | ||
|
||
], | ||
outputs=[ | ||
onnx.helper.make_value_info( | ||
name="output1", | ||
type_proto=onnx.helper.make_tensor_type_proto( | ||
elem_type=onnx.TensorProto.FLOAT, shape=[2, 2] | ||
), | ||
) | ||
]), | ||
) | ||
|
||
|
||
def main(): | ||
onnx_model = build_model() | ||
file_name = "gather_1d_idx.onnx" | ||
|
||
# Ensure valid ONNX: | ||
onnx.checker.check_model(onnx_model) | ||
|
||
onnx.save(onnx_model, file_name) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
Binary file not shown.
62 changes: 62 additions & 0 deletions
62
crates/burn-import/onnx-tests/tests/gather/gather_2d_idx.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# used to generate model: onnx-tests/tests/gather/gather.onnx | ||
|
||
# There is no current support for `Split`, and the `for` loop over the indices | ||
# results in a `Split` node in the ONNX model. | ||
# Therefore, this model is built and exported using ONNX directly. | ||
|
||
import onnx | ||
|
||
|
||
def build_model(): | ||
return onnx.helper.make_model( | ||
ir_version=8, | ||
opset_imports=[onnx.helper.make_operatorsetid("", 16)], | ||
graph=onnx.helper.make_graph(name="main_graph", nodes=[ | ||
onnx.helper.make_node( | ||
"Gather", | ||
inputs=["input1", "input2"], | ||
outputs=["output1"], | ||
name="/Gather", | ||
axis=0 | ||
), | ||
], | ||
inputs=[ | ||
onnx.helper.make_value_info( | ||
name="input1", | ||
type_proto=onnx.helper.make_tensor_type_proto( | ||
elem_type=onnx.TensorProto.FLOAT, shape=[2, 3] | ||
), | ||
), | ||
onnx.helper.make_value_info( | ||
name="input2", | ||
type_proto=onnx.helper.make_tensor_type_proto( | ||
elem_type=onnx.TensorProto.INT64, shape=[2, 2] | ||
), | ||
), | ||
|
||
], | ||
outputs=[ | ||
onnx.helper.make_value_info( | ||
name="output1", | ||
type_proto=onnx.helper.make_tensor_type_proto( | ||
elem_type=onnx.TensorProto.FLOAT, shape=[2, 2, 2] | ||
), | ||
) | ||
]), | ||
) | ||
|
||
|
||
def main(): | ||
onnx_model = build_model() | ||
file_name = "gather_2d_idx.onnx" | ||
|
||
# Ensure valid ONNX: | ||
onnx.checker.check_model(onnx_model) | ||
|
||
onnx.save(onnx_model, file_name) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
Binary file modified
BIN
-34 Bytes
(81%)
crates/burn-import/onnx-tests/tests/gather/gather_scalar.onnx
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.