Home
last modified time | relevance | path

Searched refs:local_cpp_signature (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/pytorch/aten/src/ATen/core/dispatch/
H A DOperatorEntry.cpp120 auto& local_cpp_signature = kernel.isValidSymUnboxed() ? sym_cpp_signature_ : cpp_signature_; in registerKernel() local
121 if (local_cpp_signature.has_value()) { in registerKernel()
122 TORCH_CHECK(*cpp_signature == local_cpp_signature->signature, in registerKernel()
126 " kernel 1: ", local_cpp_signature->signature.name(), "\n", in registerKernel()
127 " dispatch key: ", toString(local_cpp_signature->dispatch_key), "\n", in registerKernel()
128 " ", local_cpp_signature->debug, "\n", in registerKernel()
134 local_cpp_signature = CppSignatureWithDebug { *cpp_signature, debug, dispatch_key }; in registerKernel()