MilesCranmer / DispatchDoctor.jl

The dispatch doctor prescribes type stability
Apache License 2.0
128 stars 6 forks source link

Warn if skipped all functions #15

Closed MilesCranmer closed 1 month ago

MilesCranmer commented 1 month ago

Should show a warning if it ends up not applying _stabilize_fnc to anything because of the various skips. I wouldn’t want someone to write out

@stable @generated function f(x)
    :(x > 0 ? x : 0.0)
end

and have them expect it to work. At least a message should get printed here. But only if it tagged zero functions

MilesCranmer commented 1 month ago

Added