-
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 Case operation #28027
base: master
Are you sure you want to change the base?
[TF FE] Support Case operation #28027
Conversation
@@ -140,6 +142,7 @@ const std::map<std::string, CreatorFunction> get_supported_ops() { | |||
{"Asinh", CreatorFunction(translate_unary_op<v3::Asinh>)}, | |||
{"Atan", CreatorFunction(translate_unary_op<v0::Atan>)}, | |||
{"Atanh", CreatorFunction(translate_unary_op<v3::Atanh>)}, | |||
{"Case", CreatorFunction(translate_case_op)}, |
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.
please add layer tests for this Operation
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.
@rkazants It would be greatly appreciated if you could guide me on the appropriate folder where I should add the layer tests for this operation. As I am new to open-source contributions, your guidance would be very helpful in ensuring I follow the correct structure and conventions for adding the test case for this operation.
…://github.com/shubdas9902/openvino into feature/issue-20534-add-case-op-support-tf-fe
@rkazants I added the layer tests what should I do next? |
Details:
case.hpp
to define the translation function for the Case operation.translate_case_op
function incase.cpp
to handle the conversion of the TensorFlow Case operation to OpenVINO.TF_OP_CONVERTER
macro in the operation converter framework.Tickets: