Skip to content
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

Add clang-tidy checker to use free functions for casting #103

Open
wants to merge 1 commit into
base: npu/release/18.x
Choose a base branch
from

Conversation

ArtemySkrebkov
Copy link

Summary

Please add a short but exhaustive summary why you think your pull request is useful

  • Add a custom checker for automatic replacement of member variants of the dyn_cast/cast/isa with the corresponding free functions. For example,
if (type.isa<Foo>() && type.isa<Bar>()) { ... } 
// will be replaced by
if (mlir::isa<Foo>(type) && mlir::isa<Bar>(type)) { ... } 

More examples in https://github.com/intel-innersource/applications.ai.vpu-accelerators.vpux-plugin/pull/16360

JIRA ticket

Related PR in NPU Compiler and/or OpenVINO repository with sub-module update

  • PR-xxx

Other related tickets

List tickets for additional work, eg, something was found during review but you agreed to address it in another Jira

  • E-xxxxx

@ArtemySkrebkov ArtemySkrebkov requested a review from a team as a code owner March 3, 2025 19:59
@ArtemySkrebkov
Copy link
Author

To be honest, I am not sure we need to merge this as this checker becomes useless once we move to LLVM19. So the checker can live in a branch.

However, there is no harm in merging as well. For the sake of history, for example 😺

So it is up to the maintainers of the repo to decide what to do with the PR.

@ggladilo
Copy link

To be honest, I am not sure we need to merge this as this checker becomes useless once we move to LLVM19. So the checker can live in a branch.

However, there is no harm in merging as well. For the sake of history, for example 😺

So it is up to the maintainers of the repo to decide what to do with the PR.

I wouldn't merge (at least as-is) since there's no tests and a few "FIXME" left
Anyway, I'm actually planning to enable custom clang-tidy checks support in npu compiler repo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants