Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TPUReplicatedInputOps (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

        %0 = "tf.Less"(%arg0, %arg0) : (tensor<i32>, tensor<i32>) -> tensor<i1>
        return %0 : tensor<i1>
      }
    }
    
    // -----
    // This test verifies that TPUReplicatedInputOps for resource variable args are packed.
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

          next_use.getOwner()->setOperand(next_use.getOperandNumber(),
                                          private_input.getOutput());
        }
      }
    
      VLOG(2) << "Cloned " << cloned_inputs << " TPUReplicatedInputOps";
    
      // Add TPUReplicatedInput/TPUReplicatedOutput pairs along each edge.
      llvm::SetVector<Operation*> new_forward_ops;
      for (Operation* op : forward_pass_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

            private_input.getOutput(), [&](OpOperand& use) {
              return forward_pass_ops.contains(use.getOwner());
            });
      }
    
      VLOG(3) << "Cloned " << cloned_inputs << " TPUReplicatedInputOps";
    
      // Add TPUReplicatedInput/TPUReplicatedOutput pairs along each edge.
      llvm::SetVector<Operation*> new_forward_ops;
      for (Operation* op : forward_pass_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top