forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathComputing.tsx
More file actions
26 lines (24 loc) · 940 Bytes
/
Computing.tsx
File metadata and controls
26 lines (24 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import styles from "./styles.module.css";
import ComputingMD from "@site/src/components/home/ProjectsOverview/descriptions/Computing.md";
import XTensorXSIMDPicture from "@site/static/img/projects/xtensor_xsimd.svg";
export default function ComputingProjects() {
return (
<div className={styles.container_projects}>
<div className={styles.row_projects}>
<div
className={"col col--6" + " " + styles.col_project_overview_with_padding}
>
<h1 className="padding-none">Scientific computing </h1>
<h2 className={styles.h2_custom}>
Supporting the development of several C++ scientific computing
packages.
</h2>
<ComputingMD />
</div>
<div className={"col col--6 flex-full-centered"+ " " + styles.col_project_overview_with_padding}>
<XTensorXSIMDPicture width={"500px"}/>
</div>
</div>
</div>
);
}