forked from alibaba/MNN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShapeTest.cpp
35 lines (34 loc) · 1.05 KB
/
ShapeTest.cpp
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
//
// ShapeTest.cpp
// MNNTests
//
// Created by MNN on 2019/12/26.
// Copyright © 2018, Alibaba Group Holding Limited
//
#include <MNN/expr/Expr.hpp>
#include <MNN/expr/ExprCreator.hpp>
#include "MNNTestSuite.h"
#include "TestUtils.h"
using namespace MNN::Express;
class ShapeTest : public MNNTestCase {
public:
virtual ~ShapeTest() = default;
virtual bool run() {
auto input = _Input({1, 1, 1, 4}, NCHW);
input->setName("input_tensor");
// set input data
const float inpudata[] = {-1.0, -2.0, 3.0, 4.0};
auto inputPtr = input->writeMap<float>();
memcpy(inputPtr, inpudata, 4 * sizeof(float));
input->unMap();
auto output = _Shape(input);
const std::vector<int> expectedOutput = {1, 1, 1, 4};
auto gotOutput = output->readMap<int>();
if (!checkVector<int>(gotOutput, expectedOutput.data(), 4, 0)) {
MNN_ERROR("ShapeTest test failed!\n");
return false;
}
return true;
}
};
MNNTestSuiteRegister(ShapeTest, "op/shape");