Skip to content

Commit ba85b80

Browse files
author
Jessica Shi
committed
reset paths, remove unused style
1 parent c577b8d commit ba85b80

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

server/taco_server.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ def do_POST(self):
2424

2525
prettyCmd = "taco \"" + cmd.replace(" ", "\" ", 1)
2626

27-
logFile = "/Users/jwshi/Documents/UROP/success.log"
28-
tacoPath = "/Users/jwshi/Documents/UROP/taco/build/bin/taco"
27+
logFile = "/home/ubuntu/success.log"
28+
tacoPath = "/home/ubuntu/taco/build/bin/taco"
2929

3030
prefix = "/tmp/" + str(threading.current_thread().ident) + "_"
3131
writePath = prefix + "taco_kernel.c"
3232
computePath = prefix + "taco_compute.c"
3333
assemblyPath = prefix + "taco_assembly.c"
3434
cmd = tacoPath + " " + cmd + " -write-source=" + writePath + " -write-compute=" + computePath + " -write-assembly=" + assemblyPath
35-
35+
3636
try:
3737
subprocess.check_output(str.split(cmd), timeout=3, stderr=subprocess.STDOUT)
3838
with open(writePath, 'r') as f:

stylesheets/style.css

-9
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,3 @@ ul {
249249
.add-reorder {
250250
line-height: 60px;
251251
}
252-
253-
.mdl-switch.is-checked .mdl-switch__track {
254-
background: rgba(0,0,0,.26);
255-
}
256-
257-
.mdl-switch.is-checked .mdl-switch__thumb {
258-
background: #fafafa
259-
}
260-
}

0 commit comments

Comments
 (0)