Home
last modified time | relevance | path

Searched refs:ReduceWindow (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dlrn_ops.cc54 auto reduce = xla::ReduceWindow( in Compile()
141 auto reduce = xla::ReduceWindow( in Compile()
158 auto dy_reduce = xla::ReduceWindow( in Compile()
Dpooling_ops.cc675 xla::ReduceWindow(xla::BitcastConvertType(in_hi_bp_hi, xla::F32), in Compile()
678 xla::ReduceWindow(xla::BitcastConvertType(in_hi_bp_lo, xla::F32), in Compile()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dpooling.cc66 ReduceWindow(padded_ones, zero, CreateScalarAddComputation(dtype, b), in AvgPoolDivideByCountWithGeneralPadding()
83 return ReduceWindow(operand, init_value, add_computation, kernel_size, in ComputeSums()
143 return ReduceWindow(operand, init_value, max_computation, kernel_size, in MaxPool()
276 ReduceWindow(padded_gradients, Zero(b, dtype), in AvgPoolGrad()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dreduce_window_test.cc76 ReduceWindow(input, init, in ReduceWindowAdd()
87 ReduceWindow(input, init, in ReduceWindowMax()
98 ReduceWindow(input, init, in ReduceWindowMin()
112 ReduceWindow(input, init_value, in XLA_TEST_P()
128 ReduceWindow(input, init, CreateScalarAddComputation(FloatType(), &builder_), in XLA_TEST_P()
340 ReduceWindow( in XLA_TEST_P()
1081 ReduceWindow(/*operand=*/parameter, in XLA_TEST_P()
Dcpu_gpu_fusion_test.cc643 XLA_TEST_F(CpuGpuFusionTest, DISABLED_ON_CPU(ReduceWindow)) { in XLA_TEST_F() argument
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_cost_analysis_test.cc472 TEST_F(HloCostAnalysisTest, ReduceWindow) { in TEST_F() argument
476 ReduceWindow(input, ConstantR0<float>(&builder, 0), add_, {4, 5}, {4, 5}, in TEST_F()
511 ReduceWindow({input1, input2}, {init, init}, compute_tuple, {4, 5}, {4, 5}, in TEST_F()
Dhlo_matchers.h295 HLO_MATCHER(ReduceWindow);
Dalgebraic_simplifier_test.cc1855 GmockMatch(m::ReduceWindow(m::Parameter(0), m::Constant()))); in TEST_F()
1898 GmockMatch(m::ReduceWindow(m::Parameter(0), m::Constant()))); in TEST_F()
1928 GmockMatch(m::ReduceWindow(m::Parameter(0), m::Parameter(0), in TEST_F()
4868 GmockMatch(m::ReduceWindow(m::Parameter(0), m::Constant()))); in TEST_F()
4906 EXPECT_THAT(root, GmockMatch(m::ReduceWindow(m::Convert(m::Parameter(0)), in TEST_F()
5778 GmockMatch(m::ReduceWindow(m::Op(), m::Op().Is(zero)))); in TEST_P()
8093 m::ReduceWindow(m::Parameter(0), m::ConstantScalar(0))))); in TEST_F()
Dhlo.proto133 // broadcasting, including Reshape, Reduce, ReduceWindow, and Reverse.
Dpattern_matcher.h2347 XLA_VARIADIC_OP_PATTERN(ReduceWindow)
Dhlo_parser_test.cc480 "ReduceWindow", in CreateTestCases()
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.h714 XlaOp ReduceWindow(XlaOp operand, XlaOp init_value,
719 XlaOp ReduceWindow(absl::Span<const XlaOp> operands,
1334 friend XlaOp ReduceWindow(XlaOp operand, XlaOp init_value,
1339 friend XlaOp ReduceWindow(absl::Span<const XlaOp> operands,
2290 XlaOp ReduceWindow(XlaOp operand, XlaOp init_value,
2295 XlaOp ReduceWindow(absl::Span<const XlaOp> operands,
Dxla_builder.cc2642 XlaOp XlaBuilder::ReduceWindow(XlaOp operand, XlaOp init_value, in ReduceWindow() function in xla::XlaBuilder
2647 return ReduceWindow(absl::MakeSpan(&operand, 1), in ReduceWindow()
2652 XlaOp XlaBuilder::ReduceWindow(absl::Span<const XlaOp> operands, in ReduceWindow() function in xla::XlaBuilder
4605 XlaOp ReduceWindow(const XlaOp operand, const XlaOp init_value, in ReduceWindow() function
4609 return operand.builder()->ReduceWindow(operand, init_value, computation, in ReduceWindow()
4614 XlaOp ReduceWindow(absl::Span<const XlaOp> operands, in ReduceWindow() function
4620 return operands[0].builder()->ReduceWindow(operands, init_values, computation, in ReduceWindow()
Dxla_builder_test.cc985 ReduceWindow(gte, init, sum, /*window_dimensions=*/{1, 2, 4}, in TEST_F()
1021 ReduceWindow(input_operands, {init, init}, sum, in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Doperation_semantics.md2196 ## ReduceWindow section in Operation Semantics
2199 [`XlaBuilder::ReduceWindow`](https://www.tensorflow.org/code/tensorflow/compiler/xla/client/xla_bui…
2205 `ReduceWindow`. Similar to [`Reduce`](#reduce), the applied `computation` is
2208 <b> `ReduceWindow(operands..., init_values..., computation, window_dimensions,
2252 Below code and figure shows an example of using `ReduceWindow`. Input is a
2267 // Create a ReduceWindow computation with the max reduction computation.
2271 builder.ReduceWindow(
2696 `ReduceWindow` on the `operand` array to select an element from each window, and
2719 array must have the same shape as the result of applying a `ReduceWindow`
/external/tensorflow/tensorflow/compiler/xla/service/spmd/
Dspmd_partitioner_test.cc866 op::ReduceWindow( in TEST_F()
912 op::ReduceWindow(masked, op::Constant()))); in TEST_F()
948 op::ReduceWindow(masked, op::Constant()))); in TEST_F()
991 op::ReduceWindow(masked, op::Constant()))); in TEST_F()
1037 op::ReduceWindow(masked, op::Constant()))); in TEST_F()
1104 op::ReduceWindow(dim1_resharded, op::Constant()))); in TEST_F()
3303 op::ReduceWindow(masked, op::Constant())); in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/
Dxla_data.proto482 // zeros. ReduceWindow and SelectAndScatter pads with the reduce function's
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/include/mlir-hlo/Dialect/lhlo/IR/
Dlhlo_ops.td547 let summary = "ReduceWindow operator";
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/stablehlo/dialect/
DStablehloOps.td2145 let summary = "ReduceWindow operator";
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/include/mlir-hlo/Dialect/mhlo/IR/
Dhlo_ops.td2362 let summary = "ReduceWindow operator";
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_generated_ops.td20316 let summary = "Wraps the XLA ReduceWindow operator, documented at";