Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/torch/csrc/jit/backends/xnnpack/
H A Dxnnpack_backend_preprocess.cpp66 const auto& forward_method = eval_mod.get_method("forward"); in preprocess() local
68 auto graph = toGraphFunction(forward_method.function()).graph()->copy(); in preprocess()
/aosp_15_r20/external/pytorch/test/cpp/lite_interpreter_runtime/
H A Dtest_lite_interpreter_runtime.cpp48 auto forward_method = bc.find_method("forward"); in TEST() local
/aosp_15_r20/external/rust/android-crates-io/crates/serde_test/src/
Dconfigure.rs165 macro_rules! forward_method { macro
176 forward_method!($name(self, v : $arg_type) -> Result<Self::Ok, Self::Error>);
/aosp_15_r20/external/pytorch/torch/jit/
H A D_trace.py1251 forward_method = getattr(mod, method_name)
1252 argument_names = get_callable_argument_names(forward_method)
/aosp_15_r20/external/pytorch/torch/_dynamo/variables/
H A Dnn_module.py868 forward_method = inspect.getattr_static(mod, "forward")
869 if isinstance(forward_method, types.FunctionType):