Skip to content

[BC breaking] Simplify block size configs #127

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

Merged
merged 1 commit into from
Jun 4, 2025
Merged

[BC breaking] Simplify block size configs #127

merged 1 commit into from
Jun 4, 2025

Conversation

jansel
Copy link
Contributor

@jansel jansel commented Jun 4, 2025

Stacked PRs:


[BC breaking] Simplify block size configs

This removes the prior nested config structure where you would have:
block_sizes=[[8, 8], 8] for nested loops, and
block_sizes=[64, 8] for a flattened loop.

Instead, you would now have:
block_sizes=[8, 8, 8], flatten_loops=[False] for nested loops, and
block_sizes=[8, 8, 8] flatten_loops=[True] for a flattened loop

This makes config structures more predictable and easier to work with.

This removes the prior nested config structure where you would have:
block_sizes=[[8, 8], 8] for nested loops, and
block_sizes=[64, 8] for a flattened loop.

Instead, you would now have:
block_sizes=[8, 8, 8], flatten_loops=[False] for nested loops, and
block_sizes=[8, 8, 8] flatten_loops=[True] for a flattened loop

This makes config structures more predictable and easier to work with.

stack-info: PR: #127, branch: jansel/stack/23
jansel added a commit that referenced this pull request Jun 4, 2025
This removes the prior nested config structure where you would have:
block_sizes=[[8, 8], 8] for nested loops, and
block_sizes[64, 8] for a flattened loop.

Instead, you would now have:
block_sizes=[8, 8, 8], flatten_loops=[False] for nested loops, and
block_sizes[8, 8, 8] flatten_loops=[True] for a flattened loop

This makes config structures more predictable and easier to work with.

stack-info: PR: #127, branch: jansel/stack/23
@jansel jansel force-pushed the jansel/stack/23 branch from a7ac574 to 4857749 Compare June 4, 2025 01:01
@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Meta Open Source bot. label Jun 4, 2025
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 01:02
@jansel jansel force-pushed the jansel/stack/23 branch from 4857749 to 6894bce Compare June 4, 2025 01:02
jansel added a commit that referenced this pull request Jun 4, 2025
This removes the prior nested config structure where you would have:
block_sizes=[[8, 8], 8] for nested loops, and
block_sizes=[64, 8] for a flattened loop.

Instead, you would now have:
block_sizes=[8, 8, 8], flatten_loops=[False] for nested loops, and
block_sizes=[8, 8, 8] flatten_loops=[True] for a flattened loop

This makes config structures more predictable and easier to work with.

stack-info: PR: #127, branch: jansel/stack/23
@jansel jansel changed the base branch from main to jansel/stack/22 June 4, 2025 01:02
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 01:12
jansel added a commit that referenced this pull request Jun 4, 2025
This removes the prior nested config structure where you would have:
block_sizes=[[8, 8], 8] for nested loops, and
block_sizes=[64, 8] for a flattened loop.

Instead, you would now have:
block_sizes=[8, 8, 8], flatten_loops=[False] for nested loops, and
block_sizes=[8, 8, 8] flatten_loops=[True] for a flattened loop

This makes config structures more predictable and easier to work with.

stack-info: PR: #127, branch: jansel/stack/23
@jansel jansel force-pushed the jansel/stack/23 branch from 6894bce to 2b5c860 Compare June 4, 2025 01:12
@jansel jansel changed the base branch from main to jansel/stack/22 June 4, 2025 01:12
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 02:23
@jansel jansel changed the base branch from main to jansel/stack/22 June 4, 2025 02:23
@jansel jansel force-pushed the jansel/stack/22 branch from 27e9a69 to 6437eeb Compare June 4, 2025 02:24
jansel added a commit that referenced this pull request Jun 4, 2025
This removes the prior nested config structure where you would have:
block_sizes=[[8, 8], 8] for nested loops, and
block_sizes=[64, 8] for a flattened loop.

Instead, you would now have:
block_sizes=[8, 8, 8], flatten_loops=[False] for nested loops, and
block_sizes=[8, 8, 8] flatten_loops=[True] for a flattened loop

This makes config structures more predictable and easier to work with.

stack-info: PR: #127, branch: jansel/stack/23
@jansel jansel force-pushed the jansel/stack/23 branch from 2b5c860 to c318826 Compare June 4, 2025 02:24
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 02:30
@jansel jansel force-pushed the jansel/stack/23 branch from c318826 to 2f1473c Compare June 4, 2025 02:30
@jansel jansel changed the base branch from main to jansel/stack/22 June 4, 2025 02:30
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 04:05
@jansel jansel changed the base branch from main to jansel/stack/22 June 4, 2025 04:05
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 04:51
@jansel jansel changed the base branch from main to jansel/stack/22 June 4, 2025 04:52
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 04:55
@jansel jansel force-pushed the jansel/stack/23 branch from 2f1473c to 818e293 Compare June 4, 2025 04:55
@jansel jansel changed the base branch from main to jansel/stack/22 June 4, 2025 04:55
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 04:57
@jansel jansel changed the base branch from main to jansel/stack/22 June 4, 2025 04:57
@jansel jansel force-pushed the jansel/stack/23 branch from 818e293 to d3ac26f Compare June 4, 2025 05:00
@jansel jansel changed the base branch from jansel/stack/22 to main June 4, 2025 05:00
@jansel jansel merged commit fa08371 into main Jun 4, 2025
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Meta Open Source bot.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants