MCPcopy Create free account
hub / github.com/apache/tvm-ffi / Apply

Method Apply

include/tvm/ffi/function_details.h:47–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45struct Arg2Str {
46 template <size_t i>
47 TVM_FFI_INLINE static void Apply(std::ostream& os) {
48 using Arg = std::tuple_element_t<i, ArgType>;
49 if constexpr (i != 0) {
50 os << ", ";
51 }
52 os << i << ": " << Type2Str<Arg>::v();
53 }
54 template <size_t... I>
55 TVM_FFI_INLINE static void Run(std::ostream& os, std::index_sequence<I...>) {
56 using TExpander = int[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected