-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into test-yolov3
- Loading branch information
Showing
146 changed files
with
31,635 additions
and
14,343 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 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,26 @@ | ||
# High Level Operations Status | ||
| | Operations | Input Variations | Converted | | ||
|---:|:-------------------------------------|-------------------:|------------:| | ||
| 0 | aten.convolution.default | 4 | 0 | | ||
| 1 | aten.max_pool2d_with_indices.default | 2 | 0 | | ||
| 2 | aten.relu.default | 3 | 3 | | ||
*** | ||
### aten.convolution.default | ||
| | ATen Input Variations | Status | | ||
|---:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------| | ||
| 0 | Tensor<[1, 1, 28, 28]> input = ?,<br>Tensor<[16, 1, 3, 3]> weight = ?,<br>Optional[Tensor]<[16]> bias = ?,<br>List[int]<> stride = [1, 1],<br>List[int]<> padding = [1, 1],<br>List[int]<> dilation = [1, 1],<br>bool<> transposed = False,<br>List[int]<> output_padding = [0, 0],<br>int<> groups = 1 | Unknown | | ||
| 1 | Tensor<[1, 16, 14, 14]> input = ?,<br>Tensor<[16, 1, 2, 2]> weight = ?,<br>Optional[Tensor]<[1]> bias = ?,<br>List[int]<> stride = [2, 2],<br>List[int]<> padding = [0, 0],<br>List[int]<> dilation = [1, 1],<br>bool<> transposed = True,<br>List[int]<> output_padding = [0, 0],<br>int<> groups = 1 | Unknown | | ||
| 2 | Tensor<[1, 16, 14, 14]> input = ?,<br>Tensor<[4, 16, 3, 3]> weight = ?,<br>Optional[Tensor]<[4]> bias = ?,<br>List[int]<> stride = [1, 1],<br>List[int]<> padding = [1, 1],<br>List[int]<> dilation = [1, 1],<br>bool<> transposed = False,<br>List[int]<> output_padding = [0, 0],<br>int<> groups = 1 | Unknown | | ||
| 3 | Tensor<[1, 4, 7, 7]> input = ?,<br>Tensor<[4, 16, 2, 2]> weight = ?,<br>Optional[Tensor]<[16]> bias = ?,<br>List[int]<> stride = [2, 2],<br>List[int]<> padding = [0, 0],<br>List[int]<> dilation = [1, 1],<br>bool<> transposed = True,<br>List[int]<> output_padding = [0, 0],<br>int<> groups = 1 | Unknown | | ||
### aten.max_pool2d_with_indices.default | ||
| | ATen Input Variations | Status | | ||
|---:|:------------------------------------------------------------------------------------------------------|:---------| | ||
| 0 | Tensor<[1, 16, 28, 28]> self = ?,<br>List[int]<> kernel_size = [2, 2],<br>List[int]<> stride = [2, 2] | Unknown | | ||
| 1 | Tensor<[1, 4, 14, 14]> self = ?,<br>List[int]<> kernel_size = [2, 2],<br>List[int]<> stride = [2, 2] | Unknown | | ||
### aten.relu.default | ||
| | ATen Input Variations | Status | | ||
|---:|:---------------------------------|:---------| | ||
| 0 | Tensor<[1, 16, 14, 14]> self = ? | Done | | ||
| 1 | Tensor<[1, 16, 28, 28]> self = ? | Done | | ||
| 2 | Tensor<[1, 4, 14, 14]> self = ? | Done | | ||
|
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,36 @@ | ||
# High Level Operations Status | ||
| | Operations | Input Variations | Converted | | ||
|---:|:-------------------|-------------------:|------------:| | ||
| 0 | aten.addmm.default | 8 | 8 | | ||
| 1 | aten.relu.default | 3 | 3 | | ||
| 2 | aten.t.default | 8 | 8 | | ||
*** | ||
### aten.addmm.default | ||
| | ATen Input Variations | Status | | ||
|---:|:-------------------------------------------------------------------------------------|:---------| | ||
| 0 | Tensor<[128]> self = ?,<br>Tensor<[1, 64]> mat1 = ?,<br>Tensor<[64, 128]> mat2 = ? | Done | | ||
| 1 | Tensor<[128]> self = ?,<br>Tensor<[1, 784]> mat1 = ?,<br>Tensor<[784, 128]> mat2 = ? | Done | | ||
| 2 | Tensor<[12]> self = ?,<br>Tensor<[1, 3]> mat1 = ?,<br>Tensor<[3, 12]> mat2 = ? | Done | | ||
| 3 | Tensor<[12]> self = ?,<br>Tensor<[1, 64]> mat1 = ?,<br>Tensor<[64, 12]> mat2 = ? | Done | | ||
| 4 | Tensor<[3]> self = ?,<br>Tensor<[1, 12]> mat1 = ?,<br>Tensor<[12, 3]> mat2 = ? | Done | | ||
| 5 | Tensor<[64]> self = ?,<br>Tensor<[1, 128]> mat1 = ?,<br>Tensor<[128, 64]> mat2 = ? | Done | | ||
| 6 | Tensor<[64]> self = ?,<br>Tensor<[1, 12]> mat1 = ?,<br>Tensor<[12, 64]> mat2 = ? | Done | | ||
| 7 | Tensor<[784]> self = ?,<br>Tensor<[1, 128]> mat1 = ?,<br>Tensor<[128, 784]> mat2 = ? | Done | | ||
### aten.relu.default | ||
| | ATen Input Variations | Status | | ||
|---:|:--------------------------|:---------| | ||
| 0 | Tensor<[1, 128]> self = ? | Done | | ||
| 1 | Tensor<[1, 12]> self = ? | Done | | ||
| 2 | Tensor<[1, 64]> self = ? | Done | | ||
### aten.t.default | ||
| | ATen Input Variations | Status | | ||
|---:|:----------------------------|:---------| | ||
| 0 | Tensor<[12, 3]> self = ? | Done | | ||
| 1 | Tensor<[12, 64]> self = ? | Done | | ||
| 2 | Tensor<[128, 64]> self = ? | Done | | ||
| 3 | Tensor<[128, 784]> self = ? | Done | | ||
| 4 | Tensor<[3, 12]> self = ? | Done | | ||
| 5 | Tensor<[64, 128]> self = ? | Done | | ||
| 6 | Tensor<[64, 12]> self = ? | Done | | ||
| 7 | Tensor<[784, 128]> self = ? | Done | | ||
|
Oops, something went wrong.