Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for bargs (0.04 sec)

  1. src/cmd/covdata/tool_test.go

    			args: []string{"debugdump"},
    		},
    		{
    			tag:  "percent",
    			args: []string{"percent"},
    		},
    	}
    
    	for _, x := range scenarios {
    		ins := fmt.Sprintf("-i=%s", empty)
    		args := append([]string{}, x.args...)
    		args = append(args, ins)
    		if false {
    			t.Logf("cmd is %s %v\n", s.tool, args)
    		}
    		cmd := testenv.Command(t, s.tool, args...)
    		b, err := cmd.CombinedOutput()
    		t.Logf("%% output: %s\n", string(b))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

      ^bb0(%barg1: tensor<i32>, %barg2: tensor<f32>):
        %8 = func.call @my_cond(%barg1, %barg2) : (tensor<i32>, tensor<f32>) -> tensor<i1>
        "tf.Yield"(%8, %barg1, %barg2) : (tensor<i1>, tensor<i32>, tensor<f32>) -> ()
      }, {
      ^bb0(%barg1: tensor<i32>, %barg2: tensor<f32>):
        %r1, %r2 = func.call @my_body(%barg1, %barg2) : (tensor<i32>, tensor<f32>) -> (tensor<i32>, tensor<f32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/call.go

    				// add partial list of type arguments, if any
    				if i < len(atargs) {
    					targs = append(targs, atargs[i]...)
    				}
    				// make sure targs and tparams have the same length
    				for len(targs) < len(tparams) {
    					targs = append(targs, nil)
    				}
    				genericArgs = append(genericArgs, i)
    			}
    		}
    	}
    	assert(len(tparams) == len(targs))
    
    	// at the moment we only support implicit instantiations of argument functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

             %cond = "tf.NotEqual"(%carg1, %limit) : (tensor<i32>, tensor<i32>) -> tensor<i1>
             "tf.Yield"(%cond) : (tensor<i1>) -> ()
        },  {
          ^bb0(%barg0: tensor<f32>, %barg1: tensor<i32>):
            %one = arith.constant dense<1> : tensor<i32>
            %sub = "tf.Sub"(%barg1, %one) : (tensor<i32>, tensor<i32>) -> tensor<i32>
            %3 = "tf.StringToNumber"(%arg1) {out_type = f32} : (tensor<!tf_type.string>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-quant.mlir

        "tf.Yield"(%check) : (tensor<i1>) -> ()
        }, {
      ^bb0(%barg0: tensor<2x?x!tf_type.qint8>, %barg1: tensor<?x2x!tf_type.qint8>):
        %id = "tf.Identity"(%barg0) : (tensor<2x?x!tf_type.qint8>) -> tensor<2x?x!tf_type.qint8>
        "tf.Yield"(%id, %barg1) : (tensor<2x?x!tf_type.qint8>, tensor<?x2x!tf_type.qint8>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 01:25:29 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/infer.go

    	if len(targs) < n {
    		targs2 := make([]Type, n)
    		copy(targs2, targs)
    		targs = targs2
    	}
    	// len(targs) == n
    
    	// Continue with the type arguments we have. Avoid matching generic
    	// parameters that already have type arguments against function arguments:
    	// It may fail because matching uses type identity while parameter passing
    	// uses assignment rules. Instantiate the parameter list with the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    //go:linkname syscall_Syscall syscall.Syscall
    //go:nosplit
    func syscall_Syscall(fn, nargs, a1, a2, a3 uintptr) (r1, r2, err uintptr) {
    	args := [...]uintptr{a1, a2, a3}
    	return syscall_SyscallN(fn, args[:nargs]...)
    }
    
    //go:linkname syscall_Syscall6 syscall.Syscall6
    //go:nosplit
    func syscall_Syscall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
    	args := [...]uintptr{a1, a2, a3, a4, a5, a6}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/go/types/builtins.go

    	var args []*operand // not valid for _Make, _New, _Offsetof, _Trace
    	var nargs int
    	switch id {
    	default:
    		// check all arguments
    		args = check.exprList(argList)
    		nargs = len(args)
    		for _, a := range args {
    			if a.mode == invalid {
    				return
    			}
    		}
    		// first argument is always in x
    		if nargs > 0 {
    			*x = *args[0]
    		}
    	case _Make, _New, _Offsetof, _Trace:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/iimport.go

    				// If the receiver has any targs, set those as the
    				// rparams of the method (since those are the
    				// typeparams being used in the method sig/body).
    				targs := baseType(recv.Type()).TypeArgs()
    				var rparams []*types.TypeParam
    				if targs.Len() > 0 {
    					rparams = make([]*types.TypeParam, targs.Len())
    					for i := range rparams {
    						rparams[i], _ = targs.At(i).(*types.TypeParam)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. Makefile

    clean: ## cleanup all generated assets
    	@echo "Cleaning up all the generated files"
    	@find . -name '*.test' | xargs rm -fv
    	@find . -name '*~' | xargs rm -fv
    	@find . -name '.#*#' | xargs rm -fv
    	@find . -name '#*#' | xargs rm -fv
    	@rm -rvf minio
    	@rm -rvf build
    	@rm -rvf release
    	@rm -rvf .verify*
    	@rm -rvf minio-release
    	@rm -rvf minio.RELEASE*.hotfix.*
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top