MCPcopy Create free account
hub / github.com/apache/arrow / Register

Method Register

cpp/src/gandiva/function_registry.cc:100–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100Status FunctionRegistry::Register(const std::vector<NativeFunction>& funcs,
101 const std::string& bitcode_path) {
102 ARROW_ASSIGN_OR_RAISE(auto llvm_buffer, GetBufferFromFile(bitcode_path));
103 auto buffer = std::make_shared<LLVMMemoryArrowBuffer>(std::move(llvm_buffer));
104 return Register(funcs, std::move(buffer));
105}
106
107arrow::Status FunctionRegistry::Register(const std::vector<NativeFunction>& funcs,
108 std::shared_ptr<arrow::Buffer> bitcode_buffer) {

Calls 7

RegisterFunction · 0.85
emplace_backMethod · 0.80
base_nameMethod · 0.80
AddFunction · 0.50
OKFunction · 0.50
beginMethod · 0.45
valueMethod · 0.45