-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Added Relevant support for aten::quantile and it's tests. #28599
base: master
Are you sure you want to change the base?
Conversation
build_jenkins |
@rkazants |
build_jenkins |
@rkazants could you please guide me out what are the issues |
Hello @geeky33, there seems to be a number of build errors, as seen in the CI logs. Do you have access to them? [2025-02-04T08:29:32.314Z] [2025-02-04 08:29:21,392] [140520036398848] build ie ERROR: ========== ERRORS were found in the output:
[2025-02-04T08:29:32.314Z] [2025-02-04 08:29:21,392] [140520036398848] build ie ERROR: ../../repos/openvino/src/frontends/pytorch/src/op/quantile.cpp:78:1: error: expected declaration before ‘}’ token
[2025-02-04T08:29:32.314Z] [2025-02-04 08:29:21,392] [140520036398848] build ie ERROR: ../../repos/openvino/src/frontends/pytorch/src/op/quantile.cpp:77:1: error: expected declaration before ‘}’ token
[2025-02-04T08:29:32.315Z] [2025-02-04 08:29:21,392] [140520036398848] build ie ERROR: ../../repos/openvino/src/frontends/pytorch/src/op/quantile.cpp:21:1: error: ‘OutputVector’ does not name a type
[2025-02-04T08:29:32.315Z] [2025-02-04 08:29:21,392] [140520036398848] build ie ERROR: FAILED: src/frontends/pytorch/src/CMakeFiles/openvino_pytorch_frontend.dir/op/quantile.cpp.o
[2025-02-04T08:29:32.315Z] [2025-02-04 08:29:21,392] [140520036398848] build ie ERROR: ../../repos/openvino/src/frontends/pytorch/src/op/quantile.cpp:80:1: error: expected declaration before ‘}’ token
[2025-02-04T08:29:32.315Z] [2025-02-04 08:29:21,392] [140520036398848] build ie ERROR: ../../repos/openvino/src/frontends/pytorch/src/op/quantile.cpp:79:1: error: expected declaration before ‘}’ token |
@@ -747,6 +748,7 @@ const std::unordered_map<std::string, CreatorFunction> get_supported_ops_ts() { | |||
{"quantized::hardswish", op::translate_quantized_hardswish}, | |||
{"quantized::linear", op::translate_quantized_linear}, | |||
{"quantized::mul", op::translate_quantized_mul}, | |||
{"quantized::relu", op::translate_quantile}, |
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.
{"quantized::relu", op::translate_quantile}, | |
{"aten::quantile", op::translate_quantile}, |
#include "openvino/op/maximum.hpp" | ||
#include "openvino/op/minimum.hpp" | ||
#include "utils.hpp" | ||
|
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.
namespace ov { | |
namespace frontend { | |
namespace pytorch { | |
namespace op { | |
You forgot to open namespaces
Details:
Added aten::quantile
Made the changes in the relevant files and added two files by taking the relevant information from the documentation mentioned in the Issue.
Implemented conversion rule and/or transformation to support the new operation.
Implement operation tests in tests/layer_tests/pytorch_tests. Please consider different data types, but keep reasonable number of test cases.*
Communicated with @andrei-kochin Sir for the permission to make the pull request. Kindly consider the PR. :)
Tickets: