Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for conv2d_backprop_filter (0.51 sec)

  1. tensorflow/cc/gradients/nn_grad.cc

                                          .UseCudnnOnGpu(use_cudnn_on_gpu));
      grad_outputs->push_back(dx_1);
      auto dx_2 =
          Conv2DBackpropFilter(scope, op.input(0), Shape(scope, op.input(1)),
                               grad_inputs[0], strides, padding,
                               Conv2DBackpropFilter::DataFormat(data_format)
                                   .UseCudnnOnGpu(use_cudnn_on_gpu));
      grad_outputs->push_back(dx_2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      return builder->create<TF::SliceOp>(input.getLoc(), slice_result_type, input,
                                          start_position, slice_size_op);
    }
    
    // Transforms Conv2DBackPropFilter for space to depth.
    void HandleConv2DBackPropFilter(TF::Conv2DBackpropFilterOp backprop,
                                    ArrayRef<int32_t> old_filter_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_space_to_depth_pass.mlir

        // CHECK: %[[BACKPROP:.*]] = "tf.Conv2DBackpropFilter"
        // CHECK-SAME: strides = [1, 1, 1, 1]
        // CHECK-SAME: (tensor<2x115x115x12xf32>, tensor<4xi32>, tensor<2x112x112x64xf32>) -> tensor<4x4x12x64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 37.4K bytes
    - Viewed (0)
Back to top