Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 204 for dims2 (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.cc

    namespace mlir {
    namespace TF {
    
    // Verifies an reduction op's `input` and reduction `dims`.
    LogicalResult VerifyReductionInputAndDims(Value input, Value dims,
                                              Location loc) {
      auto dims_type = mlir::dyn_cast<RankedTensorType>(dims.getType());
      if (!dims_type) return success();
      if (dims_type.getRank() > 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

        absl::string_view node_shapes_str) {
      std::vector<int> dims;
      for (absl::string_view dim_str : absl::StrSplit(node_shapes_str, ',')) {
        // Treats empty input shape as scalar
        if (dim_str.empty()) continue;
        if (dim_str == "?") {
          dims.push_back(-1);
          continue;
        }
        int size;
        TF_RET_CHECK(absl::SimpleAtoi(dim_str, &size));
        dims.push_back(size);
      }
      return dims;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. cmd/yamlfmt/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    reviewers:
      - bentheelder
      - dims
    approvers:
      - dims
    labels:
      - sig/testing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 17 16:59:26 UTC 2023
    - 162 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/mlir_tflite_runner.cc

    // TODO(jpienaar): Move these functions to some debug utils.
    static std::string TfLiteTensorDimString(const TfLiteTensor& tensor) {
      auto begin = tensor.dims ? tensor.dims->data : nullptr;
      auto end = tensor.dims ? tensor.dims->data + tensor.dims->size : nullptr;
      return absl::StrJoin(begin, end, ", ");
    }
    
    template <typename T>
    static std::string TfLiteTypedTensorString(const TfLiteTensor& tensor) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. tensorflow/c/c_test_util.cc

    }
    
    TF_Tensor* Int8Tensor(const int64_t* dims, int num_dims, const char* values) {
      int64_t num_values = 1;
      for (int i = 0; i < num_dims; ++i) {
        num_values *= dims[i];
      }
      TF_Tensor* t =
          TF_AllocateTensor(TF_INT8, dims, num_dims, sizeof(char) * num_values);
      memcpy(TF_TensorData(t), values, sizeof(char) * num_values);
      return t;
    }
    
    TF_Tensor* Int32Tensor(const int64_t* dims, int num_dims,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/gradients/tape/tape_operation.cc

      if (num_dims < 0) {
        proto.set_unknown_rank(true);
      } else {
        for (int d = 0; d < num_dims; ++d) {
          proto.add_dim()->set_size(dims[d]);
        }
      }
    
      forward_op_.attrs.Set(attr_name, proto);
      return parent_op_->SetAttrShape(attr_name, dims, num_dims);
    }
    Status TapeOperation::SetAttrFunction(const char* attr_name,
                                          const AbstractOperation* value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 06:16:45 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_experimental_test.cc

        int num_dims = output_shapes->items[0].num_dims;
        int64_t* dims = output_shapes->items[0].dims;
    
        if (!expected_shape.has_value()) {
          EXPECT_EQ(num_dims, -1);
          EXPECT_EQ(dims, nullptr);
          return;
        }
    
        EXPECT_EQ(num_dims, expected_shape->size());
        for (size_t i = 0; i < num_dims; ++i) {
          EXPECT_EQ(dims[i], (*expected_shape)[i]);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:27:52 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

        for (int i = 0; i < n; ++i) {
          result.push_back(i + begin);
        }
        return result;
      };
    
      // We only support the mhlo.dot style input layouts, i.e.:
      //   lhs: [batch, other dims, contract dims]
      //   rhs: [batch, contract dims, other dims]
      auto dim_nums = dot.getDotDimensionNumbers();
      int batch_dims_count = dim_nums.getLhsBatchingDimensions().size();
      int contracting_dims_count = dim_nums.getLhsContractingDimensions().size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. tensorflow/c/tf_tensor.h

    // same data buffer.
    //
    // This call requires that the `from` tensor and the given type and shape (dims
    // and num_dims) are "compatible" (i.e. they occupy the same number of bytes).
    // Specifically, given from_type_size = TF_DataTypeSize(TF_TensorType(from)):
    //
    // ShapeElementCount(dims, num_dims) * TF_DataTypeSize(type)
    //
    // must equal
    //
    // TF_TensorElementCount(from) * from_type_size
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 16:40:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. tensorflow/c/eager/unified_api_test.cc

      PartialTensorShape shape;
      TF_RETURN_IF_ERROR(inputs[0]->Shape(&shape));
      if (shape.dims() != 2) {
        return errors::InvalidArgument(
            "Tensor expected to have rank 2 found rank: ", shape.dims());
      }
      int64_t dim_sizes[] = {2, 4};
      for (int i = 0; i < shape.dims(); i++) {
        if (shape.dim_size(i) != dim_sizes[i]) {
          return errors::InvalidArgument("Dim ", i, " expected to be of size ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top