代码搜索:CPU卡 是什么?
找到约 10,000 项符合「CPU卡 是什么?」的源代码
代码结果 10,000
www.eeworm.com/read/151014/12239377
f cpu_intel.f
real*8 function cputime( t )
real*4 r
real*8 t
call CPU_TIME( r )
cputime = r-t
end
www.eeworm.com/read/151014/12239538
f cpu_dummy.f
real*8 function cputime( t )
* Supply your counter of cpu time
* The function should return cpu time from the beginning of the process
* minus t
real*8 t, r
* cputime=(time_from_start)-t
c
www.eeworm.com/read/151014/12239551
f cpu_mpi.f
* This procedure get wall clock cpu time using "MPI_Wtime" function
* (from the MPI library)
*
real*8 function cputime(was)
include 'mpif.h'
real*8 now,was
now=MPI_Wtim
www.eeworm.com/read/151014/12239554
f cpu_linux.f
real*8 function cputime( t )
real*8 t
real*4 r
call getcpu( r )
cputime = r-t
end
www.eeworm.com/read/151014/12239592
f cpu_pgi.f
* This procedure get elapsed cpu time using "etime" function
* (e.g. Portland Group compiler)
*
real*8 function cputime( t )
real*8 t
real*4 etime,u,s
* call getc
www.eeworm.com/read/151014/12239604
f cpu_intel.f
real*8 function cputime( t )
real*4 r
real*8 t
call CPU_TIME( r )
cputime = r-t
end
www.eeworm.com/read/151014/12239640
f cpu_linux.f
real*8 function cputime( t )
real*8 t
real*4 t0,r
t0=t
call getcpu( t0, r )
cputime = r
end
www.eeworm.com/read/151014/12239658
f cpu_cray.f
real function cputime( t )
external getcpu
call getcpu(t0)
write(*,*)t0
cputime=t0-t
end
www.eeworm.com/read/339381/12240116
h os_cpu.h
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/339381/12240190