Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 111 for Tperm (0.04 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      (TFL_AddOp:$add_op
        (TFL_TransposeOp:$transpose_op $input, $perm),
        (Arith_ConstantOp:$bias_op FloatElementsAttr:$bias),
        $act_fn),
      (TFL_TransposeOp
        (TFL_AddOp $input,
          (Arith_ConstantOp (ReshapeNCHWBiasToNHWC $bias_op, $bias)),
          $act_fn),
        $perm),
      [(IsPermutationNCHW $perm),
      (IsBiasShape $bias_op),
      (IsDefinedByConv2DOp $input),
      (HasOneUse $add_op),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. pkg/proxy/util/nfacct/nfacct_linux_test.go

    			// expected calls: NFNL_MSG_ACCT_NEW
    			netlinkCalls: 1,
    		},
    		{
    			name:        "insufficient privilege",
    			counterName: "metric-2",
    			handler: &fakeHandler{
    				errs: []error{syscall.EPERM},
    			},
    			err: ErrUnexpected,
    			// expected calls: NFNL_MSG_ACCT_NEW
    			netlinkCalls: 1,
    		},
    		{
    			name:        "exceeds max length",
    			counterName: "this-is-a-string-with-more-than-32-characters",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/syscall/syscall_aix.go

    //sys	Mkdir(path string, mode uint32) (err error)
    //sys	Mkdirat(dirfd int, path string, mode uint32) (err error)
    //sys	Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    //sys	pread(fd int, p []byte, offset int64) (n int, err error)
    //sys	pwrite(fd int, p []byte, offset int64) (n int, err error)
    //sys	read(fd int, p []byte) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_ppc64x.s

    	MOVW	$0, R2
    	SYNC
    	MOVW	R2, (R1)
    	MOVW	$0, R3	// exit code
    	SYSCALL	$SYS_exit
    	JMP	0(PC)
    
    TEXT runtime·open(SB),NOSPLIT|NOFRAME,$0-20
    	MOVD	name+0(FP), R3
    	MOVW	mode+8(FP), R4
    	MOVW	perm+12(FP), R5
    	SYSCALL	$SYS_open
    	BVC	2(PC)
    	MOVW	$-1, R3
    	MOVW	R3, ret+16(FP)
    	RET
    
    TEXT runtime·closefd(SB),NOSPLIT|NOFRAME,$0-12
    	MOVW	fd+0(FP), R3
    	SYSCALL	$SYS_close
    	BVC	2(PC)
    	MOVW	$-1, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin.go

    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(write_trampoline)), unsafe.Pointer(&fd))
    	KeepAlive(p)
    	return ret
    }
    func write_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func open(name *byte, mode, perm int32) (ret int32) {
    	ret = libcCall(unsafe.Pointer(abi.FuncPCABI0(open_trampoline)), unsafe.Pointer(&name))
    	KeepAlive(name)
    	return
    }
    func open_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. src/syscall/zerrors_solaris_amd64.go

    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x50)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x7a)
    	EOVERFLOW       = Errno(0x4f)
    	EOWNERDEAD      = Errno(0x3a)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x7b)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    	EPROTONOSUPPORT = Errno(0x78)
    	EPROTOTYPE      = Errno(0x62)
    	ERANGE          = Errno(0x22)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_aix_ppc64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Open(path string, mode int, perm uint32) (fd int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := syscall6(uintptr(unsafe.Pointer(&libc_Open)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0, 0)
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: %[[BROADCAST_DIM:.+]] = arith.constant
    // CHECK{LITERAL}: dense<[2, 3]> : tensor<2xi32>
    // CHECK: %[[PERM:.+]] = arith.constant
    // CHECK{LITERAL}: dense<[1, 0]> : tensor<2xi32>
    // CHECK: %[[TRANSPOSE:.+]] = "tfl.transpose"(%[[ARG0]], %[[PERM]]) : (tensor<1x2x!quant.uniform<i8:f32, 2.000000e+00:3>>, tensor<2xi32>) -> tensor<2x1x!quant.uniform<i8:f32, 2.000000e+00:3>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
Back to top