Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for pass2 (0.05 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Computes and applies all necessary control dependencies based on side effect analysis._
    
    This pass is intended to run after the split_into_island_per_op
    pass. That pass splits up multi-op islands into multiple individual islands
    wrapping a single op without applying any control deps between the new
    islands. So, this pass is needed in order to make preservation of the
    semantic ordering relationships between ops as determined by side effect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                             /*successors=*/false);
    
      // Locate which variable inputs are part of the forwards pass. These will
      // also be used in the backwards pass. We need to create a 'private' copy
      // of the TpuReplicatedInput for for the fowards pass if there are users
      // outside the pass. Note that in the case of the backwards pass existing
      // this will be the case.
      // This means that when we have put all out sections together some resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * version.
       *
       * @throws UnsupportedOperationException always
       * @deprecated <b>Pass a key of type {@code Comparable} to use {@link
       *     ImmutableSortedMap#of(Comparable, Object)}.</b>
       */
      @DoNotCall("Pass a key of type Comparable")
      @Deprecated
      public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) {
        throw new UnsupportedOperationException();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * version.
       *
       * @throws UnsupportedOperationException always
       * @deprecated <b>Pass a key of type {@code Comparable} to use {@link
       *     ImmutableSortedMap#of(Comparable, Object)}.</b>
       */
      @DoNotCall("Pass a key of type Comparable")
      @Deprecated
      public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) {
        throw new UnsupportedOperationException();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    	// Copy from a source of v, register preferred.
    	v := e.s.orig[vid]
    	var c *Value
    	var src Location
    	if e.s.f.pass.debug > regDebug {
    		fmt.Printf("moving v%d to %s\n", vid, loc)
    		fmt.Printf("sources of v%d:", vid)
    	}
    	for _, w := range e.cache[vid] {
    		h := e.s.f.getHome(w.ID)
    		if e.s.f.pass.debug > regDebug {
    			fmt.Printf(" %s:%s", h, w)
    		}
    		_, isreg := h.(*Register)
    		if src == nil || isreg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    		if val < old.min || val > old.max || uint64(val) < old.umin || uint64(val) > old.umax {
    			ft.unsat = true
    			if b.Func.pass.debug > 2 {
    				b.Func.Warnl(b.Pos, "block=%s outedge=%d %s=%d unsat", b, idx, c, val)
    			}
    		} else {
    			ft.limits[c.ID] = limit{val, val, uint64(val), uint64(val)}
    			if b.Func.pass.debug > 2 {
    				b.Func.Warnl(b.Pos, "block=%s outedge=%d %s=%d", b, idx, c, val)
    			}
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      // Check illegal ops in a TFLite pipeline (e.g. trainning only ops) , since
      // PrepareTFPass is the very first TFLite pass in the pipeline.
      // TODO(jingpu): It might be better to split this check into its own pass
      // to make things more modular.
      if (failed(ValidateOp(func))) {
        func.emitError() << "tfl-prepare-tf pass failed.";
        signalPassFailure();
        return;
      }
    
      if (failed(ConvertTf2XlaOps(func, ctx))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

        tf_device.return %3 : tensor<*xi32>
      }) {cluster_attr = "cluster_attr"} : () -> tensor<*xi32>
    
      // CHECK: return %[[CLUSTER_RES]]
      return %0 : tensor<*xi32>
    }
    
    // -----
    
    // Tests that pass lifts resource reads/writes from a loop, and removed unused
    // resources.
    
    // CHECK-LABEL: func @cluster_with_loop
    func.func @cluster_with_loop() -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    #include "mlir/IR/UseDefLists.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    #include "mlir/IR/OperationSupport.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top