Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of about 10,000 for FUNC (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-cfg.mlir

      func.return %1 : tensor<*xf32>
    // CHECK:   return [[BBARG0]] : tensor<*xf32>
    }
    
    func.func private @testIf3Then(tensor<*xf32>) -> (tensor<*xf32>, tensor<*xi8>, tensor<*xbf16>)
    func.func private @testIf3Else(tensor<*xf32>) -> (tensor<*xf32>, tensor<*xi8>, tensor<*xbf16>)
    
    // CHECK-LABEL: func @testIf3Result(%arg0: tensor<i1>, %arg1: tensor<*xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_input_dialect_to_executor_pass_test.mlir

    // -----
    
    // CHECK-LABEL: func @testNoClusterFuncOpPasses
    func.func @testNoClusterFuncOpPasses(%arg0: tensor<4x?x!tf_type.stringref>) -> tensor<4x2x!tf_type.string> {
      %0 = "tf.Identity"(%arg0) : (tensor<4x?x!tf_type.stringref>) -> tensor<4x2x!tf_type.string>
      func.return %0 : tensor<4x2x!tf_type.string>
    }
    
    // -----
    
    func.func @_func(%arg0: tensor<i32>) -> tensor<i32> {
      func.return %arg0 : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 22:07:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func goPanicSlice3B(x int, y int)
    func goPanicSlice3BU(x uint, y int)
    func goPanicSlice3C(x int, y int)
    func goPanicSlice3CU(x uint, y int)
    func goPanicSliceConvert(x int, y int)
    
    func printbool(bool)
    func printfloat(float64)
    func printint(int64)
    func printhex(uint64)
    func printuint(uint64)
    func printcomplex(complex128)
    func printstring(string)
    func printpointer(any)
    func printuintptr(uintptr)
    func printiface(any)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/runtime/signal_openbsd_amd64.go

    func (c *sigctxt) rbp() uint64 { return c.regs().sc_rbp }
    func (c *sigctxt) rsp() uint64 { return c.regs().sc_rsp }
    func (c *sigctxt) r8() uint64  { return c.regs().sc_r8 }
    func (c *sigctxt) r9() uint64  { return c.regs().sc_r9 }
    func (c *sigctxt) r10() uint64 { return c.regs().sc_r10 }
    func (c *sigctxt) r11() uint64 { return c.regs().sc_r11 }
    func (c *sigctxt) r12() uint64 { return c.regs().sc_r12 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 2K bytes
    - Viewed (0)
  5. api/go1.23.txt

    pkg go/types, method (*Func) Signature() *Signature #65772
    pkg iter, func Pull2[$0 interface{}, $1 interface{}](Seq2[$0, $1]) (func() ($0, $1, bool), func()) #61897
    pkg iter, func Pull[$0 interface{}](Seq[$0]) (func() ($0, bool), func()) #61897
    pkg iter, type Seq2[$0 interface{}, $1 interface{}] func(func($0, $1) bool) #61897
    pkg iter, type Seq[$0 interface{}] func(func($0) bool) #61897
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/guarantee-all-funcs-one-use.mlir

    // CHECK-DAG: func private @g{{.*}}
    // 4 copies of @h
    // CHECK-DAG: func @h{{.*}}
    // CHECK-DAG: func private @h{{.*}}
    // CHECK-DAG: func private @h{{.*}}
    // CHECK-DAG: func private @h{{.*}}
    func.func @f() {
      func.call @g() : () -> ()
      func.call @g() : () -> ()
      func.return
    }
    
    func.func @g() {
      func.call @h() : () -> ()
      func.call @h() : () -> ()
      func.return
    }
    
    func.func @h() {
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/go/types/builtins_test.go

    	{"new", `_ = new(int)`, `func(int) *int`},
    	{"new", `type T struct{}; _ = new(T)`, `func(p.T) *p.T`},
    
    	{"panic", `panic(0)`, `func(interface{})`},
    	{"panic", `panic("foo")`, `func(interface{})`},
    
    	{"print", `print()`, `func()`},
    	{"print", `print(0)`, `func(int)`},
    	{"print", `print(1, 2.0, "foo", true)`, `func(int, float64, string, bool)`},
    
    	{"println", `println()`, `func()`},
    	{"println", `println(0)`, `func(int)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls2/decls2b.go

    // Verify by checking that errors are reported.
    func (Foo /* ERROR "undefined" */ ) m() {}
    func (Foo /* ERROR "undefined" */ ) m(undefined /* ERROR "undefined" */ ) {}
    func (Foo /* ERRORx `undefined` */ ) m() int { return "foo" /* ERRORx "cannot use .* in return statement" */ }
    
    func (Foo /* ERROR "undefined" */ ) _() {}
    func (Foo /* ERROR "undefined" */ ) _(undefined /* ERROR "undefined" */ ) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:         }
    func.func @equal_incompatible_shape_broadcastable(%arg0: tensor<?xi32>, %arg1: tensor<1xi32>) -> tensor<?xi1> {
      %0 = "chlo.broadcast_compare"(%arg0, %arg1) {comparison_direction = #chlo<comparison_direction EQ>} : (tensor<?xi32>, tensor<1xi32>) -> tensor<?xi1>
      func.return %0 : tensor<?xi1>
    }
    
    // CHECK-LABEL: func @equal_unsupported_compare_type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  10. pkg/apis/networking/v1/zz_generated.conversion.go

    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*v1.HTTPIngressPath)(nil), (*networking.HTTPIngressPath)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top