Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for args_ (0.05 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        src_arg_pairs->push_back({src_node, arg});
        args_.push_back(arg);
      }
      Node* dst_node = edge->dst();
      Node* dst_image = node_images.at(dst_node);
      int dst_slot = edge->dst_input();
      args_by_dst_[InputTensor(dst_node, dst_slot)] = arg_index;
      graph_->AddEdge(args_[arg_index], 0, dst_image, dst_slot);
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    // Start step 0
    C_0 = cond(args_0)
    N_0 = non_tpu(args_0)
    if (C_0) {
       F_0 = forward(args_0, N_0)
       T_0 = core_tpu(args_0, N_0, F_0)
       // B_0 = backward() is not evaluated here.
    }
    
    args_1 = update_args(args_0, N_0, T_0)
    
    // Start step 1
    C_1 = cond(args_1)
    N_1 = non_tpu(args_1)
    if (C_1) {
       F_1 = forward(args_1, N_1)
       // T_1 = core_tpu() is not evaluated here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		r := v.Reg()
    		r1 := v.Args[0].Reg()
    		r2 := v.Args[1].Reg()
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r2
    		p.Reg = r1
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = r
    
    	case ssa.OpPPC64ADDCC, ssa.OpPPC64ANDCC, ssa.OpPPC64SUBCC, ssa.OpPPC64ORCC, ssa.OpPPC64XORCC, ssa.OpPPC64NORCC,
    		ssa.OpPPC64ANDNCC:
    		r1 := v.Args[0].Reg()
    		r2 := v.Args[1].Reg()
    		p := s.Prog(v.Op.Asm())
    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. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	-> <template-prefix> <template-args>
    //	-> <prefix> <template-unqualified-name> <template-args>
    //	-> <unqualified-name> <template-unqualified-name> <template-args>
    //	-> <source-name> <template-unqualified-name> <template-args>
    //	-> <source-name> <operator-name> <template-args>
    //	-> <source-name> cv <type> <template-args>
    //	-> <source-name> cv <template-template-param> <template-args> <template-args>
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		(x.Args[0] == y.Args[0] && x.Args[1] == y.Args[1] ||
    			x.Args[0] == y.Args[1] && x.Args[1] == y.Args[0]) {
    		return true
    	}
    	if x.Op == Op386LEAL1 && y.Op == Op386LEAL1 && y.AuxInt == x.AuxInt+n && x.Aux == y.Aux &&
    		(x.Args[0] == y.Args[0] && x.Args[1] == y.Args[1] ||
    			x.Args[0] == y.Args[1] && x.Args[1] == y.Args[0]) {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        public GradleExecuter withArguments(String... args) {
            return withArguments(Arrays.asList(args));
        }
    
        @Override
        public GradleExecuter withArguments(List<String> args) {
            this.args.clear();
            this.args.addAll(args);
            return this;
        }
    
        @Override
        public GradleExecuter withArgument(String arg) {
            this.args.add(arg);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    					args[0], args[1] = args[1], args[0]
    					goto ok
    				}
    				if countRegs(s.values[v.Args[0].ID].regs) >= 2 {
    					// we have at least 2 copies of arg0.  We can afford to clobber one.
    					goto ok
    				}
    				if opcodeTable[v.Op].commutative && countRegs(s.values[v.Args[1].ID].regs) >= 2 {
    					args[0], args[1] = args[1], args[0]
    					goto ok
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    		scaleUpLimit := calculateScaleUpLimitWithScalingRules(args.CurrentReplicas, a.scaleUpEvents[args.Key], a.scaleDownEvents[args.Key], args.ScaleUpBehavior)
    
    		if scaleUpLimit < args.CurrentReplicas {
    			// We shouldn't scale up further until the scaleUpEvents will be cleaned up
    			scaleUpLimit = args.CurrentReplicas
    		}
    		maximumAllowedReplicas := args.MaxReplicas
    		if maximumAllowedReplicas > scaleUpLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    				return
    			}
    			args := jump.extraArgs
    			if jump.comment != "" {
    				args = append(args, "-m", "comment", "--comment", jump.comment)
    			}
    			args = append(args, "-j", string(jump.dstChain))
    			if _, err := proxier.iptables.EnsureRule(utiliptables.Prepend, jump.table, jump.srcChain, args...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. cmd/iam.go

    	if hasSessionPolicy {
    		return isAllowedSP && (isOwnerDerived || combinedPolicy.IsAllowed(args))
    	}
    
    	// Sub policy not set, this is most common since subPolicy
    	// is optional, use the inherited policies.
    	return isOwnerDerived || combinedPolicy.IsAllowed(args)
    }
    
    func isAllowedBySessionPolicyForServiceAccount(args policy.Args) (hasSessionPolicy bool, isAllowed bool) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top