2016-04-24 20:07:46 -04:00
|
|
|
#!/usr//bin/python
|
|
|
|
#
|
|
|
|
# driver.py - The driver tests the correctness of the student's cache
|
|
|
|
# simulator and the correctness and performance of their transpose
|
|
|
|
# function. It uses ./test-csim to check the correctness of the
|
|
|
|
# simulator and it runs ./test-trans on three different sized
|
|
|
|
# matrices (32x32, 64x64, and 61x67) to test the correctness and
|
|
|
|
# performance of the transpose function.
|
|
|
|
#
|
|
|
|
import subprocess;
|
|
|
|
import re;
|
|
|
|
import os;
|
|
|
|
import sys;
|
|
|
|
import optparse;
|
|
|
|
|
|
|
|
#
|
|
|
|
# computeMissScore - compute the score depending on the number of
|
|
|
|
# cache misses
|
|
|
|
#
|
|
|
|
def computeMissScore(miss, lower, upper, full_score):
|
|
|
|
if miss <= lower:
|
|
|
|
return full_score
|
2016-04-24 20:32:36 -04:00
|
|
|
if miss >= upper:
|
2016-04-24 20:07:46 -04:00
|
|
|
return 0
|
|
|
|
|
2016-04-24 20:32:36 -04:00
|
|
|
score = (miss - lower) * 1.0
|
2016-04-24 20:07:46 -04:00
|
|
|
range = (upper- lower) * 1.0
|
|
|
|
return round((1 - score / range) * full_score, 1)
|
|
|
|
|
|
|
|
#
|
|
|
|
# main - Main function
|
|
|
|
#
|
|
|
|
def main():
|
|
|
|
|
|
|
|
# Configure maxscores here
|
|
|
|
maxscore= {};
|
|
|
|
maxscore['csim'] = 27
|
|
|
|
maxscore['transc'] = 1
|
|
|
|
maxscore['trans32'] = 8
|
|
|
|
maxscore['trans64'] = 8
|
|
|
|
maxscore['trans61'] = 10
|
|
|
|
|
2016-04-24 20:32:36 -04:00
|
|
|
# Parse the command line arguments
|
2016-04-24 20:07:46 -04:00
|
|
|
p = optparse.OptionParser()
|
2016-04-24 20:32:36 -04:00
|
|
|
p.add_option("-A", action="store_true", dest="autograde",
|
2016-04-24 20:07:46 -04:00
|
|
|
help="emit autoresult string for Autolab");
|
|
|
|
opts, args = p.parse_args()
|
|
|
|
autograde = opts.autograde
|
|
|
|
|
|
|
|
# Check the correctness of the cache simulator
|
|
|
|
print "Part A: Testing cache simulator"
|
|
|
|
print "Running ./test-csim"
|
2016-04-24 20:32:36 -04:00
|
|
|
p = subprocess.Popen("./test-csim",
|
2016-04-24 20:07:46 -04:00
|
|
|
shell=True, stdout=subprocess.PIPE)
|
|
|
|
stdout_data = p.communicate()[0]
|
|
|
|
|
|
|
|
# Emit the output from test-csim
|
|
|
|
stdout_data = re.split('\n', stdout_data)
|
|
|
|
for line in stdout_data:
|
|
|
|
if re.match("TEST_CSIM_RESULTS", line):
|
|
|
|
resultsim = re.findall(r'(\d+)', line)
|
|
|
|
else:
|
|
|
|
print "%s" % (line)
|
|
|
|
|
|
|
|
# Check the correctness and performance of the transpose function
|
|
|
|
# 32x32 transpose
|
|
|
|
print "Part B: Testing transpose function"
|
|
|
|
print "Running ./test-trans -M 32 -N 32"
|
2016-04-24 20:32:36 -04:00
|
|
|
p = subprocess.Popen("./test-trans -M 32 -N 32 | grep TEST_TRANS_RESULTS",
|
2016-04-24 20:07:46 -04:00
|
|
|
shell=True, stdout=subprocess.PIPE)
|
|
|
|
stdout_data = p.communicate()[0]
|
|
|
|
result32 = re.findall(r'(\d+)', stdout_data)
|
2016-04-24 20:32:36 -04:00
|
|
|
|
2016-04-24 20:07:46 -04:00
|
|
|
# 64x64 transpose
|
|
|
|
print "Running ./test-trans -M 64 -N 64"
|
2016-04-24 20:32:36 -04:00
|
|
|
p = subprocess.Popen("./test-trans -M 64 -N 64 | grep TEST_TRANS_RESULTS",
|
2016-04-24 20:07:46 -04:00
|
|
|
shell=True, stdout=subprocess.PIPE)
|
|
|
|
stdout_data = p.communicate()[0]
|
|
|
|
result64 = re.findall(r'(\d+)', stdout_data)
|
2016-04-24 20:32:36 -04:00
|
|
|
|
2016-04-24 20:07:46 -04:00
|
|
|
# 61x67 transpose
|
|
|
|
print "Running ./test-trans -M 61 -N 67"
|
2016-04-24 20:32:36 -04:00
|
|
|
p = subprocess.Popen("./test-trans -M 61 -N 67 | grep TEST_TRANS_RESULTS",
|
2016-04-24 20:07:46 -04:00
|
|
|
shell=True, stdout=subprocess.PIPE)
|
|
|
|
stdout_data = p.communicate()[0]
|
|
|
|
result61 = re.findall(r'(\d+)', stdout_data)
|
2016-04-24 20:32:36 -04:00
|
|
|
|
2016-04-24 20:07:46 -04:00
|
|
|
# Compute the scores for each step
|
|
|
|
csim_cscore = map(int, resultsim[0:1])
|
|
|
|
trans_cscore = int(result32[0]) * int(result64[0]) * int(result61[0]);
|
|
|
|
miss32 = int(result32[1])
|
|
|
|
miss64 = int(result64[1])
|
|
|
|
miss61 = int(result61[1])
|
|
|
|
trans32_score = computeMissScore(miss32, 300, 600, maxscore['trans32']) * int(result32[0])
|
|
|
|
trans64_score = computeMissScore(miss64, 1300, 2000, maxscore['trans64']) * int(result64[0])
|
|
|
|
trans61_score = computeMissScore(miss61, 2000, 3000, maxscore['trans61']) * int(result61[0])
|
|
|
|
total_score = csim_cscore[0] + trans32_score + trans64_score + trans61_score
|
|
|
|
|
|
|
|
# Summarize the results
|
|
|
|
print "\nCache Lab summary:"
|
|
|
|
print "%-22s%8s%10s%12s" % ("", "Points", "Max pts", "Misses")
|
2016-04-24 20:32:36 -04:00
|
|
|
print "%-22s%8.1f%10d" % ("Csim correctness", csim_cscore[0],
|
2016-04-24 20:07:46 -04:00
|
|
|
maxscore['csim'])
|
|
|
|
|
|
|
|
misses = str(miss32)
|
|
|
|
if miss32 == 2**31-1 :
|
|
|
|
misses = "invalid"
|
2016-04-24 20:32:36 -04:00
|
|
|
print "%-22s%8.1f%10d%12s" % ("Trans perf 32x32", trans32_score,
|
2016-04-24 20:07:46 -04:00
|
|
|
maxscore['trans32'], misses)
|
|
|
|
|
|
|
|
misses = str(miss64)
|
|
|
|
if miss64 == 2**31-1 :
|
|
|
|
misses = "invalid"
|
2016-04-24 20:32:36 -04:00
|
|
|
print "%-22s%8.1f%10d%12s" % ("Trans perf 64x64", trans64_score,
|
2016-04-24 20:07:46 -04:00
|
|
|
maxscore['trans64'], misses)
|
|
|
|
|
|
|
|
misses = str(miss61)
|
|
|
|
if miss61 == 2**31-1 :
|
|
|
|
misses = "invalid"
|
2016-04-24 20:32:36 -04:00
|
|
|
print "%-22s%8.1f%10d%12s" % ("Trans perf 61x67", trans61_score,
|
2016-04-24 20:07:46 -04:00
|
|
|
maxscore['trans61'], misses)
|
|
|
|
|
|
|
|
print "%22s%8.1f%10d" % ("Total points", total_score,
|
2016-04-24 20:32:36 -04:00
|
|
|
maxscore['csim'] +
|
|
|
|
maxscore['trans32'] +
|
2016-04-24 20:07:46 -04:00
|
|
|
maxscore['trans64'] +
|
|
|
|
maxscore['trans61'])
|
2016-04-24 20:32:36 -04:00
|
|
|
|
2016-04-24 20:07:46 -04:00
|
|
|
# Emit autoresult string for Autolab if called with -A option
|
|
|
|
if autograde:
|
|
|
|
autoresult="%.1f:%d:%d:%d" % (total_score, miss32, miss64, miss61)
|
|
|
|
print "\nAUTORESULT_STRING=%s" % autoresult
|
2016-04-24 20:32:36 -04:00
|
|
|
|
|
|
|
|
2016-04-24 20:07:46 -04:00
|
|
|
# execute main only if called as a script
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|