trace_type
Trace how a data type flows through function calls to identify all functions that pass or receive it, revealing data propagation paths.
Instructions
Find all data-flow edges involving a specific type. Shows which functions pass and receive this type through call edges. Use when asked 'where does Tensor flow', 'how is type X passed around', or 'which functions use type X'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type_name | Yes | The type to trace (e.g. 'Tensor', 'np.ndarray') |