forked from opencog/link-grammar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add raw data for packing performance
This is for discussion opencog#1479
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
# ------------------------ |