Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
0d7e68ad
Kaydet (Commit)
0d7e68ad
authored
Tem 18, 2002
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Script to run the pystones "benchmark" under HotShot.
üst
fbe36082
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
stones.py
Lib/hotshot/stones.py
+35
-0
No files found.
Lib/hotshot/stones.py
0 → 100644
Dosyayı görüntüle @
0d7e68ad
import
errno
import
hotshot
import
hotshot.stats
import
os
import
sys
import
test.pystone
if
sys
.
argv
[
1
:]:
logfile
=
sys
.
argv
[
1
]
cleanup
=
0
else
:
import
tempfile
logfile
=
tempfile
.
mktemp
()
cleanup
=
1
p
=
hotshot
.
Profile
(
logfile
)
benchtime
,
stones
=
p
.
runcall
(
test
.
pystone
.
pystones
)
p
.
close
()
print
"Pystone(
%
s) time for
%
d passes =
%
g"
%
\
(
test
.
pystone
.
__version__
,
test
.
pystone
.
LOOPS
,
benchtime
)
print
"This machine benchmarks at
%
g pystones/second"
%
stones
stats
=
hotshot
.
stats
.
load
(
logfile
)
if
cleanup
:
os
.
unlink
(
logfile
)
stats
.
strip_dirs
()
stats
.
sort_stats
(
'time'
,
'calls'
)
try
:
stats
.
print_stats
(
20
)
except
IOError
,
e
:
if
e
.
errno
!=
errno
.
EPIPE
:
raise
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment