mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: static dispatch registry should be moved to open source. the rest can maintain internally for now, since delegates will all go through ET hop. Test Plan: spot checked existing tests and didn't see any missing registrations Differential Revision: D80099377 Pull Request resolved: https://github.com/pytorch/pytorch/pull/160439 Approved by: https://github.com/SherlockNoMad, https://github.com/zhxchen17
8 lines
108 B
C++
8 lines
108 B
C++
#pragma once
|
|
|
|
namespace torch::nativert {
|
|
|
|
void register_kernel_handlers();
|
|
|
|
} // namespace torch::nativert
|