Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for RecvTPUEmbeddingActivations (0.35 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/rewrite_tpu_embedding_ops.mlir

      // CHECK: return %[[RESULT]]
      // CHECK-NOT: tf.RecvTPUEmbeddingActivations
      // CHECK-NOT: tf.SendTPUEmbeddingGradients
    
      %0 = "tf.RecvTPUEmbeddingActivations"() {config = "\0A%\0A\0Dwatches_table\10\F5\03\18\80\02 \01*\0C\1A\00j\05\0D\00\00\80?\88\01\01\10\02\18\80\04 \01(\02"} : () -> tensor<512x256xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_update_embedding_enqueue_op_inputs.mlir

      %2:2 = "tf.RecvTPUEmbeddingActivations"() {_tpu_embedding_layer = "call1", config = "\0A\0B\0C\0D"} : () -> (tensor<2x2xf32>, tensor<4x4xf32>)
      func.return
    }
    
    // -----
    
    // CHECK-LABEL: func @check_enqueue_ops_update_for_training
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf_tpu_embedding_ops.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    func.func @main() {
      tf_executor.graph {
        %0:2 = tf_executor.island wraps "tf.RecvTPUEmbeddingActivations"() {config = "test_config_recv_embedding"} : () -> tensor<512x256xf32> loc("RecvTPUEmbedding")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/extract_head_tail_outside_compilation.mlir

        // CHECK-NEXT:   tf_device.return
    
        // CHECK:      "tf_device.cluster"
        // CHECK-NEXT:   "tf.RecvTPUEmbeddingActivations"
        // CHECK-NEXT:   "tf.SendTPUEmbeddingGradients"
        // CHECK-NEXT:   tf_device.return
        "tf_device.cluster"() ({
          %0 = "tf.RecvTPUEmbeddingActivations"() {config = "test_config_recv_embedding"} : () -> tensor<512x256xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

      auto output_ty =
          RankedTensorType::get({}, VariantType::get(region->getContext()));
      auto dedup_op = builder.create<XlaRecvTPUEmbeddingDeduplicationDataOp>(
          loc, output_ty, config);
    
      // Rewrite RecvTPUEmbeddingActivations op to the corresponding internal op.
      if (recv_op)
        AddOperandAndRewriteAs<XlaRecvTPUEmbeddingActivationsOp>(
            recv_op, dedup_op, recv_op->getAttrs(), &builder);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

    // CHECK-LABEL: func @ignore_embedding_ops
    func.func @ignore_embedding_ops() -> () {
      "tf_device.cluster"() ({
        // CHECK: "tf.RecvTPUEmbeddingActivations"
        // CHECK-NOT: _xla_outside_compilation
        // CHECK: "tf.SendTPUEmbeddingGradients"
        // CHECK-NOT: _xla_outside_compilation
        %2:2 = "tf.RecvTPUEmbeddingActivations"() {_tpu_embedding_layer = "call1", config = "\0A\0B\0C\0D"} : () -> (tensor<2x2xf32>, tensor<4x4xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    results of these aggregations are visible to the Tensorflow Graph as the
    outputs of a RecvTPUEmbeddingActivations op. This op returns a list containing
    one Tensor of activations per table specified in the model. There can be at
    most one RecvTPUEmbeddingActivations op in the TPU graph.
      }];
    
      let arguments = (ins
        StrAttr:$config
      );
    
      let results = (outs
    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