se.py (6387:70172be3f986) | se.py (6391:af82c0870667) |
---|---|
1# Copyright (c) 2006-2008 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright --- 77 unchanged lines hidden (view full) --- 86 87if options.input != "": 88 process.input = options.input 89if options.output != "": 90 process.output = options.output 91if options.errout != "": 92 process.errout = options.errout 93 | 1# Copyright (c) 2006-2008 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright --- 77 unchanged lines hidden (view full) --- 86 87if options.input != "": 88 process.input = options.input 89if options.output != "": 90 process.output = options.output 91if options.errout != "": 92 process.errout = options.errout 93 |
94 95# By default, set workload to path of user-specified binary 96workloads = options.cmd 97 |
|
94if options.detailed: 95 #check for SMT workload 96 workloads = options.cmd.split(';') 97 if len(workloads) > 1: 98 process = [] 99 smt_idx = 0 100 inputs = [] 101 outputs = [] --- 57 unchanged lines hidden --- | 98if options.detailed: 99 #check for SMT workload 100 workloads = options.cmd.split(';') 101 if len(workloads) > 1: 102 process = [] 103 smt_idx = 0 104 inputs = [] 105 outputs = [] --- 57 unchanged lines hidden --- |