* add tests for logical or op * remove redundant overrides * add inputs/outputs tensor check * create type_prop typed test for logical ops * add new line in logical_or.cpp file * refactor logical_and type_prop test * update test labels * beautify or.hpp file * fix formatting to match clang-format * beautifyfunctional test files * move validate_and_infer_elementwise_logical() implementation to validate_and_infer_types() * refactor logial or functional test to * refactor logial aA functional test t * update constants file * add file to instantiate TEST_P and avoid test execution duplication * add missing empty lies at the end of files * remove unused variable
18 lines
364 B
C++
18 lines
364 B
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "logical.hpp"
|
|
|
|
namespace reference_tests {
|
|
namespace LogicalOpsRefTestDefinitions {
|
|
namespace {
|
|
|
|
TEST_P(ReferenceLogicalLayerTest, LogicalWithHardcodedRefs) {
|
|
Exec();
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace LogicalOpsRefTestDefinitions
|
|
} // namespace reference_tests
|