Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for conv2d_backprop_filter (0.43 sec)

  1. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

    *   Second, the rewrite pass will apply transformations to the first
        convolution, the padding before the first convolution, first convolution's
        filters and its Conv2DBackPropFilter;
    *   At last, the rewrite pass will insert SpaceToDepthOp after IteratorGetNext
        where the iterator's result has the same shape as the first convolution's
        input.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K 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)
  4. RELEASE.md

        ([CVE-2021-29536](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29536))
    *   Fixes a division by zero in `Conv2DBackpropFilter`
        ([CVE-2021-29538](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29538))
    *   Fixes a heap buffer overflow in `Conv2DBackpropFilter`
        ([CVE-2021-29540](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29540))
    *   Fixes a heap buffer overflow in `StringNGrams`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        std::vector<int64_t> explicit_paddings;
        if (padding == tensorflow::Padding::EXPLICIT) {
          // EXPLICIT padding mode and the associated attribute is limited to
          // Conv2DBackpropFilter. So, fetch attribute by identifier instead of the
          // op.explicit_paddings() attribute getter.
          ArrayRef<Attribute> explicit_paddings_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        // InferTypeOpInterface:
        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r) {
          return ArraysAreCastCompatible(l, r);
        }
      }];
    }
    
    def TF_Conv2DBackpropFilterOp : TF_Op<"Conv2DBackpropFilter", [Pure, TF_LayoutSensitiveInterface]> {
      let summary = [{
    Computes the gradients of convolution with respect to the filter.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top