Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for assignOp (0.34 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

    // above.
    class Predicate {
     public:
      enum class Kind { kAnd, kOr, kNot, kAndRecurrence, kSymbol, kIntSymbol };
    
      virtual string ToString() const = 0;
    
      // An ID assigned to the Predicate at construction time.  Conceptually like a
      // pointer, except that it is stable across runs.
      int64_t id() const { return id_; }
    
      virtual absl::Span<Predicate* const> GetOperands() const = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	}
    }
    
    // Test listing objects.
    func (t *Tester) TestList(valid runtime.Object, assignFn AssignFunc) {
    	t.testListNotFound(assignFn)
    	t.testListFound(valid.DeepCopyObject(), assignFn)
    	t.testListMatchLabels(valid.DeepCopyObject(), assignFn)
    	t.testListTableConversion(valid.DeepCopyObject(), assignFn)
    }
    
    // Test watching objects.
    func (t *Tester) TestWatch(
    	valid runtime.Object, emitFn EmitFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    while loop body has a control barrier (`%barrier`) at the end which forces
    a dependency and the two assign variable ops must wait for each other to
    complete before starting the next iteration. Transforming these control
    outputs to data outputs removes the dependency between the two assign
    variable ops, thus allowing them to run in parallel across iterations.
    
    Before:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    		if p.tok != token.EOF && p.tok != token.SEMICOLON && p.tok != token.RPAREN {
    			typ = p.tryIdentOrType()
    			if p.tok == token.ASSIGN {
    				p.next()
    				values = p.parseList(true)
    			}
    		}
    	case token.VAR:
    		if p.tok != token.ASSIGN {
    			typ = p.parseType()
    		}
    		if p.tok == token.ASSIGN {
    			p.next()
    			values = p.parseList(true)
    		}
    	default:
    		panic("unreachable")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // If an administrator expects that any of these conditions may become true in
      // the future, they should ensure their meshes have different Mesh IDs
      // assigned.
      //
      // Within a multicluster mesh, each cluster must be (manually or auto)
      // configured to have the same Mesh ID value. If an existing cluster 'joins' a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    		var msg string
    		var reason string
    		if len(internal) != 0 {
    			msg = fmt.Sprintf("Assigned to service(s) %s, but failed to assign to all requested addresses: %s",
    				humanReadableJoin(internal), strings.Join(warnings, "; "))
    		} else {
    			msg = fmt.Sprintf("Failed to assign to any requested addresses: %s", strings.Join(warnings, "; "))
    		}
    		if allUsable {
    			reason = string(k8s.GatewayReasonAddressNotAssigned)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. src/go/printer/testdata/parser.go

    	if p.trace {
    		defer un(trace(p, "ConstSpec"))
    	}
    
    	idents := p.parseIdentList()
    	typ := p.tryType()
    	var values []ast.Expr
    	if typ != nil || p.tok == token.ASSIGN || iota == 0 {
    		p.expect(token.ASSIGN)
    		values = p.parseRhsList()
    	}
    	p.expectSemi() // call before accessing p.linecomment
    
    	// Go spec: The scope of a constant or variable identifier declared inside
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    					break
    				}
    				if !s.values[v.ID].needReg {
    					continue
    				}
    				rp, ok := s.f.getHome(v.ID).(*Register)
    				if !ok {
    					// If v is not assigned a register, pick a register assigned to one of v's inputs.
    					// Hopefully v will get assigned that register later.
    					// If the inputs have allocated register information, add it to desired,
    					// which may reduce spill or copy operations when the register is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    struct ResourceArgUseInfo {
      // Data type of the data contained in the resource.
      Type data_type;
      // Is the resource argument used in an assign op?
      bool updated;
      // Is the resource argument used in a read or assign op?
      bool used;
    };
    
    // Finds the ResourceArgUseInfo for each resource argument. Forwarding to the
    // output (i.e., the argument is an operand of the return op) is not considered
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def visit_Attribute(self, node):
        node_type = self._get_inferred_type(node, None)
        if isinstance(node.value, ast.Name):
          if node.value.id == 'ag__':
            # some variables are assigned with 'ag__.xxx' method, we should handle
            # them following the autograph convensions.
            return (node.attr, TFRTypes.AG_BUILTIN_FUNC)
    
          if node_type == TFRTypes.TF_RAW_OP:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top