pytorch
3d77832f - This is first attempt to get rid of cpp_custom_type_hack.

Commit
4 years ago
This is first attempt to get rid of cpp_custom_type_hack. To minimize the change, main changes: 1) Introduce RecordFunctionHolder and make it visible in Python. 2) modify record_function_enter return type from the hacky Tensor to RecordFunctionHolder 3) modify record_function_exit to take RecordFunctionHolder (instead of Tensor) Alternative: - In profiler, $ holder = torch.classes.profiler._RecordFunctionHolder() - use holder.enter(name) and holder.exit() - didn't choose b/c there are quite a few places which depend on current record_function_enter/exit ops Follow up: - merge record_function_enter_new and record_function_enter - merge record_function_exit_new and record_function_exit - modify C++ references of those two functions to use the clean interface. - get rid of cpp_custom_type_hack. Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags:
Author
Committer
Parents
Loading