Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for deim (0.3 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // the same because all strides are 1).
          low_padding[dim] =
              conv_grad_spatial_dim.pad_before - orig_padding[dim].first;
          high_padding[dim] =
              conv_grad_spatial_dim.pad_after - orig_padding[dim].second;
    
          // Update `out_grad_shape` to result shape of following `PadOp`.
          out_grad_shape[dim] = low_padding[dim] + high_padding[dim] +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      for (size_t i = 0; i < window_dimensions.size(); i++) {
        auto dim = window.add_dimensions();
        dim->set_size(window_dimensions[i]);
        if (!window_strides.empty()) {
          dim->set_stride(window_strides[i]);
        } else {
          dim->set_stride(1);
        }
        if (!padding.empty()) {
          dim->set_padding_low(padding[i].first);
          dim->set_padding_high(padding[i].second);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        shape.reserve(shape_ref.size());
        for (auto& dim : shape_ref) {
          // translate dynamic shapes from mlir to tfl values
          shape.push_back(
              dim == mlir::ShapedType::kDynamic ? 1 : static_cast<int>(dim));
          shape_signature.push_back(static_cast<int>(
              dim == mlir::ShapedType::kDynamic ? tensorflow::kTFDynamicSize
                                                : dim));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    The conversion can happen partially in subgroups, by specifying the dim
    attribute, where only that dim will be converted.
      }];
    
      let arguments = (ins
        TF_Tensor:$input,
    
        StrAttr:$manual_sharding,
        DefaultValuedOptionalAttr<I64Attr, "-1">:$dim,
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$unspecified_dims
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. RELEASE.md

    * `tf.argmax`: `dimension` becomes `axis` * `tf.argmin`: `dimension` becomes
    `axis` * `tf.count_nonzero`: `reduction_indices` becomes `axis` *
    `tf.expand_dims`: `dim` becomes `axis` * `tf.reduce_all`: `reduction_indices`
    becomes `axis` * `tf.reduce_any`: `reduction_indices` becomes `axis` *
    `tf.reduce_join`: `reduction_indices` becomes `axis` * `tf.reduce_logsumexp`:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     0,
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"versionPriority": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top