aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/test/ArmnnDelegateTest.cpp
blob: fdf786ff99c2d027f8706866ba74ecb653279d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include <doctest/doctest.h>

#include <armnn_delegate.hpp>

#include "tensorflow/lite/kernels/builtin_op_kernels.h"
#include <tensorflow/lite/interpreter.h>

namespace armnnDelegate
{

TEST_SUITE("ArmnnDelegate")
{

TEST_CASE ("ArmnnDelegate Registered")
{
    std::unique_ptr<tflite::impl::Interpreter> tfLiteInterpreter;
    tfLiteInterpreter.reset(new tflite::impl::Interpreter);

    // Create the network
    tfLiteInterpreter->AddTensors(3);
    tfLiteInterpreter->SetInputs({0});
    tfLiteInterpreter->SetOutputs({2});

    TfLiteQuantizationParams quantizationParams;
    tfLiteInterpreter->SetTensorParametersReadWrite(0, kTfLiteFloat32, "", {3}, quantizationParams);
    tfLiteInterpreter->SetTensorParametersReadWrite(1, kTfLiteFloat32, "", {3}, quantizationParams);
    tfLiteInterpreter->SetTensorParametersReadWrite(2, kTfLiteFloat32, "", {3}, quantizationParams);
    TfLiteRegistration* nodeRegistration = tflite::ops::builtin::Register_ABS();
    void* data = malloc(sizeof(int));

    tfLiteInterpreter->AddNodeWithParameters({0}, {2}, nullptr, 0, data, nodeRegistration);

    // create the Armnn Delegate
    auto delegateOptions = TfLiteArmnnDelegateOptionsDefault();
    auto delegate = TfLiteArmnnDelegateCreate(delegateOptions);
    auto status = tfLiteInterpreter->ModifyGraphWithDelegate(std::move(delegate));
    CHECK(status == kTfLiteOk);
    CHECK(tfLiteInterpreter != nullptr);

}

}

} // namespace armnnDelegate