Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/aten/src/ATen/core/dispatch/
H A DDispatcher.h402 bool hasKernelForDispatchKey(DispatchKey k) const { in hasKernelForDispatchKey() function
403 return operatorDef_->op.hasKernelForDispatchKey(k); in hasKernelForDispatchKey()
758 if (op.hasKernelForDispatchKey(dk)) {
H A DOperatorEntry.cpp223 bool OperatorEntry::hasKernelForDispatchKey(DispatchKey k) const { in registerKernel() function in c10::impl::OperatorEntry
324 hasKernelForDispatchKey(DispatchKey::CompositeExplicitAutograd); in registerKernel()
H A DDispatcher.cpp120 return op.hasKernelForDispatchKey(dk); in waitForImpl()
500 if (!k || op.second.hasKernelForDispatchKey(*k)) { in getRegistrationsForDispatchKey()
H A DOperatorEntry.h205 bool hasKernelForDispatchKey(DispatchKey k) const;
/aosp_15_r20/external/pytorch/aten/src/ATen/native/sparse/
H A DSparseBlasImpl.cpp115 if (triton_kernel.hasKernelForDispatchKey(c10::DispatchKey::SparseCsrCUDA)) { in _compressed_row_strided_mm_out()
244 if (triton_kernel.hasKernelForDispatchKey(c10::DispatchKey::SparseCsrCUDA)) { in _compressed_row_strided_addmm_out()
/aosp_15_r20/external/pytorch/torch/csrc/utils/
H A Dpython_dispatch.cpp580 return op->hasKernelForDispatchKey(dispatch); in initDispatchBindings()