Thanks Malek for the reply. The run.py script had these lines for the cholesky
input, which were wrong and hence the error:

#    cmd = ['CHOLESKY', '-p' +  str(options.numcpus),
#            options.rootdir + '/kernels/cholesky/inputs/tk23.O']

I had to modify them to the following to specify the correct path to the Input
files:

    cmd = ['CHOLESKY', '-p' +  str(options.numcpus)]
    input = options.rootdir + '/kernels/cholesky/inputs/tk23.O'

It now works fine!

Robin


_______________________________________________
gem5-users mailing list
[email protected]
http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users

Reply via email to