Skip to content

Commit

Permalink
Add raw data for packing performance
Browse files Browse the repository at this point in the history
This is for discussion opencog#1479
  • Loading branch information
linas committed Mar 27, 2024
1 parent 49bd95c commit bb15f1c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions diary/packing.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

# Hand-measured timing for pack_sentence_for_pruning()
# Discussion #1479
#
# Disjuncts connectors seconds
740634 2900692 1.96
2044261 9121816 6.17
23451107 117142399 500.52
59575111 302831514 4222.75
18 changes: 18 additions & 0 deletions diary/packing.gplot
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

set term png
set out 'packing.png'

set key left

set title "x"
set xlabel "Time"
set ylabel "xxxx"
set logscale x
set logscale y

plot "packing.dat" using 3:(1000000 * $3/$1) with lines lw 2 title "dj", \
"packing.dat" using 3:(1000000 * $3/$2) with lines lw 2 title "con", \
"packing.dat" using 3:(1.0e-6 * $1) with lines lw 2 title "1"

# "packing.dat" using 3:(sqrt($3)) with lines lw 2 title "1"
# ------------------------

0 comments on commit bb15f1c

Please sign in to comment.