Skip to content

Commit ca3baba

Browse files
committed
Minor modifications and formatting
1 parent 5706583 commit ca3baba

File tree

5 files changed

+25
-10
lines changed

5 files changed

+25
-10
lines changed

_data/why_taco.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ items:
22
- title: TACO is versatile!
33
icon: fa-wrench
44
description: >
5-
TACO supports a wide range of sparse (and dense) linear and tensor algebra computations, from simpler ones like sparse matrix-vector multiplication to more complex ones like MTTKRP on higher-order sparse tensors. Tensors can be stored in a variety of storage formats, including many commonly used sparse matrix and tensor formats such as CSR and COO.
5+
TACO supports a wide range of sparse (and dense) linear/tensor algebra computations, from simpler ones like sparse matrix-vector multiplication to more complex ones like MTTKRP on higher-order sparse tensors. Tensors can be stored in a variety of storage formats, including commonly-used sparse matrix and tensor formats like CSR and COO as well as specialized formats like CSF.
66
- title: TACO is fast!
77
icon: fa-rocket
88
subtitle:
99
description: >
10-
Under the hood, TACO employs a novel compiler-based technique to generate kernels that are optimized for the computations you want to perform. This enables TACO to achieve performance that exceeds the MATLAB Tensor Toolbox by up to several orders of magnitude and that is competitive with other high-performance sparse linear/tensor algebra libraries like Eigen, Intel oneMKL, and SPLATT.
10+
Under the hood, TACO employs a novel compiler-based technique to generate kernels that are optimized for the computations you want to perform. This lets TACO achieve performance that exceeds the MATLAB Tensor Toolbox by up to several orders of magnitude and that is competitive with other high-performance sparse linear/tensor algebra libraries like Eigen, Intel oneMKL, and SPLATT.
1111
- title: TACO is easy to use!
1212
icon: fa-coffee
1313
description: >
14-
TACO lets you perform complex sparse linear and tensor algebra computations by writing just a few lines of code. TACO provides C++ and Python APIs that can be used in similar ways as other linear algebra libraries like Eigen and SciPy. The command-line tool and web tool also make it easy to build your own library of custom linear/tensor algebra kernels, which you can then statically link to your applications.
14+
TACO lets you perform complex sparse linear and tensor algebra computations by writing just a few lines of code. TACO provides C++ and Python APIs that can be used in similar ways as other linear algebra libraries like Eigen and SciPy. The command-line tool and web tool also make it easy to build your own library of custom linear/tensor algebra kernels that you can link to your applications.
1515
#call_to_action_name: Call to action 3
1616
#call_to_action_link: https://www.csrhymes.com/bulma-clean-theme/page-3/

_includes/demo.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-red.min.css">
22
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
3-
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
43
<link rel="stylesheet" href="stylesheets/style.css">
54
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
65
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
@@ -186,4 +185,3 @@ <h6 style="margin-bottom: 0px; margin-top: 18px">Input a tensor algebra expressi
186185
</div>
187186

188187
<script>demo()</script>
189-

assets/css/app.scss

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
---
22
---
3-
$primary: #FFD150;
43

5-
html {
6-
-webkit-text-size-adjust: none;
7-
}
4+
$family-primary: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
5+
$primary: #ffd85c;
86

97
// Import Main CSS file from theme
108
@import "main";
119

1210
.button.is-primary[disabled] {
1311
border-color: $primary;
1412
}
13+
14+
html {
15+
-webkit-text-size-adjust: none;
16+
}
17+
18+
.navbar-item.is-active {
19+
font-weight: 800;
20+
}

javascripts/demo.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,9 @@ function demo() {
288288
txtExprView.errorMsg = "";
289289
};
290290
txtExprView.timerEvent = setTimeout(markError, model.input.error.delay);
291+
} else {
292+
$("#txtExpr").parent().removeClass('is-invalid');
293+
$("#txtExpr").removeClass('is-danger');
291294
}
292295
} else {
293296
clearTimeout(txtExprView.timerEvent);

stylesheets/style.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ ul {
22
list-style-type: none;
33
}
44

5+
a {
6+
font-weight: 400;
7+
}
8+
9+
p {
10+
line-height: 1.5;
11+
}
12+
513
.sortable {
614
margin: 0px;
715
padding: 0px;
@@ -73,7 +81,7 @@ li {
7381
}
7482

7583
h1, h2, h3, h4, h5, h6 {
76-
font-family: "Montserrat", sans-serif;
84+
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
7785
}
7886

7987
.mdl-grid {

0 commit comments

Comments
 (0)