Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for moveWB (0.13 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	// If a move request has been received, move it to the BackoffQ, otherwise move
    	// it to unschedulablePods.
    	for plugin := range rejectorPlugins {
    		metrics.UnschedulableReason(plugin, pInfo.Pod.Spec.SchedulerName).Inc()
    	}
    	if p.moveRequestCycle >= podSchedulingCycle || len(rejectorPlugins) == 0 {
    		// Two cases to move a Pod to the active/backoff queue:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        for (Operation* user : op->getUsers()) {
          // We skip any operations that are in the same outside compilation
          // cluster that will be moved to the host at the same time since both
          // defining op and user op will be moved to host.
          if (cluster_ops.count(user)) {
            continue;
          }
          // This is pessimistic and in some cases will add extra communication.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		// number of moves are generated based on the
    		// size.
    		// When moving >= 64 bytes a loop is used
    		//	MOVD len/32,REG_TMP
    		//	MOVD REG_TMP,CTR
    		//	MOVD $16,REG_TMP
    		// top:
    		//	LXVD2X (R0)(R21),VS32
    		//	LXVD2X (R31)(R21),VS33
    		//	ADD $32,R21
    		//	STXVD2X VS32,(R0)(R20)
    		//	STXVD2X VS33,(R31)(R20)
    		//	ADD $32,R20
    		//	BC 16,0,top
    		// Bytes not moved by this loop are moved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        def ReorderElementwiseAndMoveOperations#ValueOp#MoveOp : Pat<
          (ValueOp:$value (MoveOp:$move $input, $move_def)),
          (MoveOp (ValueOp $input), $move_def),
          [(SameElementType $input, $value), (HasOneUse $move)]>;
      }
    }
    
    // Returns truncated shape of a ranked-tensor.
    // Prefix-Truncated, here, means eliminating any contiguous 1s' in the lower
    // dimentions of the tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      @JvmName("-deprecated_dispatcher")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "dispatcher"),
        level = DeprecationLevel.ERROR,
      )
      fun dispatcher(): Dispatcher = dispatcher
    
      @JvmName("-deprecated_connectionPool")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "connectionPool"),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        }
      }
    
      @JvmName("-deprecated_url")
      @Deprecated(
        message = "moved to toUrl()",
        replaceWith = ReplaceWith(expression = "toUrl()"),
        level = DeprecationLevel.ERROR,
      )
      fun url(): URL = toUrl()
    
      @JvmName("-deprecated_uri")
      @Deprecated(
        message = "moved to toUri()",
        replaceWith = ReplaceWith(expression = "toUri()"),
        level = DeprecationLevel.ERROR,
      )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBZload src mem) mem)
    (Move [2] dst src mem) =>
            (MOVHstore dst (MOVHZload src mem) mem)
    (Move [4] dst src mem) =>
    	(MOVWstore dst (MOVWZload src mem) mem)
    // MOVD for load and store must have offsets that are multiple of 4
    (Move [8] {t} dst src mem) =>
    	(MOVDstore dst (MOVDload src mem) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // isInlinableMemmove reports whether the given arch performs a Move of the given size
    // faster than memmove. It will only return true if replacing the memmove with a Move is
    // safe, either because Move will do all of its loads before any of its stores, or
    // because the arguments are known to be disjoint.
    // This is used as a check for replacing memmove with Move ops.
    func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FMOVDgpfp", argLength: 1, reg: gpfp, asm: "FMOVD"}, // move int64 to float64 (no conversion)
    		{name: "FMOVDfpgp", argLength: 1, reg: fpgp, asm: "FMOVD"}, // move float64 to int64 (no conversion)
    		{name: "FMOVSgpfp", argLength: 1, reg: gpfp, asm: "FMOVS"}, // move 32bits from int to float reg (no conversion)
    		{name: "FMOVSfpgp", argLength: 1, reg: fpgp, asm: "FMOVS"}, // move 32bits from float to int reg, zero extend (no conversion)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

        "tf.E"(%2) : (tensor<i32>) -> ()
        tf_device.return
      }) {cluster_attr = "cluster_attr"} : () -> ()
      func.return
    }
    
    // Checks that results from first IfRegion are moved after merged IfRegion op as needed.
    
    // CHECK-LABEL: func @same_predicate_results_moved
    func.func @same_predicate_results_moved(%arg0: tensor<!tf_type.resource<tensor<f32>>>) {
      // CHECK:      tf_device.cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
Back to top