@Vengineerの戯言 : Twitter
SystemVerilogの世界へようこそ、すべては、SystemC v0.9公開から始まった
TensorFlow Lite Core ML Delegate enables running TensorFlow Lite models on Core ML framework, which results in faster model inference on iOS devices.
サポートするiOSとプロセッサは、
とありますね。
AppleのCoreML APIの中で勝手にNeural Engineが使われているんでしょうね。
Core ML delegate C++ APIもあるようですね。
typedef struct {
// We have dummy for now as we can't have empty struct in C.
char dummy;
} TfLiteCoreMlDelegateOptions;// Return a delegate that uses CoreML for ops execution.
// Must outlive the interpreter.
TfLiteDelegate* TfLiteCoreMlDelegateCreate(
const TfLiteCoreMlDelegateOptions* options);// Do any needed cleanup and delete 'delegate'.
void TfLiteCoreMlDelegateDelete(TfLiteDelegate* delegate);
Neural Engine を使うには、ここに解説がありますね。
freedomtan さんのベンチマーク