nncase/tests/kernels/test_binary_add.cpp

94 lines
3.5 KiB
C++

/* Copyright 2019-2021 Canaan Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "kernel_test.h"
#include <gtest/gtest.h>
#include <iostream>
#include <nncase/kernels/stackvm/tensor_ops.h>
#include <nncase/runtime/datatypes.h>
#include <nncase/runtime/runtime_tensor.h>
#include <nncase/runtime/simple_types.h>
#include <nncase/runtime/stackvm/opcode.h>
#include <ortki/operators.h>
using namespace nncase;
using namespace nncase::runtime;
using namespace ortki;
class BinaryTest : public KernelTest,
public ::testing::TestWithParam<
std::tuple<nncase::typecode_t, dims_t, dims_t>> {
public:
void SetUp() override {
auto &&[typecode, l_shape, r_shape] = GetParam();
lhs = hrt::create(typecode, l_shape, host_runtime_tensor::pool_cpu_only)
.expect("create tensor failed");
init_tensor(lhs);
rhs = hrt::create(typecode, r_shape, host_runtime_tensor::pool_cpu_only)
.expect("create tensor failed");
init_tensor(rhs);
}
void TearDown() override {}
protected:
runtime_tensor lhs;
runtime_tensor rhs;
};
INSTANTIATE_TEST_SUITE_P(
Binary, BinaryTest,
testing::Combine(testing::Values(dt_float32, dt_int32, dt_int64),
testing::Values(dims_t{1, 3, 16, 16}, dims_t{3, 16, 16},
dims_t{3, 16, 1}, dims_t{16, 16},
dims_t{16, 1}, dims_t{1, 16, 1},
dims_t{16}, dims_t{1}, dims_t{}),
testing::Values(dims_t{1, 3, 16, 16}, dims_t{3, 16, 1},
dims_t{3, 16, 1}, dims_t{16, 16},
dims_t{1, 16, 1}, dims_t{16, 1},
dims_t{16}, dims_t{1}, dims_t{})));
TEST_P(BinaryTest, add) {
auto l_ort = runtime_tensor_2_ort_tensor(lhs);
auto r_ort = runtime_tensor_2_ort_tensor(rhs);
// expected
auto output_ort = ortki_Add(l_ort, r_ort);
size_t size = 0;
void *ptr_ort = tensor_buffer(output_ort, &size);
dims_t shape(tensor_rank(output_ort));
tensor_shape(output_ort, reinterpret_cast<int64_t *>(shape.data()));
auto expected = hrt::create(lhs.datatype(), shape,
{reinterpret_cast<gsl::byte *>(ptr_ort), size},
true, host_runtime_tensor::pool_cpu_only)
.expect("create tensor failed");
// actual
auto output =
kernels::stackvm::binary(nncase::runtime::stackvm::binary_op_t::add,
lhs.impl(), rhs.impl())
.expect("binary failed");
runtime_tensor actual(output.as<tensor>().expect("as tensor failed"));
// compare
EXPECT_TRUE(is_same_tensor(expected, actual) ||
cosine_similarity_tensor(expected, actual));
}
int main(int argc, char *argv[]) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}