/usr/local/lib64/python3.6/site-packages/torch/include/torch/csrc/jit/runtime
NameSizeModeActions
argument_spec.h168960644editdlrm
autodiff.h39930644editdlrm
calculate_necessary_args.h21000644editdlrm
custom_operator.h10790644editdlrm
exception_message.h6390644editdlrm
graph_executor.h44770644editdlrm
graph_executor_impl.h39020644editdlrm
graph_iterator.h49630644editdlrm
instruction.h38940644editdlrm
interpreter.h50810644editdlrm
jit_exception.h2700644editdlrm
logging.h26180644editdlrm
operator.h90600644editdlrm
operator_options.h1890644editdlrm
print_handler.h3400644editdlrm
profiling_graph_executor_impl.h20360644editdlrm
profiling_record.h89620644editdlrm
register_ops_utils.h437940644editdlrm
script_profile.h25320644editdlrm
slice_indices_adjust.h8210644editdlrm
symbolic_script.h5980644editdlrm
symbolic_shape_registry.h4250644editdlrm
vararg_functions.h10230644editdlrm
variable_tensor_list.h5450644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/torch/include/torch/csrc/jit/runtime/vararg_functions.h (1023B)
#pragma once #include #include #include #include #include namespace torch { namespace jit { void tupleUnpack(Stack& stack); void format(Stack& stack, size_t num_inputs); void einsum(Stack& stack, size_t num_inputs); void percentFormat(Stack& stack, size_t num_inputs); void listUnpack(Stack& stack, size_t num_outputs); void tupleConstruct(Stack& stack, size_t num_inputs); void namedTupleConstruct( Stack& stack, at::TupleTypePtr type, size_t num_inputs); void listConstruct( Stack& stack, const at::ListType& list_type, size_t num_inputs); void dictConstruct(Stack& stack, const at::DictType& type, size_t num_inputs); void createObject(Stack& stack, const at::ClassTypePtr& type); void isinstance(Stack& stack, at::ArrayRef types); void tupleSlice(Stack& stack, size_t begin, size_t end); void dequantize(Stack& stack); } // namespace jit } // namespace torch