-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
[TF FE] Support Complex Tensors #20860
Merged
rkazants
merged 8 commits into
openvinotoolkit:master
from
rkazants:rkazants/complex_tensor_support_89086
Nov 6, 2023
Merged
[TF FE] Support Complex Tensors #20860
rkazants
merged 8 commits into
openvinotoolkit:master
from
rkazants:rkazants/complex_tensor_support_89086
Nov 6, 2023
Conversation
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
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
github-actions
bot
added
category: MO
Model Optimizer
category: TF FE
OpenVINO TensorFlow FrontEnd
category: TFL FE
OpenVINO TensorFlow Lite FrontEnd
labels
Nov 3, 2023
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
rkazants
requested review from
kblaszczak-intel
and removed request for
a team
November 5, 2023 20:41
rkazants
changed the title
[TF FE] Support complex tensors
[TF FE] Support Complex Tensors
Nov 5, 2023
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
mvafin
approved these changes
Nov 6, 2023
alvoron
pushed a commit
to alvoron/openvino
that referenced
this pull request
Nov 6, 2023
* [TF FE] Support complex tensors Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Align output type for Real and Imag operations Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Update decoding complex types * Add support for ComplexAbs, FFT and IFFT operations Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Correct axes based on a number of inner-most dimensions * Add layer tests Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Update supported ops documentation Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Add a comment for ComplexTypeMark Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> --------- Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
allnes
pushed a commit
to allnes/openvino
that referenced
this pull request
Nov 23, 2023
* [TF FE] Support complex tensors Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Align output type for Real and Imag operations Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Update decoding complex types * Add support for ComplexAbs, FFT and IFFT operations Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Correct axes based on a number of inner-most dimensions * Add layer tests Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Update supported ops documentation Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> * Add a comment for ComplexTypeMark Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com> --------- Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
This was referenced Dec 5, 2023
This was referenced Jan 10, 2024
This was referenced Feb 20, 2024
This was referenced Mar 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
category: docs
OpenVINO documentation
category: MO
Model Optimizer
category: TF FE
OpenVINO TensorFlow FrontEnd
category: TFL FE
OpenVINO TensorFlow Lite FrontEnd
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Details: Support complex tensors. Removed fallback to the legacy frontend in case complex type tensor.
Added loaders for 16 operations: ComplexAbs, Complex, Real, Imag, FFT, FFT2D, FFT3D, IFFT, IFFT2D, IFFT3D, RFFT, RFFT2D, RFFT3D, IRFFT, IRFFT2D, IRFFT3D.
Now all models with complex type from our validation scope are supported via new TF FE.
Ticket: 89086