Home
last modified time | relevance | path

Searched refs:base_delegate (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/flex/
Ddelegate.cc44 std::unique_ptr<FlexDelegate> base_delegate) { in Create() argument
47 if (base_delegate == nullptr) { in Create()
48 base_delegate.reset(new FlexDelegate()); in Create()
50 auto flex_delegate = TfLiteDelegateFactory::Create(std::move(base_delegate)); in Create()
Ddelegate.h68 std::unique_ptr<FlexDelegate> base_delegate);
/external/tensorflow/tensorflow/lite/delegates/utils/
Dsimple_delegate.cc79 TfLiteDelegate* base_delegate) { in DelegatePrepare() argument
81 reinterpret_cast<SimpleDelegateInterface*>(base_delegate->data_); in DelegatePrepare()
111 BuildTfLiteIntArray(supported_nodes).get(), base_delegate); in DelegatePrepare()