Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MapDataset (0.15 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK: tf_mlrt.executeop{{.*}}op: \22MapDataset\22
      // CHECK-SAME: \22__inference_Dataset_map_lambda_16\22
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // MapDatasetOp's relationship with its associated function is as
      // follows: first M function params are dictated by the set
      // output shapes and types, the next N are the last Ninputs from MapDataset
      // op. The MapDataset op always has N+1 inputs.
      // TODO(jpienaar): Avoid this lookup.
      auto module = op->getParentOfType<ModuleOp>();
      auto f = module.lookupSymbol<func::FuncOp>(op.getF());
    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/tensorflow/tests/shape_inference.mlir

        // For this test case the first 12 inputs to the function f below will be
        // from ParallelMapDataset, while the remaining one is a captured input.
        %75 = "tf.MapDataset"(%74, %arg3) {
          device = "/job:localhost/replica:0/task:0/device:CPU:0",
          f = @__inference_Dataset_map_lambda_96150,
          f._tf_data_function = true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_FlatMapDatasetOp : TF_Op<"FlatMapDataset", [Pure]> {
      let summary = [{
    Creates a dataset that applies `f` to the outputs of `input_dataset`.
      }];
    
      let description = [{
    Unlike MapDataset, the `f` in FlatMapDataset is expected to return a
    Dataset variant, and FlatMapDataset will flatten successive results
    into a single Dataset.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top