|
- /**
- * \file dnn/test/fallback/split.cpp
- * MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
- *
- * Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- */
- #include "test/fallback/fixture.h"
-
- #include "test/common/checker.h"
-
- namespace megdnn {
- namespace test {
-
- TEST_F(FALLBACK, SPLIT)
- {
- Checker<Split> checker(handle());
- using Param = Split::Param;
- for (size_t axis = 0; axis < 4; ++axis) {
- Param param;
- param.axis = axis;
- TensorShapeArray shapes(5, TensorShape({2, 3, 4, 5}));
- shapes[0].shape[axis] = 10;
- for (size_t i = 1; i < 5; ++i) {
- shapes[i].shape[axis] = i;
- }
- checker.set_param(param).exec(shapes);
- }
- }
-
- } // namespace test
- } // namespace megdnn
-
- // vim: syntax=cpp.doxygen
|