Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for dataKey (0.17 sec)

  1. tensorflow/c/c_api_experimental.cc

        return {};
      }
      const auto& fdef_lib = gdef.library();
      if (fdef_lib.gradient_size() > 0) {
        status->status = tensorflow::errors::Internal(
            "GradientDef is not supported in reading Dataset related functions: ",
            text_proto);
        return {};
      }
      std::vector<UniqueFuncPtr> ret;
      for (const FunctionDef& fdef : fdef_lib.function()) {
        // Make a copy so that we can mutate it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Performs specific fusion for GPU targets.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateGpuOpFusionPass();
    
    // Creates a pass that decomposes to be compiled ReduceDataset ops into a while
    // loop that iterates the dataset and calls the reduction function.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDecomposeReduceDatasetPass();
    
    // Create a pass that convert ops that copy tensors between devices, e.g.
    // tf.Identity.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_4x.md

     *  Fix: Recover gracefully when a cache entry's certificate is corrupted.
    
     *  Fix: Fail permanently when there's a failure loading the bundled public suffix database.
        This is the dataset that powers `HttpUrl.topPrivateDomain()`.
    
     *  Fix: Immediately update the connection's flow control window instead of waiting for the
        receiving stream to process it.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        RankedTensorType index_ty =
            mlir::dyn_cast<RankedTensorType>(index.getType());
        RankedTensorType data_ty = mlir::dyn_cast<RankedTensorType>(data.getType());
        if (!index_ty || !data_ty) continue;
    
        int64_t index_rank = index_ty.getRank();
        ArrayRef<int64_t> data_shape = data_ty.getShape();
        ArrayRef<int64_t> index_shape = index_ty.getShape();
        if (failed(mlir::verifyCompatibleShape(index_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
      return false;
    }
    
    // Helper structure to capture shapes & types for Dataset input.
    struct DatasetInput {
      explicit operator bool() const { return shapes && types; }
    
      ArrayAttr shapes;
      ArrayAttr types;
    };
    
    // Returns the input elements shapes and types for Dataset ops.
    DatasetInput GetDatasetInput(Value value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          }
        ```
      }];
    }
    
    def DecomposeReduceDatasetPass : Pass<"tf-decompose-reduce-dataset", "mlir::func::FuncOp"> {
      let summary = "Decomposes ReduceDataset op into dataset operations.";
    
      let description = [{
        Decomposes ReduceDataset op into a while loop that iterates the dataset and calls
        into the reduction function.  This decomposition is only done if the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

           ]>,
           SingleBlockImplicitTerminator<"YieldOp">,
           TF_GeneratorOpSideEffect,
          ]> {
      let summary = "Regional version of GeneratorDataset";
    
      let description = [{
    Creates a dataset that invokes its 'next' region to generate elements. Conceptually,
    within MLIR, we treat this op as if it fills a buffer with all the results right away,
    and those results are then passed (through the variant tensor result) to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // pass to merge these together into the earliest copy.
      llvm::SetVector<int64_t> forward_variable_inputs;
    
      // Validate that the only resource inputs that are read by ops in
      // forward_pass_ops are dataset and variable ops.
      int64_t resource_count = 0;
      for (auto argument : loop_body_func.getArguments()) {
        // Check that all resource arguments are either fed to iterator get next
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "datasetName": {
              "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
              "type": "string"
            },
            "datasetUUID": {
              "description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
              "type": "string"
            }
          },
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

    message FlockerVolumeSource {
      // datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker
      // should be considered as deprecated
      // +optional
      optional string datasetName = 1;
    
      // datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset
      // +optional
      optional string datasetUUID = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top