Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 171 for Tperm (0.04 sec)

  1. src/syscall/zsyscall_openbsd_arm64.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 := syscall(abi.FuncPCABI0(libc_open_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_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 := syscall(abi.FuncPCABI0(libc_open_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          CompileTimeConstantOperand<TF::TileOp, 1>,                // $multiples
          CompileTimeConstantOperand<TF::TopKV2Op, 1>,              // $k
          CompileTimeConstantOperand<TF::TransposeOp, 1>,           // $perm
          CompileTimeConstantOperand<TF::TruncatedNormalOp, 0>,     // $shape
          CompileTimeConstantOperand<TF::UnsortedSegmentMaxOp, 2>,  // $num_segments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/runtime/sys_netbsd_amd64.s

    	MOVL	$SYS__lwp_exit, AX
    	SYSCALL
    	MOVL	$0xf1, 0xf1		// crash
    	JMP	0(PC)
    
    TEXT runtime·open(SB),NOSPLIT,$-8
    	MOVQ	name+0(FP), DI		// arg 1 pathname
    	MOVL	mode+8(FP), SI		// arg 2 flags
    	MOVL	perm+12(FP), DX		// arg 3 mode
    	MOVL	$SYS_open, AX
    	SYSCALL
    	JCC	2(PC)
    	MOVL	$-1, AX
    	MOVL	AX, ret+16(FP)
    	RET
    
    TEXT runtime·closefd(SB),NOSPLIT,$-8
    	MOVL	fd+0(FP), DI		// arg 1 fd
    	MOVL	$SYS_close, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_386.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 := syscall(abi.FuncPCABI0(libc_open_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  6. src/syscall/mksyscall.pl

    while(<>) {
    	chomp;
    	s/\s+/ /g;
    	s/^\s+//;
    	s/\s+$//;
    	my $nonblock = /^\/\/sysnb /;
    	next if !/^\/\/sys / && !$nonblock;
    
    	# Line must be of the form
    	#	func Open(path string, mode int, perm int) (fd int, errno error)
    	# Split into name, in params, out params.
    	if(!/^\/\/sys(nb)? (\w+)\(([^()]*)\)\s*(?:\(([^()]+)\))?\s*(?:=\s*((?i)_?SYS_[A-Z0-9_]+))?$/) {
    		print STDERR "$ARGV:$.: malformed //sys declaration\n";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/runtime/os_plan9.go

    	"unsafe"
    )
    
    type mOS struct {
    	waitsemacount uint32
    	notesig       *int8
    	errstr        *byte
    	ignoreHangup  bool
    }
    
    func closefd(fd int32) int32
    
    //go:noescape
    func open(name *byte, mode, perm int32) int32
    
    //go:noescape
    func pread(fd int32, buf unsafe.Pointer, nbytes int32, offset int64) int32
    
    //go:noescape
    func pwrite(fd int32, buf unsafe.Pointer, nbytes int32, offset int64) int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/array_grad.cc

      //   split_shape = [2, 20, 3, 30, 4, 40]
      //   axes = [0, 2, 4]
      auto stack = Stack(scope, {op.input(1), input_shape.output});
      auto perm = Range(scope, Sub(scope, Rank(scope, stack), 1), -1, -1);
      auto split_shape = Reshape(scope, Transpose(scope, stack, perm), {-1});
      auto axes = Range(scope, Const(scope, 0), Size(scope, split_shape.output), 2);
      auto input_grad = ReduceSum(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.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 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.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 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 44.9K bytes
    - Viewed (0)
Back to top