Skip to content

[Bugfix] Prevent segfault when instantiating abstract SearchStrategy#18534

Merged
tlopex merged 5 commits intoapache:mainfrom
Dayuxiaoshui:main
Dec 1, 2025
Merged

[Bugfix] Prevent segfault when instantiating abstract SearchStrategy#18534
tlopex merged 5 commits intoapache:mainfrom
Dayuxiaoshui:main

Conversation

@Dayuxiaoshui
Copy link
Copy Markdown
Contributor

Add init method to SearchStrategy class to prevent direct instantiation of the abstract class. This raises a TypeError with a helpful error message instead of causing a segmentation fault when SearchStrategy() is called directly or passed to TuneContext.

Also add additional check in TuneContext.init to ensure abstract SearchStrategy instances are not used.

Fixes #18268

Add __init__ method to SearchStrategy class to prevent direct instantiation
of the abstract class. This raises a TypeError with a helpful error message
instead of causing a segmentation fault when SearchStrategy() is called
directly or passed to TuneContext.

Also add additional check in TuneContext.__init__ to ensure abstract
SearchStrategy instances are not used.

Fixes #18268
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @Dayuxiaoshui, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request resolves a critical bug where direct instantiation of the abstract SearchStrategy class or its usage within TuneContext could lead to a segmentation fault. By implementing explicit type checks and raising informative TypeError exceptions, the change significantly enhances the stability and user-friendliness of the system, guiding users towards correct usage of concrete subclasses or the SearchStrategy.create() factory method.

Highlights

  • Prevent Direct Instantiation: Introduced an __init__ method to the SearchStrategy abstract class to explicitly prevent its direct instantiation, raising a TypeError with a descriptive message.
  • TuneContext Validation: Added a validation check within TuneContext.__init__ to ensure that an abstract SearchStrategy instance is not inadvertently used, also raising a TypeError.
  • New Test Case: Included a new test case, test_search_strategy_abstract_class_instantiation, to confirm that attempts to instantiate the abstract SearchStrategy or pass it to TuneContext correctly result in a TypeError.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request effectively prevents a segmentation fault when an abstract SearchStrategy is instantiated by raising a TypeError instead. The changes include adding a check in SearchStrategy's initializer, a redundant but safe check in TuneContext, and a comprehensive test case to verify the fix. My main suggestion is to use __new__ instead of __init__ in SearchStrategy for preventing instantiation, as it is more idiomatic in Python for this purpose. Overall, this is a good fix that improves the robustness of the API.

Comment thread python/tvm/meta_schedule/search_strategy/search_strategy.py Outdated
Copy link
Copy Markdown
Member

@tlopex tlopex left a comment

Choose a reason for hiding this comment

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

LGTM Thanks!

@tlopex tlopex merged commit d6e6334 into apache:main Dec 1, 2025
10 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.

[Bug] Segfault when instantiating abstract SearchStrategy() in TuneContext

2 participants