Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 279 for idioms (0.09 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_test.cc

      */
    
      // Build an abstract input tensor.
      int64_t dims[] = {2, 2};  // Matrices will be 2 x 2
      int num_dims = sizeof(dims) / sizeof(dims[0]);
    
      float vals[] = {0.0f, 0.0f, 0.0f, 0.0f};
      TFE_Context* eager_ctx = TF_ExecutionContextGetTFEContext(ctx, status.get());
      TFE_TensorHandle* t =
          TestMatrixTensorHandleWithInput(eager_ctx, vals, dims, num_dims);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  2. build/OWNERS

    options:
      # make root approval non-recursive
      no_parent_owners: true
    reviewers:
      - bentheelder
      - cblecker
      - cpanato # SIG Technical Lead / RelEng subproject owner / Release Manager
      - dims
      - jeremyrickard # SIG Technical Lead / RelEng subproject owner
      #- justaugustus # SIG Chair / RelEng subproject owner / Release Manager - approvals only
      - liggitt
      - palnabarun # Release Manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 16:43:38 UTC 2023
    - 866 bytes
    - Viewed (0)
  3. src/internal/goos/zgoos_darwin.go

    //go:build !ios && darwin
    
    package goos
    
    const GOOS = `darwin`
    
    const IsAix = 0
    const IsAndroid = 0
    const IsDarwin = 1
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 463 bytes
    - Viewed (0)
  4. src/internal/goos/zgoos_freebsd.go

    //go:build freebsd
    
    package goos
    
    const GOOS = `freebsd`
    
    const IsAix = 0
    const IsAndroid = 0
    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 1
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 0
    const IsWasip1 = 0
    const IsWindows = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 457 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

          for (OpResult per_replica_result : replicated_output->getResults()) {
            auto [partitioned_output, id_ops] =
                GetSingleUserOfType<mlir::TF::TPUPartitionedOutputV2Op>(
                    per_replica_result);
            if (partitioned_output) {
              erase_list.insert(erase_list.end(), id_ops.begin(), id_ops.end());
              partitioned_outputs[cluster_result_id].emplace_back(
                  partitioned_output);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  10. 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)
Back to top