Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for PROMOTED (0.14 sec)

  1. src/sync/map.go

    			// of the operation. The entry will eventually be expunged when the
    			// dirty map is promoted to the read map.
    			//
    			// Regardless of whether the entry was present, record a miss: this key
    			// will take the slow path until the dirty map is promoted to the read
    			// map.
    			m.missLocked()
    		}
    		m.mu.Unlock()
    	}
    	for ok {
    		p := e.p.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

      // Collect new return values for variable writes and either (a) output-only
      // resource attributes (if the resource is not promoted to an argument) or (b)
      // mapping from resource input index to output alias (if the resource has been
      // promoted to an argument). Resource arguments that were originally
      // `tf.VarHandleOp` but not read are collected and then removed.
      OpBuilder builder(return_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    			// "Normal" not inlined case: hairy val sufficiently high
    			// and scoring didn't lower it.
    		case hairyval > bud && score <= bud:
    			// Promoted: we would not have inlined it before, but
    			// after score adjustment we decided to inline.
    			st = "PROMOTED"
    			expinl = true
    		case hairyval <= bud && score > bud:
    			// Demoted: we would have inlined it before, but after
    			// score adjustment we decided not to inline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/unfuse_mhlo_batch_norm.mlir

            tensor<?xf32>) -> tensor<?x?x?x?xf32>
      func.return %0 : tensor<?x?x?x?xf32>
    }
    
    // CHECK-LABEL: @batchNormInference_f64
    // Validate that epsilon is properly promoted to f64
    // CHECK-DAG: %[[EPS:.+]] = mhlo.constant dense<1.000000e+00> : tensor<256xf64>
    func.func @batchNormInference_f64(
        %x: tensor<4x256xf64>, %scale: tensor<256xf64>, %offset: tensor<256xf64>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/etcd/etcd.go

    func (c *Client) MemberPromote(learnerID uint64) error {
    	isLearner, err := c.isLearner(learnerID)
    	if err != nil {
    		return err
    	}
    	if !isLearner {
    		klog.V(1).Infof("[etcd] Member %s already promoted.", strconv.FormatUint(learnerID, 16))
    		return nil
    	}
    
    	klog.V(1).Infof("[etcd] Promoting a learner as a voting member: %s", strconv.FormatUint(learnerID, 16))
    	cli, err := c.newEtcdClient(c.Endpoints)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/promote_resources_to_args.mlir

      %4 = "tf.Pack"(%0, %3) : (tensor<f32>, tensor<f32>) -> tensor<2xf32>
      func.return %4 : tensor<2xf32>
    }
    
    // -----
    
    // One resource, one read. _is_initialized is false, shouldn't be promoted.
    // CHECK-LABEL: func @main()
    func.func @main() -> tensor<f32> {
      // CHECK: "tf.VarHandleOp"
      %1 = "tf.VarHandleOp"() {container = "", shared_name = "x", _is_initialized = false} : () -> tensor<!tf_type.resource<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/DirectedGraphConnections.java

            orderedNodeConnections.remove(new NodeConnection.Succ<>((N) node));
          }
        }
    
        /*
         * TODO(cpovirk): `return (V) removedValue` once our checker permits that.
         *
         * (We promoted a class of warnings into errors because sometimes they indicate real problems.
         * But now we need to "undo" some instance of spurious errors, as discussed in
         * https://github.com/jspecify/checker-framework/issues/8.)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

            orderedNodeConnections.remove(new NodeConnection.Succ<>((N) node));
          }
        }
    
        /*
         * TODO(cpovirk): `return (V) removedValue` once our checker permits that.
         *
         * (We promoted a class of warnings into errors because sometimes they indicate real problems.
         * But now we need to "undo" some instance of spurious errors, as discussed in
         * https://github.com/jspecify/checker-framework/issues/8.)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. src/sync/map_bench_test.go

    			for ; pb.Next(); i++ {
    				m.Range(func(_, _ any) bool { return true })
    			}
    		},
    	})
    }
    
    // BenchmarkAdversarialAlloc tests performance when we store a new value
    // immediately whenever the map is promoted to clean and otherwise load a
    // unique, missing key.
    //
    // This forces the Load calls to always acquire the map's mutex.
    func BenchmarkAdversarialAlloc(b *testing.B) {
    	benchMap(b, bench{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    				}
    			}
    		}
    	}
    
    	sort.Sort(byName(fields))
    
    	// Delete all fields that are hidden by the Go rules for embedded fields,
    	// except that fields with JSON tags are promoted.
    
    	// The fields are sorted in primary order of name, secondary order
    	// of field index length. Loop over names; for each name, delete
    	// hidden fields by choosing the one dominant field that survives.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
Back to top