input feature dimension. PiperOrigin-RevId: 332589884 Change-Id: If4a2e0802922829e2d0178b6a888fc56c22b2d04
43 lines
1.8 KiB
C++
43 lines
1.8 KiB
C++
/* Copyright 2020 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_SERVICE_SPMD_CONVOLUTION_HANDLER_H_
|
|
#define TENSORFLOW_COMPILER_XLA_SERVICE_SPMD_CONVOLUTION_HANDLER_H_
|
|
|
|
#include "tensorflow/compiler/xla/service/dot_as_convolution_util.h"
|
|
#include "tensorflow/compiler/xla/service/hlo_computation.h"
|
|
#include "tensorflow/compiler/xla/service/hlo_instruction.h"
|
|
#include "tensorflow/compiler/xla/service/hlo_sharding.h"
|
|
#include "tensorflow/compiler/xla/service/spmd/spmd_partitioner.h"
|
|
|
|
namespace xla {
|
|
namespace spmd {
|
|
|
|
// Partition convolution.
|
|
StatusOr<HloInstruction*> PartitionConvolution(
|
|
PartitionedHlo lhs, PartitionedHlo rhs, const Shape& output_base_shape,
|
|
const HloSharding& output_sharding, const DotConvDimsMapping& dims_mapping,
|
|
const std::function<StatusOr<HloInstruction*>(
|
|
HloInstruction*, HloInstruction*, SpmdBuilder*,
|
|
const Window& conv_window)>& create_sharded_conv,
|
|
const Window& conv_window, HloInstruction* original_hlo,
|
|
int64 num_partitions, const SpmdPartitionerOptions& options,
|
|
HloInstruction* partition_id, HloModule* module, SpmdBuilder* b);
|
|
|
|
} // namespace spmd
|
|
} // namespace xla
|
|
|
|
#endif // TENSORFLOW_COMPILER_XLA_SERVICE_SPMD_CONVOLUTION_HANDLER_H_
|