Home
last modified time | relevance | path

Searched refs:ReduceWindow (Results 1 – 18 of 18) 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.cc600 xla::ReduceWindow(xla::BitcastConvertType(in_hi_bp_hi, xla::F32), in Compile()
603 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()
142 return ReduceWindow(operand, init_value, max_computation, kernel_size, in MaxPool()
273 ReduceWindow(padded_gradients, Zero(b, dtype), in AvgPoolGrad()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dreduce_window_test.cc78 ReduceWindow(input, init, in ReduceWindowAdd()
89 ReduceWindow(input, init, in ReduceWindowMax()
100 ReduceWindow(input, init, in ReduceWindowMin()
114 ReduceWindow(input, init_value, in TEST_P()
130 ReduceWindow(input, init, CreateScalarAddComputation(FloatType(), &builder_), in TEST_P()
319 ReduceWindow( in XLA_TEST_P()
1040 ReduceWindow(/*operand=*/parameter, in TEST_P()
Dfusion_test.cc647 XLA_TEST_F(FusionTest, DISABLED_ON_CPU(ReduceWindow)) { in XLA_TEST_F() argument
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client_test.py1554 c.ReduceWindow(operand=c.Constant(input_array),
1564 c.ReduceWindow(operand=c.Constant(input_array),
1574 c.ReduceWindow(operand=c.Constant(input_array),
1584 c.ReduceWindow(operand=c.Constant(input_array),
1594 c.ReduceWindow(operand=c.Constant(input_array),
1604 c.ReduceWindow(operand=c.Constant(input_array),
Dxla_client.py1472 def ReduceWindow(self, operand, init_value, computation_to_apply, member in ComputationBuilder
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_cost_analysis_test.cc334 TEST_F(HloCostAnalysisTest, ReduceWindow) { in TEST_F() argument
338 ReduceWindow(input, ConstantR0<float>(&builder, 0), add_, {4, 5}, {4, 5}, in TEST_F()
Dhlo_matchers.h227 HLO_MATCHER(ReduceWindow);
Dhlo.proto72 // broadcasting, including Reshape, Reduce, ReduceWindow, and Reverse.
Dalgebraic_simplifier_test.cc1421 GmockMatch(m::ReduceWindow(m::Parameter(0), m::Constant()))); in TEST_F()
1464 GmockMatch(m::ReduceWindow(m::Parameter(0), m::Constant()))); in TEST_F()
3637 GmockMatch(m::ReduceWindow(m::Op().Is(operand), m::Constant()))); in TEST_F()
3722 EXPECT_THAT(root, GmockMatch(m::ReduceWindow(m::Convert(m::Parameter(0)), in TEST_F()
4280 GmockMatch(m::ReduceWindow(m::Op(), m::Op().Is(zero)))); in TEST_P()
Dhlo_parser_test.cc368 "ReduceWindow", in CreateTestCases()
Dpattern_matcher.h2174 XLA_BINOP_PATTERN(ReduceWindow)
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.h452 XlaOp ReduceWindow(const XlaOp& operand, const XlaOp& init_value,
871 friend XlaOp ReduceWindow(const XlaOp& operand, const XlaOp& init_value,
1548 XlaOp ReduceWindow(const XlaOp& operand, const XlaOp& init_value,
Dxla_builder_test.cc789 ReduceWindow(gte, init, sum, /*window_dimensions=*/{1, 2, 4}, in TEST_F()
Dxla_builder.cc1993 XlaOp XlaBuilder::ReduceWindow(const XlaOp& operand, const XlaOp& init_value, in ReduceWindow() function in xla::XlaBuilder
3210 XlaOp ReduceWindow(const XlaOp& operand, const XlaOp& init_value, in ReduceWindow() function
3214 return operand.builder()->ReduceWindow(operand, init_value, computation, in ReduceWindow()
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Doperation_semantics.md1858 ## ReduceWindow section in Operation Semantics
1861 [`XlaBuilder::ReduceWindow`](https://www.tensorflow.org/code/tensorflow/compiler/xla/client/xla_bui…
1866 pooling layer can be expressed as a `ReduceWindow`. Similar to
1870 <b> `ReduceWindow(operand, init_value, computation, window_dimensions,
1897 Below code and figure shows an example of using `ReduceWindow`. Input is a
1912 // Create a ReduceWindow computation with the max reduction computation.
1916 builder.ReduceWindow(
2273 `ReduceWindow` on the `operand` array to select an element from each window, and
2296 array must have the same shape as the result of applying a `ReduceWindow`
/external/tensorflow/tensorflow/compiler/xla/
Dxla_data.proto399 // zeros. ReduceWindow and SelectAndScatter pads with the reduce function's