Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for boop (0.19 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      }
    
      return absl::OkStatus();
    }
    
    // Rewrites loop cond to add a node which sends loop cond to host.
    TF_ATTRIBUTE_NOINLINE Status AddSendLoopPredToLoopCond(
        const string& cond_xla_func_name, const string& host_transfer_key,
        NameAttrList* loop_cond_func, FunctionLibraryDefinition* fld,
        Node* while_node) {
      // Instantiate the loop cond function.
      std::unique_ptr<FunctionBody> fbody;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
      let constructor = "TF::CreateRemoveUnusedWhileResultsPass()";
    }
    
    def HoistLoopInvariantPass : Pass<"tf-hoist-loop-invariant", "mlir::func::FuncOp"> {
      let summary = "Hoists loop invariant ops to the outside of the loop";
       let description = [{
          Hoists loop invariant to the outside of the loop. The pass is similar to
          LoopInvariantCodeMotion pass, but it also hoists ReadVariableOps,
          if the variable is read only.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    		assert.NotNil(t, fp.ipsetList["KUBE-LOOP-BACK"])
    
    		activeEntries1 := fp.ipsetList["KUBE-LOOP-BACK"].activeEntries
    
    		if tc.expectLocalEntries {
    			assert.Equal(t, 1, activeEntries1.Len(), "Expected 1 active entry in KUBE-LOOP-BACK")
    		} else {
    			assert.Equal(t, 0, activeEntries1.Len(), "Expected no active entry in KUBE-LOOP-BACK")
    		}
    
    		if tc.expectVirtualServer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	kernelMemcgNotification bool,
    	experimentalNodeAllocatableIgnoreEvictionThreshold bool,
    	minimumGCAge metav1.Duration,
    	maxPerPodContainerCount int32,
    	maxContainerCount int32,
    	registerSchedulable bool,
    	nodeLabels map[string]string,
    	nodeStatusMaxImages int32,
    	seccompDefault bool,
    ) (*Kubelet, error) {
    	ctx := context.Background()
    	logger := klog.TODO()
    
    	if rootDirectory == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    		{new(float64), [...]bool{false, false, false, false}},
    		{new(complex64), [...]bool{false, false, false, false}},
    		{new([5]int), [...]bool{false, false, false, false}},
    		{new(integer), [...]bool{false, false, false, false}},
    		{new(map[int]int), [...]bool{false, false, false, false}},
    		{new(chan<- int), [...]bool{false, false, false, false}},
    		{new(func(a int8)), [...]bool{false, false, false, false}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func gt_1_uint32(x uint32) bool          { return x > 1 }
    func ge_1_uint32(x uint32) bool          { return x >= 1 }
    func eq_1_uint32(x uint32) bool          { return x == 1 }
    func ne_1_uint32(x uint32) bool          { return x != 1 }
    func lt_126_uint32(x uint32) bool        { return x < 126 }
    func le_126_uint32(x uint32) bool        { return x <= 126 }
    func gt_126_uint32(x uint32) bool        { return x > 126 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // the called function and propagating the return type.
      bool InferShapeForCall(CallOpInterface call_op);
    
      bool InferShapeForCast(Operation* op);
    
      bool InferShapeForRestore(Operation* op);
    
      // Infers the shape IfOp outputs based on the shapes of the then and else
      // function result types.
      bool InferShapeForIf(IfOp op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    		{
    			name:            "timeout after third loop",
    			beforeMarkReady: 9,
    			beforeNextReady: 9,
    			beforeTimeout:   2,
    			wantCalls:       3,
    		},
    		{
    			name:            "already ready on third loop",
    			beforeMarkReady: 9,
    			beforeNextReady: 1,
    			beforeTimeout:   9,
    			wantCalls:       2,
    		},
    		{
    			name:            "turns ready on third loop",
    			beforeMarkReady: 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteWasm.go

    }
    func rewriteValueWasm_OpIsNonNil(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (IsNonNil p)
    	// result: (I64Eqz (I64Eqz p))
    	for {
    		p := v_0
    		v.reset(OpWasmI64Eqz)
    		v0 := b.NewValue0(v.Pos, OpWasmI64Eqz, typ.Bool)
    		v0.AddArg(p)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueWasm_OpLeq16(v *Value) bool {
    	v_1 := v.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		s = s[:max]
    	}
    	return s
    }
    
    // The printState type holds information needed to print an AST.
    type printState struct {
    	tparams         bool // whether to print template parameters
    	enclosingParams bool // whether to print enclosing parameters
    	llvmStyle       bool
    	max             int // maximum output length
    
    	// The scopes field is used to avoid unnecessary parentheses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top