Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 8b951d5

Browse files
instructions
1 parent 9b12d1a commit 8b951d5

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed

‎src/app/nav/Nav.css‎

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,44 @@
2727
padding-top: 25px;
2828
}
2929

30+
#info {
31+
display:inline-block;
32+
float:right;
33+
position: absolute;
34+
height: 100px;
35+
font-size: 1em;
36+
padding-top: 75px;
37+
padding-left: 93vw;
38+
}
39+
40+
#overlay {
41+
position: fixed;
42+
display: none;
43+
width: 100%;
44+
height: 100%;
45+
top: 0;
46+
left: 0;
47+
right: 0;
48+
bottom: 0;
49+
background-color: rgba(0,0,0,0.5);
50+
z-index: 2;
51+
cursor: pointer;
52+
}
53+
54+
#information {
55+
position: absolute;
56+
padding: 10px;
57+
top: 50%;
58+
left: 50%;
59+
transform: translate(-50%, -50%);
60+
background-color: white;
61+
text-align: left;
62+
height: 75vh;
63+
font-family: "Roboto Mono", monospace;
64+
font-weight: 300;
65+
width: 50vw;
66+
}
67+
3068
#logo-text {
3169
width: 20%;
3270
display: inline;

‎src/app/nav/Nav.js‎

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
import React, {Component} from 'react';
22
import './Nav.css'
3+
import FontAwesome from 'react-fontawesome' ;
4+
35

46
class Nav extends Component {
7+
showInstructions() {
8+
document.getElementById("overlay").style.display = "block";
9+
}
10+
11+
off() {
12+
document.getElementById("overlay").style.display = "none";
13+
}
14+
515
render() {
616
return (
717
<div className="top-bar nav">
@@ -15,6 +25,42 @@ class Nav extends Component {
1525
<h3 id="title-text">GPU CLUSTER</h3>
1626
</div>
1727
</a>
28+
<a id="info" onClick={this.showInstructions}>
29+
<FontAwesome name='info-circle' size="2x" className="help logo" id="github" aria-hidden="true"/>
30+
</a>
31+
</div>
32+
</div>
33+
<div id="overlay" onClick={this.off}>
34+
<div id="information">
35+
<h3> ACM@UIUC GPU Cluster </h3>
36+
<p>
37+
An easy way to get access to a GPU. Select a framework to get started. Further instructions will be provided after you launch your container.
38+
</p>
39+
<h4> Rules</h4>
40+
<ul>
41+
<li> Store all data in your vault workspace (/vault/[username]) as this will be the only persistant storage on the system </li>
42+
<li> We can only support two concurrent GPU users, look above to see if there is a free GPU otherwise comeback later </li>
43+
<li> Don't hog time on the cluster </li>
44+
</ul>
45+
<h4> System Specs </h4>
46+
<ul>
47+
<li> Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz </li>
48+
<li> 16 GB of RAM </li>
49+
<li> 120 GB of SSD Storage </li>
50+
<li> 16 TB of RAID0 HDD Storage </li>
51+
<li> GTX 980 Graphics Card </li>
52+
<li> GTX 1070 Graphics Card </li>
53+
</ul>
54+
<h4> Common Datasets Available</h4>
55+
<ul>
56+
<li>MNIST</li>
57+
<li>CIFAR-10</li>
58+
<li>CIFAR-100</li>
59+
<li>IMAGNET2017-DEC</li>
60+
<li>IMAGENET2017-CLS</li>
61+
<li>NYU-DEPTH-V2</li>
62+
</ul>
63+
<p> If you intend to use a common dataset not on this list, instead of downloading into your workspace, place it in /vault/data </p>
1864
</div>
1965
</div>
2066
</div>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /