Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for walltime1 (0.15 sec)

  1. src/runtime/os3_solaris.go

    }
    
    func usleep1(usec uint32)
    
    //go:nosplit
    func usleep_no_g(µs uint32) {
    	usleep1(µs)
    }
    
    //go:nosplit
    func usleep(µs uint32) {
    	usleep1(µs)
    }
    
    func walltime() (sec int64, nsec int32) {
    	var ts mts
    	sysvicall2(&libc_clock_gettime, _CLOCK_REALTIME, uintptr(unsafe.Pointer(&ts)))
    	return ts.tv_sec, int32(ts.tv_nsec)
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_mipsx.s

    	MOVW	addr+0(FP), R4
    	MOVW	n+4(FP), R5
    	MOVW	dst+8(FP), R6
    	MOVW	$SYS_mincore, R2
    	SYSCALL
    	SUBU	R2, R0, R2	// caller expects negative errno
    	MOVW	R2, ret+12(FP)
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB),NOSPLIT,$8-12
    	MOVW	$0, R4	// CLOCK_REALTIME
    	MOVW	$4(R29), R5
    	MOVW	$SYS_clock_gettime, R2
    	SYSCALL
    	MOVW	4(R29), R3	// sec
    	MOVW	8(R29), R5	// nsec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    func callsync() (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.sync())
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func calltimes(tms uintptr) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.times(C.uintptr_t(tms)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_riscv64.s

    TEXT runtime·mincore(SB),NOSPLIT|NOFRAME,$0-28
    	MOV	addr+0(FP), A0
    	MOV	n+8(FP), A1
    	MOV	dst+16(FP), A2
    	MOV	$SYS_mincore, A7
    	ECALL
    	MOVW	A0, ret+24(FP)
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB),NOSPLIT,$40-12
    	MOV	$CLOCK_REALTIME, A0
    
    	MOV	runtime·vdsoClockgettimeSym(SB), A7
    	BEQZ	A7, fallback
    	MOV	X2, S2 // S2,S3,S4 is unchanged by C code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_s390x.s

    	RET
    
    TEXT runtime·mincore(SB),NOSPLIT|NOFRAME,$0-28
    	MOVD	addr+0(FP), R2
    	MOVD	n+8(FP), R3
    	MOVD	dst+16(FP), R4
    	MOVW	$SYS_mincore, R1
    	SYSCALL
    	MOVW	R2, ret+24(FP)
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB),NOSPLIT,$32-12
    	MOVW	$0, R2			// CLOCK_REALTIME
    	MOVD	R15, R7			// Backup stack pointer
    
    	MOVD	g_m(g), R6		//m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/loader.cc

                                      meta_graph.saver_def().filename_tensor_name(),
                                      asset_file_defs, session->get()));
      }
      // Record walltime spent in restoring graph from disk, but postpone metric
      // increments until graph init finishes.
      const uint64 restore_graph_walltime =
          GetLatencyMicroseconds(read_start_microseconds);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go

    func Sync() {
    	callsync()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Times(tms *Tms) (ticks uintptr, err error) {
    	r0, e1 := calltimes(uintptr(unsafe.Pointer(tms)))
    	ticks = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_loong64.s

    TEXT runtime·mincore(SB),NOSPLIT|NOFRAME,$0-28
    	MOVV	addr+0(FP), R4
    	MOVV	n+8(FP), R5
    	MOVV	dst+16(FP), R6
    	MOVV	$SYS_mincore, R11
    	SYSCALL
    	MOVW	R4, ret+24(FP)
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB),NOSPLIT,$24-12
    	MOVV	R3, R23	// R23 is unchanged by C code
    	MOVV	R3, R25
    
    	MOVV	g_m(g), R24	// R24 = m
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go

    func callsync() (r1 uintptr, e1 Errno) {
    	r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_sync)), 0, 0, 0, 0, 0, 0, 0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func calltimes(tms uintptr) (r1 uintptr, e1 Errno) {
    	r1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_times)), 1, tms, 0, 0, 0, 0, 0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_386.s

    	RET
    
    TEXT runtime·mincore(SB),NOSPLIT,$0-16
    	MOVL	$SYS_mincore, AX
    	MOVL	addr+0(FP), BX
    	MOVL	n+4(FP), CX
    	MOVL	dst+8(FP), DX
    	INVOKE_SYSCALL
    	MOVL	AX, ret+12(FP)
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB), NOSPLIT, $8-12
    	// We don't know how much stack space the VDSO code will need,
    	// so switch to g0.
    
    	MOVL	SP, BP	// Save old SP; BP unchanged by C code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top