/ Usr / bin / time shell कमांड के साथ% e परिशुद्धता बढ़ाएँ


19

जब मैं शेल में टाइम कमांड चलाता हूं तो मुझे time ./myappनिम्न जैसा आउटपुट मिलता है:

real    0m0.668s
user    0m0.112s
sys     0m0.028s

हालांकि, जब मैं कमांड चलाता हूं तो मैं \time -f %e ./myappसटीक खो देता हूं और मुझे मिलता है:

2.01s

अगर मैं %Eकमांड का उपयोग करता हूं तो मैं भी उसी तरह सटीक खोता हूं। मैं इसे फिर से अधिक सटीक होने के लिए कैसे बदल सकता हूं, लेकिन अभी भी केवल सेकंड ही आउटपुट हो रहा है?

मैंने इस लिनक्स / यूनिक्स कमांड: टाइम और इस सवाल पर अपना शोध आधारित किया

जवाबों:


21

मुझे लगता है कि आप समझ रहे हैं कि ये दोनों आदेश समय के एक अलग संस्करण को बुला रहे हैं, है ना?

बैश का अंतर्निहित संस्करण

% time

जीएनयू समय उर्फ। / Usr / bin / समय

% \time

अंतर्निहित timeकमांड को bashयहां पर पढ़ा जा सकता है:

% help time
time: time [-p] PIPELINE
    Execute PIPELINE and print a summary of the real time, user CPU time,
    and system CPU time spent executing PIPELINE when it terminates.
    The return status is the return status of PIPELINE.  The `-p' option
    prints the timing summary in a slightly different format.  This uses
    the value of the TIMEFORMAT variable as the output format.

जीएनयू time, /usr/bin/timeआमतौर पर अंतर्निहित की तुलना में अधिक उपयोगी है।

आपकी सटीक समस्या के रूप में यह यहाँ इस github gist में शामिल है , विशेष रूप से:

क्यों bash समय अधिक सटीक है तो GNU समय?

बिल्ट बैश कमांड टाइम निष्पादन की सटीक सटीकता देता है, और GNU टाइम (आमतौर पर / usr / bin / time) सेंटीसेकंड सटीक देता है। समय (2) syscall घड़ियों में समय देता है, और 100 घड़ियों = 1 सेकंड (आमतौर पर), इसलिए सटीकता GNU समय की तरह है। बैश समय का उपयोग क्या है ताकि यह अधिक सटीक हो?

बैश समय आंतरिक रूप से गेट्रेज () और जीएनयू समय का उपयोग करता है ()। microsecond रिज़ॉल्यूशन के कारण getrusage () कहीं अधिक सटीक है।

आप निम्न उदाहरण के साथ सेंटीसेकंड देख सकते हैं ( आउटपुट की 5 वीं पंक्ति देखें ):

% /usr/bin/time -v sleep .22222
    Command being timed: "sleep .22222"
    User time (seconds): 0.00
    System time (seconds): 0.00
    Percent of CPU this job got: 0%
    Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.22
    Average shared text size (kbytes): 0
    Average unshared data size (kbytes): 0
    Average stack size (kbytes): 0
    Average total size (kbytes): 0
    Maximum resident set size (kbytes): 1968
    Average resident set size (kbytes): 0
    Major (requiring I/O) page faults: 0
    Minor (reclaiming a frame) page faults: 153
    Voluntary context switches: 2
    Involuntary context switches: 1
    Swaps: 0
    File system inputs: 0
    File system outputs: 0
    Socket messages sent: 0
    Socket messages received: 0
    Signals delivered: 0
    Page size (bytes): 4096
    Exit status: 0

अधिक रिज़ॉल्यूशन को bash के timeकमांड का उपयोग किया जा सकता है जैसे कि और आप रिज़ॉल्यूशन को नियंत्रित कर सकते हैं

# 3 places 
% TIMEFORMAT='%3R'; time ( sleep .22222 )
0.224

से चर पर बैश मैनुअल :

TIMEFORMAT
The value of this parameter is used as a format string specifying how the timing information for pipelines prefixed with the time reserved word should be displayed. The ‘%’ character introduces an escape sequence that is expanded to a time value or other information. The escape sequences and their meanings are as follows; the braces denote optional portions.

%%
A literal ‘%’.

%[p][l]R
The elapsed time in seconds.

%[p][l]U
The number of CPU seconds spent in user mode.

%[p][l]S
The number of CPU seconds spent in system mode.

%P
The CPU percentage, computed as (%U + %S) / %R.

The optional p is a digit specifying the precision, the number of fractional digits after a decimal point. A value of 0 causes no decimal point or fraction to be output. At most three places after the decimal point may be specified; values of p greater than 3 are changed to 3. If p is not specified, the value 3 is used.

The optional l specifies a longer format, including minutes, of the form MMmSS.FFs. The value of p determines whether or not the fraction is included.

If this variable is not set, Bash acts as if it had the value

$'\nreal\t%3lR\nuser\t%3lU\nsys\t%3lS'
If the value is null, no timing information is displayed. A trailing newline is added when the format string is displayed.

हाँ मुझे पहले से ही सब पता था। तो मैं यह निष्कर्ष निकाल सकता हूं कि जो मैं चाहता हूं वह असंभव है? क्या बैश समय संस्करण का उपयोग करने का एक तरीका है और केवल 3 अंकों के साथ वास्तविक सेकंड का समय मिलता है?
Flame_Phoenix

मेरा अपडेट देखें, आप चर TIMEFORMAT का उपयोग करके bash के टाइम कमांड को नियंत्रित कर सकते हैं। कि तुम क्या देख रहे हो?
slm

याह, यह बात है, धन्यवाद! मैं सोच रहा हूँ कि, मैं इसे एक फ़ाइल के लिए कैसे जोड़ूँ? मैं% TIMEFORMAT = '% 3R' का उपयोग करने का प्रयास कर रहा हूं; समय (नींद .22222) >> bla.txt लेकिन यह काम नहीं कर रहा है: S वैसे भी, चयनित। काश मैं आप कर्म ++ दे सकता है, लेकिन मैं 15 कर्म नहीं है -.- '
Flame_Phoenix

2
TIMEFORMAT = '% 3 आर'; समय (नींद .22222) 2 >> myFile.txt इसे जाने दो!
फ्लेम_फिनिक्स

दोनों के लंबे समय के उपयोगकर्ता और के बारे में पता नहीं था TIMEFORMAT, मैं हमेशा वास्तविक समय निकालने के लिए sed का उपयोग करता था। धन्यवाद! "माइक्रोसेकंड संकल्प के कारण।" बयान ने मेरी आशाओं पर पानी फेर दिया, TIMEFORMAT=%6Rलेकिन ऐसा लगता है कि सटीक अंक केवल 0-3 हो सकता है।
mxmlnkn
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.