Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Assigned (0.28 sec)

  1. src/reflect/value.go

    	return ret
    }
    
    // These conversion functions are returned by convertOp
    // for classes of conversions. For example, the first function, cvtInt,
    // takes any value v of signed int type and returns the value converted
    // to type t, where t is any signed or unsigned int type.
    
    // convertOp: intXX -> [u]intXX
    func cvtInt(v Value, t Type) Value {
    	return makeInt(v.flag.ro(), uint64(v.Int()), t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.ebss", 0), sect)
    	bssGcEnd := state.datsize - int64(sect.Vaddr)
    
    	// Emit gcdata for bss symbols now that symbol values have been assigned.
    	gcsToEmit := []struct {
    		symName string
    		symKind sym.SymKind
    		gcEnd   int64
    	}{
    		{"runtime.gcdata", sym.SDATA, dataGcEnd},
    		{"runtime.gcbss", sym.SBSS, bssGcEnd},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *NodeConfigStatus) DeepCopyInto(out *NodeConfigStatus) {
    	*out = *in
    	if in.Assigned != nil {
    		in, out := &in.Assigned, &out.Assigned
    		*out = new(NodeConfigSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Active != nil {
    		in, out := &in.Active, &out.Active
    		*out = new(NodeConfigSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *NodeConfigStatus) DeepCopyInto(out *NodeConfigStatus) {
    	*out = *in
    	if in.Assigned != nil {
    		in, out := &in.Assigned, &out.Assigned
    		*out = new(NodeConfigSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Active != nil {
    		in, out := &in.Active, &out.Active
    		*out = new(NodeConfigSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // All concat operands must be defined by the op of same kind, except for a
      // minor portion which we track in `exceptions`.
      // Map from the operands to operand indices.
      llvm::SmallDenseMap<Value, unsigned, 4> exceptions;
      unsigned operand_idx = 0;
      for (Value arg : op.getValues()) {
        Operation* arg_op = arg.getDefiningOp();
        if (arg_op && arg_op->getName() == first_arg_op->getName()) {
          ++operand_idx;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    ValuePort ComputeInputComponentFor(PackOp op, ArrayRef<unsigned int> port) {
      auto type = mlir::cast<TensorType>(op.getType());
      if (!type.hasRank() || type.getRank() != 1) return {};
      if (port.size() != 2) return {};
      assert(port[0] == 0);
      return ValuePort(op.getOperand(port[1]));
    }
    
    ValuePort ComputeInputComponentFor(ConcatV2Op op, ArrayRef<unsigned int> port) {
      if (port.size() != 2) return {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    template <class T>
    constexpr bool IsSet(const T &val, unsigned index) {
      return (val & (1 << index)) != 0;
    }
    
    // Sets the `index` bit of `val`.
    template <class T>
    constexpr void Set(T &val, unsigned index) {
      val |= (1 << index);
    }
    
    // Unset the `index` bit of `val`.
    template <class T>
    constexpr void Unset(T &val, unsigned index) {
      val &= ~(1 << index);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Mul8  <t> n (Const8  [c])) && t.IsSigned() && isPowerOfTwo8(-c)  => (Neg8  (Lsh8x64  <t> n (Const64 <typ.UInt64> [log8(-c)])))
    (Mul16 <t> n (Const16 [c])) && t.IsSigned() && isPowerOfTwo16(-c) => (Neg16 (Lsh16x64 <t> n (Const64 <typ.UInt64> [log16(-c)])))
    (Mul32 <t> n (Const32 [c])) && t.IsSigned() && isPowerOfTwo32(-c) => (Neg32 (Lsh32x64 <t> n (Const64 <typ.UInt64> [log32(-c)])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TF::CreateUnrollBatchMatMulPassPass()";
    }
    
    def ClusterFormationPass : Pass<"tf-device-cluster-formation", "mlir::ModuleOp"> {
      let summary = "Form clusters from instructions assigned to same device";
      let constructor = "TFDevice::CreateClusterFormationPass()";
      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field xml.transient="true">
              <name>mergeId</name>
              <version>4.0.0+</version>
              <description>
                FOR INTERNAL USE ONLY. This is a unique identifier assigned to each
                resource to allow Maven to merge changes to this resource that take
                place during the execution of a plugin. This field must be managed
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top