Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/test/cpp_extensions/
H A Dsetup.py10 CppExtension,
29 CppExtension(
32 CppExtension(
37 CppExtension(
65 extension = CppExtension(
/aosp_15_r20/external/pytorch/benchmarks/operator_benchmark/pt_extension/
H A Dsetup.py3 from torch.utils.cpp_extension import BuildExtension, CppExtension
8 ext_modules=[CppExtension("benchmark_cpp_extension", ["extension.cpp"])],
/aosp_15_r20/external/pytorch/test/cpp_extensions/no_python_abi_suffix_test/
H A Dsetup.py3 from torch.utils.cpp_extension import BuildExtension, CppExtension
9 CppExtension("no_python_abi_suffix_test", ["no_python_abi_suffix_test.cpp"])
/aosp_15_r20/external/pytorch/test/cpp_extensions/open_registration_extension/
H A Dsetup.py7 from torch.utils.cpp_extension import BuildExtension, CppExtension
39 CppExtension(
/aosp_15_r20/external/pytorch/docs/source/
H A Dcpp_extension.rst5 .. autofunction:: CppExtension
/aosp_15_r20/external/pytorch/torch/utils/
H A Dcpp_extension.py924 def CppExtension(name, sources, *args, **kwargs): function