Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,818 for FUNC (0.04 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

      func.return %0 : tensor<4xcomplex<f64>>
    }
    
    func.func @f16() -> tensor<4xf16> {
      // CHECK-LABEL: @f16
      // CHECK: value = dense<[1.000000e+00, 2.000000e+00, 3.000000e+00, 4.000000e+00]> : tensor<4xf16>
      %0 = "tfl.pseudo_const"() { value = dense<[1.0, 2.0, 3.0, 4.0]> : tensor<4xf16> } : () -> tensor<4xf16>
      func.return %0 : tensor<4xf16>
    }
    
    func.func @f32() -> tensor<4xf32> {
      // CHECK-LABEL: @f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    func (*TypeAssertExpr) exprNode() {}
    func (*CallExpr) exprNode()       {}
    func (*StarExpr) exprNode()       {}
    func (*UnaryExpr) exprNode()      {}
    func (*BinaryExpr) exprNode()     {}
    func (*KeyValueExpr) exprNode()   {}
    
    func (*ArrayType) exprNode()     {}
    func (*StructType) exprNode()    {}
    func (*FuncType) exprNode()      {}
    func (*InterfaceType) exprNode() {}
    func (*MapType) exprNode()       {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_openbsd_amd64.go

    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_bind_trampoline()
    
    //go:cgo_import_dynamic libc_bind bind "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_arm64.go

    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_bind_trampoline()
    
    //go:cgo_import_dynamic libc_bind bind "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_ppc64.go

    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_bind_trampoline()
    
    //go:cgo_import_dynamic libc_bind bind "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

        }) : () -> ()
        func.return
    }
    
    // CHECK-LABEL: func @set_bound
    func.func @set_bound(%arg0: tensor<i32>) -> tensor<i32> {
      %bound = "tf.Const"() {value = dense<16> : tensor<i32>} : () -> tensor<i32>
      // CHECK: tf.XlaSetBound
      // CHECK-NOT: _xla_outside_compilation
      %bounded = "tf.XlaSetBound"(%arg0, %bound) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      func.return %bounded : tensor<i32>
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      void ConvertTFImplements(func::FuncOp func, StringAttr attr);
      void ConvertTFImplementsWithAttributes(func::FuncOp func, FuncAttr attr);
      void ConvertTFAPIImplements(func::FuncOp func, StringAttr attr,
                                  ModuleOp module);
      void runOnOperation() override;
    };
    
    LogicalResult CheckFusableLayerNormalizedLstmCellSimple(
        func::FuncOp lstm_func) {
      for (int i = 0; i < 5; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/os_netbsd.go

    func lwp_kill(tid int32, sig int)
    
    //go:noescape
    func getcontext(ctxt unsafe.Pointer)
    
    //go:noescape
    func lwp_create(ctxt unsafe.Pointer, flags uintptr, lwpid unsafe.Pointer) int32
    
    //go:noescape
    func lwp_park(clockid, flags int32, ts *timespec, unpark int32, hint, unparkhint unsafe.Pointer) int32
    
    //go:noescape
    func lwp_unpark(lwp int32, hint unsafe.Pointer) int32
    
    func lwp_self() int32
    
    func osyield()
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/text/template/parse/node.go

    // Chained for convenience.
    // TODO: fix one day?
    func (i *IdentifierNode) SetTree(t *Tree) *IdentifierNode {
    	i.tr = t
    	return i
    }
    
    func (i *IdentifierNode) String() string {
    	return i.Ident
    }
    
    func (i *IdentifierNode) writeTo(sb *strings.Builder) {
    	sb.WriteString(i.String())
    }
    
    func (i *IdentifierNode) tree() *Tree {
    	return i.tr
    }
    
    func (i *IdentifierNode) Copy() Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top