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 reproduce() function #30

Merged
merged 5 commits into from
May 25, 2023
Merged

Add reproduce() function #30

merged 5 commits into from
May 25, 2023

Conversation

mgehre-amd
Copy link
Collaborator

@mgehre-amd mgehre-amd commented May 24, 2023

Example output:

Strategy: Eliminate dead code (G: 2) (3 nodes, 1 inputs)
FAIL: Eliminate dead code

Strategy: Remove unused inputs (G: 2) (3 nodes, 1 inputs)
FAIL: Remove unused inputs

Strategy: Truncate suffix (G: 2) (3 nodes, 1 inputs)
FAIL: Truncate suffix

Strategy: Delta Debugging (G: 2) (3 nodes, 1 inputs)
FAIL: Delta Debugging
Trying granularity 1

Strategy: Truncate suffix (G: 1) (3 nodes, 1 inputs)
FAIL: Truncate suffix

Strategy: Delta Debugging (G: 1) (3 nodes, 1 inputs)
FAIL: Delta Debugging

Strategy: Remove outputs (G: 1) (3 nodes, 1 inputs)
FAIL: Remove outputs
Made 62 queries
---- SNIP ----
import torch
import torch_mlir

class Model(torch.nn.Module):

    
    
    def forward(self, _to_copy_1):
        cumsum = torch.ops.aten.cumsum(_to_copy_1, 1);  _to_copy_1 = None
        return cumsum
        

model = Model()
model.to(torch.bfloat16)
inps = (torch.ones(torch.Size([1, 12]), dtype=torch.int32), )
out = model(*inps)
torch_mlir.compile(model, inps, output_type='tosa')

---- SNIP ----

@mgehre-amd mgehre-amd requested a review from ljfitz May 24, 2023 11:52
@mgehre-amd mgehre-amd force-pushed the mgehre.repro branch 3 times, most recently from 8960407 to ab4ebc9 Compare May 24, 2023 15:02
@mgehre-amd mgehre-amd requested a review from flemairen6 May 24, 2023 15:03
Copy link
Collaborator

@ljfitz ljfitz left a comment

Choose a reason for hiding this comment

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

Super useful - thanks for chasing this down and getting it to work!

mgehre-amd and others added 2 commits May 25, 2023 08:30
@mgehre-amd mgehre-amd merged commit f144e55 into feature/misc_fixes May 25, 2023
@mgehre-amd mgehre-amd deleted the mgehre.repro branch May 25, 2023 06:31
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