Skip to content

Commit

Permalink
add docstring to the fallback methods
Browse files Browse the repository at this point in the history
Co-authored-by:  Mark Kittisopikul <[email protected]>
  • Loading branch information
aviatesk and mkitti committed Apr 10, 2024
1 parent c848283 commit 7dd76ce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/parcel_snoopi_deep.jl
Original file line number Diff line number Diff line change
Expand Up @@ -897,8 +897,11 @@ Cthulhu.backedges(itrig::InferenceTrigger) = (itrig.callerframes,)
Cthulhu.nextnode(itrig::InferenceTrigger, edge) = (ret = callingframe(itrig); return isempty(ret.callerframes) ? nothing : ret)

# JET integrations are implemented lazily
function report_callee end
"To use `report_caller` do `using JET`"
function report_caller end
"To use `report_callee` do `using JET`"
function report_callee end
"To use `report_callees` do `using JET`"
function report_callees end

filtermod(mod::Module, itrigs::AbstractVector{InferenceTrigger}) = filter(==(mod) callermodule, itrigs)
Expand Down

0 comments on commit 7dd76ce

Please sign in to comment.