54 lines
2.1 KiB
C++
54 lines
2.1 KiB
C++
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
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.
|
|
==============================================================================*/
|
|
|
|
#ifndef TENSORFLOW_COMPILER_XLA_TESTS_CONV_DEPTHWISE_COMMON_H_
|
|
#define TENSORFLOW_COMPILER_XLA_TESTS_CONV_DEPTHWISE_COMMON_H_
|
|
|
|
#include "absl/types/optional.h"
|
|
#include "tensorflow/compiler/xla/client/xla_computation.h"
|
|
#include "tensorflow/compiler/xla/execution_options_util.h"
|
|
#include "tensorflow/compiler/xla/service/bfloat16_normalization.h"
|
|
#include "tensorflow/compiler/xla/service/despecializer.h"
|
|
#include "tensorflow/compiler/xla/status_macros.h"
|
|
#include "tensorflow/compiler/xla/test.h"
|
|
#include "tensorflow/compiler/xla/tests/client_library_test_base.h"
|
|
#include "tensorflow/compiler/xla/tests/hlo_test_base.h"
|
|
#include "tensorflow/compiler/xla/tests/test_macros.h"
|
|
|
|
namespace xla {
|
|
string GetFloatDataType(bool use_bfloat16);
|
|
|
|
struct DepthwiseConvolution2DSpec {
|
|
int64 output_feature = -1, window = -1, stride = -1, pad = -1,
|
|
lhs_dilate = -1;
|
|
std::vector<int64> activation_dims;
|
|
std::vector<int64> activation_layout;
|
|
std::vector<int64> kernel_dims;
|
|
std::vector<int64> kernel_layout;
|
|
std::vector<int64> output_dims;
|
|
std::vector<int64> output_layout;
|
|
};
|
|
|
|
string DepthwiseConvolution2DTestDataToString(
|
|
const ::testing::TestParamInfo<
|
|
::testing::tuple<DepthwiseConvolution2DSpec, bool>>& data);
|
|
|
|
string BuildHloTextDepthwiseConvolution2D(
|
|
const DepthwiseConvolution2DSpec& spec, bool use_bfloat16,
|
|
bool is_scheduled = false);
|
|
|
|
} // namespace xla
|
|
#endif // TENSORFLOW_COMPILER_XLA_TESTS_CONV_DEPTHWISE_COMMON_H_
|