Function tvm_sys::ffi::TVMFuncRegisterGlobal[][src]

pub unsafe extern "C" fn TVMFuncRegisterGlobal(
    name: *const c_char,
    f: TVMFunctionHandle,
    override_: c_int
) -> c_int
Expand description

\brief Register the function to runtime’s global table.

The registered function then can be pulled by the backend by the name.

\param name The name of the function. \param f The function to be registered. \param override Whether allow override already registered function.