blob: 9782167501063dffe8991acbd42aa769a66694bc [file] [log] [blame]
mathad01b392e982021-04-07 12:07:30 +01001//
2// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
mathad01b392e982021-04-07 12:07:30 +01006#include "ParserFlatbuffersFixture.hpp"
mathad01b392e982021-04-07 12:07:30 +01007
mathad01b392e982021-04-07 12:07:30 +01008
Sadik Armagan1625efc2021-06-10 18:24:34 +01009TEST_SUITE("TensorflowLiteParser_Cast")
10{
mathad01b392e982021-04-07 12:07:30 +010011struct CastFixture : public ParserFlatbuffersFixture
12{
13 explicit CastFixture(const std::string& inputShape,
14 const std::string& outputShape,
15 const std::string& inputDataType,
16 const std::string& outputDataType)
17 {
18 m_JsonString = R"(
19 {
20 "version": 3,
21 "operator_codes": [ { "builtin_code": "CAST" } ],
22 "subgraphs": [ {
23 "tensors": [
24 {
25 "shape": )" + inputShape + R"(,
26 "type": )" + inputDataType + R"(,
27 "buffer": 0,
28 "name": "inputTensor",
29 "quantization": {
30 "min": [ 0.0 ],
31 "max": [ 255.0 ],
32 "scale": [ 1.0 ],
33 "zero_point": [ 0 ],
34 }
35 },
36 {
37 "shape": )" + outputShape + R"(,
38 "type": )" + outputDataType + R"(,
39 "buffer": 1,
40 "name": "outputTensor",
41 "quantization": {
42 "min": [ 0.0 ],
43 "max": [ 255.0 ],
44 "scale": [ 1.0 ],
45 "zero_point": [ 0 ],
46 }
47 }
48 ],
49 "inputs": [ 0 ],
50 "outputs": [ 1 ],
51 "operators": [
52 {
53 "opcode_index": 0,
54 "inputs": [ 0 ],
55 "outputs": [ 1 ],
56 "custom_options_format": "FLEXBUFFERS"
57 }
58 ],
59 } ],
60 "buffers" : [ {}, {} ]
61 }
62 )";
63 SetupSingleInputSingleOutput("inputTensor", "outputTensor");
64 }
65};
66
67struct SimpleCastFixture : CastFixture
68{
69 SimpleCastFixture() : CastFixture("[ 1, 6 ]",
70 "[ 1, 6 ]",
71 "INT32",
72 "FLOAT32") {}
73};
74
Sadik Armagan1625efc2021-06-10 18:24:34 +010075TEST_CASE_FIXTURE(SimpleCastFixture, "SimpleCast")
mathad01b392e982021-04-07 12:07:30 +010076{
77RunTest<2, armnn::DataType::Signed32 , armnn::DataType::Float32>(
780,
79{{"inputTensor", { 0, -1, 5, -100, 200, -255 }}},
80{{"outputTensor", { 0.0f, -1.0f, 5.0f, -100.0f, 200.0f, -255.0f }}});
81}
82
Sadik Armagan1625efc2021-06-10 18:24:34 +010083}