Skip to content

Conversation

@ThomasRaoux
Copy link
Collaborator

No description provided.

@ThomasRaoux ThomasRaoux requested a review from ptillet as a code owner October 18, 2025 03:45
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +366 to +369
llvm::DenseSet<std::pair<Value, Attribute>> visited;
while (!uses.empty()) {
auto [v, encoding] = uses.pop_back_val();
if (!visited.insert({v, encoding}).second)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0 Badge Include headers for new DenseSet usage

The new llvm::DenseSet<std::pair<Value, Attribute>> visited relies on both the llvm::DenseSet declaration and DenseMapInfo<Attribute>. This file does not include either llvm/ADT/DenseSet.h or mlir/Support/LLVM.h, so the compilation unit will fail to build once this code is seen because DenseSet and DenseMapInfo<mlir::Attribute> are undefined here. Add the appropriate headers before using the set.

Useful? React with 👍 / 👎.

@ThomasRaoux ThomasRaoux enabled auto-merge (squash) October 18, 2025 04:08
@ThomasRaoux ThomasRaoux merged commit a4ab31d into triton-lang:main Oct 18, 2025
9 checks passed
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