Skip to content

Commit bdae7b2

Browse files
authored
docs: add a section on performance evaluation (#74)
* docs: add a section on performance evaluation * docs: generate performance evaluation graph with Julia and move benchmark code to https://github.com/TensorBFS/TensorInferenceBenchmarks.jl * Improve performance evaluation graph * docs: update the section and graph on performance evaluation * docs: improve ambiguous file names
1 parent eb27f4c commit bdae7b2

File tree

6 files changed

+1010
-5
lines changed

6 files changed

+1010
-5
lines changed

docs/make.jl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ for each in readdir(EXAMPLE_DIR)
2424
# Pkg.activate(Pkg.PREV_ENV_PATH[])
2525
end
2626

27-
const EXTRA_JL = ["performance.jl"]
27+
const EXTRA_JL = ["performance-tips.jl"]
2828
const SRC_DIR = pkgdir(TensorInference, "docs", "src")
2929
for each in EXTRA_JL
3030
cp(joinpath(SRC_DIR, each), joinpath(LITERATE_GENERATED_DIR, each); force=true)
@@ -49,16 +49,17 @@ makedocs(;
4949
pages=[
5050
"Home" => "index.md",
5151
"Background" => [
52-
"Probabilistic Inference" => "probabilisticinference.md",
53-
"Tensor Networks" => "tensornetwork.md",
52+
"Probabilistic Inference" => "probabilistic-inference.md",
53+
"Tensor Networks" => "tensor-networks.md",
5454
"UAI file formats" => "uai-file-formats.md"
5555
],
5656
"Examples" => [
5757
"Overview" => "examples-overview.md",
5858
"Asia Network" => "generated/asia-network/main.md",
5959
"Hard-core Lattice Gas" => "generated/hard-core-lattice-gas/main.md",
6060
],
61-
"Performance tips" => "generated/performance.md",
61+
"Performance evaluation" => "performance-evaluation.md",
62+
"Performance tips" => "generated/performance-tips.md",
6263
"API" => [
6364
"Public" => "api/public.md",
6465
"Internal" => "api/internal.md"

0 commit comments

Comments
 (0)