torchfix icon indicating copy to clipboard operation
torchfix copied to clipboard

ENH: extend deprecation check to references

Open sbrugman opened this issue 5 months ago • 0 comments

Example of false negatives that were previously undetected:

func = torch.my_deprecated_function
func(A, B, C)

=>

func = torch.my_new_function
func([A, B, C])

(Still needs updated test cases)

sbrugman avatar Sep 23 '24 21:09 sbrugman