-
Notifications
You must be signed in to change notification settings - Fork 724
[ET-VK] Add int and bool tensor support for many operators #15834
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release/1.0
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,5 +7,7 @@ clone: | |
| DTYPE: | ||
| - VALUE: half | ||
| - VALUE: float | ||
| - VALUE: int32 | ||
| - VALUE: uint8 | ||
| shader_variants: | ||
| - NAME: clone | ||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,6 +6,7 @@ concat_texture: | |||||||
| DTYPE: | ||||||||
| - VALUE: half | ||||||||
| - VALUE: float | ||||||||
| - VALUE: int32 | ||||||||
|
||||||||
| - VALUE: int32 | |
| - VALUE: int32 | |
| - VALUE: uint8 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,5 +6,6 @@ expand_buffer: | |
| - VALUE: half | ||
| - VALUE: float | ||
| - VALUE: int32 | ||
| - VALUE: uint8 | ||
| shader_variants: | ||
| - NAME: expand_buffer | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,5 +15,6 @@ full: | |
| - VALUE: half | ||
| - VALUE: float | ||
| - VALUE: int32 | ||
| - VALUE: uint8 | ||
| shader_variants: | ||
| - NAME: full | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,5 +8,6 @@ index_select: | |
| - VALUE: half | ||
| - VALUE: float | ||
| - VALUE: int32 | ||
| - VALUE: uint8 | ||
| shader_variants: | ||
| - NAME: index_select | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar to
concat_texture.yaml, this operator only addsint32support but notuint8. For consistency with other operators in this PR that add both dtypes, consider addinguint8support here as well.