Skip to content

Commit c136464

Browse files
committed
2 parents 0ad0453 + 6a82c05 commit c136464

File tree

26 files changed

+1224
-243
lines changed

26 files changed

+1224
-243
lines changed

Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
all: docs
2+
3+
docs:
4+
cd documentation && mkdocs build && mv ../docs/reference site && rsync -a --delete site/* ../docs/ && rm -rf site
5+
6+
.PHONY: docs

codegen.html

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<html>
22
<head>
33
<!-- Title -->
4-
<title>Try online - The Tensor Algebra Compiler (taco)</title>
4+
<title>Try online - TACO: The Tensor Algebra Compiler</title>
55
<!-- CSS and JavaScript -->
66
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-red.min.css">
77
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
@@ -37,14 +37,14 @@
3737
<header class="mdl-layout__header">
3838
<div class="mdl-layout__header-row">
3939
<!-- Title -->
40-
<a class="menu-title" href="index.html"> <span class="mdl-layout-title">The Tensor Algebra Compiler (taco)</span> </a>
40+
<a class="menu-title" href="index.html"> <span class="mdl-layout-title">TACO: The Tensor Algebra Compiler</span> </a>
4141
<!-- Add spacer, to align navigation to the right -->
4242
<div class="mdl-layout-spacer"></div>
4343
<!-- Navigation -->
4444
<nav class="mdl-navigation">
4545
<a class="mdl-navigation__link" href="docs/index.html">Docs</a>
4646
<a class="mdl-navigation__link" href="publications.html">Publications</a>
47-
<a class="mdl-navigation__link" href="codegen.html">Demo</a>
47+
<a class="mdl-navigation__link" href="codegen.html">Web Tool</a>
4848
<a class="mdl-navigation__link" href="https://github.com/tensor-compiler/taco">GitHub</a>
4949
</nav>
5050
</div>
@@ -73,6 +73,13 @@ <h6 style="margin-bottom: 0px; margin-top: 18px">Input a tensor algebra expressi
7373
<ul id="listExamples" class="mdl-menu mdl-menu--bottom-right mdl-js-menu mdl-js-ripple-effect" for="btnExamples"></ul>
7474
</div>
7575
</td>
76+
<td style="width:150px; padding-right:15px">
77+
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label"
78+
style="width:100%">
79+
<input id="prefix" class="mdl-textfield__input" style="font-family: monospace" spellcheck="false" autocomplete="off" autocorrect="false" autocapitalize="false">
80+
<label class="mdl-textfield__label">(Optional) Prefix</label>
81+
</div>
82+
</td>
7683
<td style="width: 200px">
7784
<button id="btnGetKernel" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect demo-btn">Generate Kernel</button>
7885
</td>

docs/404.html

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@
5959

6060
<a class="" href="/computations/index.html">Computing on Tensors</a>
6161
</li>
62+
<li class="">
63+
64+
<a class="" href="/scheduling/index.html">Providing a Schedule</a>
65+
</li>
6266
</ul>
6367
</li>
6468

docs/computations/index.html

+6-2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@
8484

8585
</ul>
8686
</li>
87+
<li class="">
88+
89+
<a class="" href="../scheduling/index.html">Providing a Schedule</a>
90+
</li>
8791
</ul>
8892
</li>
8993

@@ -219,7 +223,7 @@ <h1 id="delayed-execuation">Delayed Execuation</h1>
219223

220224
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
221225

222-
<a href="../tutorial/index.html" class="btn btn-neutral float-right" title="Tutorial">Next <span class="icon icon-circle-arrow-right"></span></a>
226+
<a href="../scheduling/index.html" class="btn btn-neutral float-right" title="Providing a Schedule">Next <span class="icon icon-circle-arrow-right"></span></a>
223227

224228

225229
<a href="../tensors/index.html" class="btn btn-neutral" title="Defining Tensors"><span class="icon icon-circle-arrow-left"></span> Previous</a>
@@ -251,7 +255,7 @@ <h1 id="delayed-execuation">Delayed Execuation</h1>
251255
<span><a href="../tensors/index.html" style="color: #fcfcfc;">&laquo; Previous</a></span>
252256

253257

254-
<span style="margin-left: 15px"><a href="../tutorial/index.html" style="color: #fcfcfc">Next &raquo;</a></span>
258+
<span style="margin-left: 15px"><a href="../scheduling/index.html" style="color: #fcfcfc">Next &raquo;</a></span>
255259

256260
</span>
257261
</div>

docs/data_analytics/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@
6666

6767
<a class="" href="../computations/index.html">Computing on Tensors</a>
6868
</li>
69+
<li class="">
70+
71+
<a class="" href="../scheduling/index.html">Providing a Schedule</a>
72+
</li>
6973
</ul>
7074
</li>
7175

docs/index.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@
7575

7676
<a class="" href="computations/index.html">Computing on Tensors</a>
7777
</li>
78+
<li class="">
79+
80+
<a class="" href="scheduling/index.html">Providing a Schedule</a>
81+
</li>
7882
</ul>
7983
</li>
8084

@@ -227,5 +231,5 @@ <h1 id="getting-help">Getting Help</h1>
227231

228232
<!--
229233
MkDocs version : 0.17.2
230-
Build Date UTC : 2020-07-26 01:30:52
234+
Build Date UTC : 2021-04-19 19:23:50
231235
-->

docs/machine_learning/index.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@
6666

6767
<a class="" href="../computations/index.html">Computing on Tensors</a>
6868
</li>
69+
<li class="">
70+
71+
<a class="" href="../scheduling/index.html">Providing a Schedule</a>
72+
</li>
6973
</ul>
7074
</li>
7175

@@ -167,7 +171,7 @@
167171
expressed in <a href="../pycomputations/index.html#specifying-tensor-algebra-computations">index
168172
notation</a> as </p>
169173
<p>
170-
<script type="math/tex; mode=display">A_{ij} = B_{ij} \cdot C_{ik} \cdot C_{kj}.</script>
174+
<script type="math/tex; mode=display">A_{ij} = B_{ij} \cdot C_{ik} \cdot D_{kj}.</script>
171175
</p>
172176
<p>You can use the taco C++ library to easily and efficiently compute the SDDMM, as
173177
shown here:</p>

docs/optimization/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@
6666

6767
<a class="" href="../computations/index.html">Computing on Tensors</a>
6868
</li>
69+
<li class="">
70+
71+
<a class="" href="../scheduling/index.html">Providing a Schedule</a>
72+
</li>
6973
</ul>
7074
</li>
7175

docs/pycomputations/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@
6666

6767
<a class="" href="../computations/index.html">Computing on Tensors</a>
6868
</li>
69+
<li class="">
70+
71+
<a class="" href="../scheduling/index.html">Providing a Schedule</a>
72+
</li>
6973
</ul>
7074
</li>
7175

docs/pyreference/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@
6666

6767
<a class="" href="../computations/index.html">Computing on Tensors</a>
6868
</li>
69+
<li class="">
70+
71+
<a class="" href="../scheduling/index.html">Providing a Schedule</a>
72+
</li>
6973
</ul>
7074
</li>
7175

docs/pytensors/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@
6666

6767
<a class="" href="../computations/index.html">Computing on Tensors</a>
6868
</li>
69+
<li class="">
70+
71+
<a class="" href="../scheduling/index.html">Providing a Schedule</a>
72+
</li>
6973
</ul>
7074
</li>
7175

0 commit comments

Comments
 (0)