Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dataset_ops (0.18 sec)

  1. tensorflow/cc/BUILD

        op_lib_names = [
            "array_ops",
        ],
        pkg = "//tensorflow/core",
    )
    
    tf_gen_op_wrappers_cc(
        name = "dataset_ops",
        api_def_srcs = ["//tensorflow/core/api_def:base_api_def"],
        op_lib_names = [
            "dataset_ops",
            "experimental_dataset_ops",
        ],
        pkg = "//tensorflow/core",
    )
    
    tf_gen_op_wrappers_cc(
        name = "cc_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    from tensorflow.core.framework import tensor_shape_pb2
    from tensorflow.core.framework import types_pb2
    from tensorflow.python.client import session
    from tensorflow.python.data.ops import dataset_ops
    from tensorflow.python.eager import def_function
    from tensorflow.python.framework import dtypes
    from tensorflow.python.framework import ops
    from tensorflow.python.framework import tensor_shape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      ArrayAttr shapes;
      ArrayAttr types;
    };
    
    // Returns the input elements shapes and types for Dataset ops.
    DatasetInput GetDatasetInput(Value value) {
      // TODO(haoliang): add an interface for DatasetOp to avoid the following
      // enumeration.
      // Iteratively tracing upwards if parent op is `IdentityOp` or `IdentityNOp`.
      while (
          llvm::isa_and_nonnull<IdentityOp, IdentityNOp>(value.getDefiningOp())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top