[8a20be5] | 1 | #!/usr/bin/env python |
---|
| 2 | # -*- coding: utf-8 -*- |
---|
| 3 | |
---|
[87985ca] | 4 | import sys |
---|
| 5 | import math |
---|
[d547f16] | 6 | from os.path import basename, dirname, join as joinpath |
---|
| 7 | import glob |
---|
[87985ca] | 8 | |
---|
[1726b21] | 9 | import numpy as np |
---|
[473183c] | 10 | |
---|
[87985ca] | 11 | from sasmodels.bumps_model import BumpsModel, plot_data, tic |
---|
[87fce00] | 12 | try: from sasmodels import kernelcl |
---|
| 13 | except: from sasmodels import kerneldll as kernelcl |
---|
| 14 | from sasmodels import kerneldll |
---|
[87985ca] | 15 | from sasmodels.convert import revert_model |
---|
[750ffa5] | 16 | kerneldll.ALLOW_SINGLE_PRECISION_DLLS = True |
---|
[87985ca] | 17 | |
---|
[d547f16] | 18 | # List of available models |
---|
| 19 | ROOT = dirname(__file__) |
---|
| 20 | MODELS = [basename(f)[:-3] |
---|
| 21 | for f in sorted(glob.glob(joinpath(ROOT,"sasmodels","models","[a-zA-Z]*.py")))] |
---|
| 22 | |
---|
[8a20be5] | 23 | |
---|
| 24 | def sasview_model(modelname, **pars): |
---|
[87985ca] | 25 | """ |
---|
| 26 | Load a sasview model given the model name. |
---|
| 27 | """ |
---|
| 28 | # convert model parameters from sasmodel form to sasview form |
---|
| 29 | #print "old",sorted(pars.items()) |
---|
| 30 | modelname, pars = revert_model(modelname, pars) |
---|
| 31 | #print "new",sorted(pars.items()) |
---|
[87c722e] | 32 | sas = __import__('sas.models.'+modelname) |
---|
| 33 | ModelClass = getattr(getattr(sas.models,modelname,None),modelname,None) |
---|
[8a20be5] | 34 | if ModelClass is None: |
---|
[87c722e] | 35 | raise ValueError("could not find model %r in sas.models"%modelname) |
---|
[8a20be5] | 36 | model = ModelClass() |
---|
| 37 | |
---|
| 38 | for k,v in pars.items(): |
---|
| 39 | if k.endswith("_pd"): |
---|
| 40 | model.dispersion[k[:-3]]['width'] = v |
---|
| 41 | elif k.endswith("_pd_n"): |
---|
| 42 | model.dispersion[k[:-5]]['npts'] = v |
---|
| 43 | elif k.endswith("_pd_nsigma"): |
---|
| 44 | model.dispersion[k[:-10]]['nsigmas'] = v |
---|
[87985ca] | 45 | elif k.endswith("_pd_type"): |
---|
| 46 | model.dispersion[k[:-8]]['type'] = v |
---|
[8a20be5] | 47 | else: |
---|
| 48 | model.setParam(k, v) |
---|
| 49 | return model |
---|
| 50 | |
---|
[87985ca] | 51 | def load_opencl(modelname, dtype='single'): |
---|
| 52 | sasmodels = __import__('sasmodels.models.'+modelname) |
---|
| 53 | module = getattr(sasmodels.models, modelname, None) |
---|
[f786ff3] | 54 | kernel = kernelcl.load_model(module, dtype=dtype) |
---|
[87985ca] | 55 | return kernel |
---|
| 56 | |
---|
| 57 | def load_ctypes(modelname, dtype='single'): |
---|
| 58 | sasmodels = __import__('sasmodels.models.'+modelname) |
---|
| 59 | module = getattr(sasmodels.models, modelname, None) |
---|
[f786ff3] | 60 | kernel = kerneldll.load_model(module, dtype=dtype) |
---|
[87985ca] | 61 | return kernel |
---|
| 62 | |
---|
| 63 | def randomize(p, v): |
---|
| 64 | """ |
---|
| 65 | Randomizing parameter. |
---|
| 66 | |
---|
| 67 | Guess the parameter type from name. |
---|
| 68 | """ |
---|
| 69 | if any(p.endswith(s) for s in ('_pd_n','_pd_nsigma','_pd_type')): |
---|
| 70 | return v |
---|
| 71 | elif any(s in p for s in ('theta','phi','psi')): |
---|
| 72 | # orientation in [-180,180], orientation pd in [0,45] |
---|
| 73 | if p.endswith('_pd'): |
---|
| 74 | return 45*np.random.rand() |
---|
| 75 | else: |
---|
| 76 | return 360*np.random.rand() - 180 |
---|
| 77 | elif 'sld' in p: |
---|
| 78 | # sld in in [-0.5,10] |
---|
| 79 | return 10.5*np.random.rand() - 0.5 |
---|
| 80 | elif p.endswith('_pd'): |
---|
| 81 | # length pd in [0,1] |
---|
| 82 | return np.random.rand() |
---|
| 83 | else: |
---|
[b89f519] | 84 | # values from 0 to 2*x for all other parameters |
---|
| 85 | return 2*np.random.rand()*(v if v != 0 else 1) |
---|
[87985ca] | 86 | |
---|
[216a9e1] | 87 | def randomize_model(name, pars, seed=None): |
---|
| 88 | if seed is None: |
---|
| 89 | seed = np.random.randint(1e9) |
---|
| 90 | np.random.seed(seed) |
---|
| 91 | # Note: the sort guarantees order of calls to random number generator |
---|
| 92 | pars = dict((p,randomize(p,v)) for p,v in sorted(pars.items())) |
---|
| 93 | # The capped cylinder model has a constraint on its parameters |
---|
| 94 | if name == 'capped_cylinder' and pars['cap_radius'] < pars['radius']: |
---|
| 95 | pars['radius'],pars['cap_radius'] = pars['cap_radius'],pars['radius'] |
---|
| 96 | return pars, seed |
---|
| 97 | |
---|
[87985ca] | 98 | def parlist(pars): |
---|
| 99 | return "\n".join("%s: %s"%(p,v) for p,v in sorted(pars.items())) |
---|
| 100 | |
---|
| 101 | def suppress_pd(pars): |
---|
| 102 | """ |
---|
| 103 | Suppress theta_pd for now until the normalization is resolved. |
---|
| 104 | |
---|
| 105 | May also suppress complete polydispersity of the model to test |
---|
| 106 | models more quickly. |
---|
| 107 | """ |
---|
| 108 | for p in pars: |
---|
| 109 | if p.endswith("_pd"): pars[p] = 0 |
---|
| 110 | |
---|
[216a9e1] | 111 | def eval_sasview(name, pars, data, Nevals=1): |
---|
| 112 | model = sasview_model(name, **pars) |
---|
| 113 | toc = tic() |
---|
| 114 | for _ in range(Nevals): |
---|
| 115 | if hasattr(data, 'qx_data'): |
---|
| 116 | value = model.evalDistribution([data.qx_data, data.qy_data]) |
---|
| 117 | else: |
---|
| 118 | value = model.evalDistribution(data.x) |
---|
| 119 | average_time = toc()*1000./Nevals |
---|
| 120 | return value, average_time |
---|
| 121 | |
---|
| 122 | def eval_opencl(name, pars, data, dtype='single', Nevals=1, cutoff=0): |
---|
| 123 | try: |
---|
| 124 | model = load_opencl(name, dtype=dtype) |
---|
| 125 | except Exception,exc: |
---|
| 126 | print exc |
---|
| 127 | print "... trying again with single precision" |
---|
| 128 | model = load_opencl(name, dtype='single') |
---|
| 129 | problem = BumpsModel(data, model, cutoff=cutoff, **pars) |
---|
| 130 | toc = tic() |
---|
| 131 | for _ in range(Nevals): |
---|
| 132 | #pars['scale'] = np.random.rand() |
---|
| 133 | problem.update() |
---|
| 134 | value = problem.theory() |
---|
| 135 | average_time = toc()*1000./Nevals |
---|
| 136 | return value, average_time |
---|
| 137 | |
---|
| 138 | def eval_ctypes(name, pars, data, dtype='double', Nevals=1, cutoff=0): |
---|
| 139 | model = load_ctypes(name, dtype=dtype) |
---|
| 140 | problem = BumpsModel(data, model, cutoff=cutoff, **pars) |
---|
| 141 | toc = tic() |
---|
| 142 | for _ in range(Nevals): |
---|
| 143 | problem.update() |
---|
| 144 | value = problem.theory() |
---|
| 145 | average_time = toc()*1000./Nevals |
---|
| 146 | return value, average_time |
---|
| 147 | |
---|
[b89f519] | 148 | def make_data(qmax, is2D, Nq=128, view='log'): |
---|
[216a9e1] | 149 | if is2D: |
---|
[87985ca] | 150 | from sasmodels.bumps_model import empty_data2D, set_beam_stop |
---|
[216a9e1] | 151 | data = empty_data2D(np.linspace(-qmax, qmax, Nq)) |
---|
[87985ca] | 152 | set_beam_stop(data, 0.004) |
---|
| 153 | index = ~data.mask |
---|
[216a9e1] | 154 | else: |
---|
| 155 | from sasmodels.bumps_model import empty_data1D |
---|
[b89f519] | 156 | if view == 'log': |
---|
| 157 | qmax = math.log10(qmax) |
---|
| 158 | q = np.logspace(qmax-3, qmax, Nq) |
---|
| 159 | else: |
---|
| 160 | q = np.linspace(0.001*qmax, qmax, Nq) |
---|
| 161 | data = empty_data1D(q) |
---|
[216a9e1] | 162 | index = slice(None, None) |
---|
| 163 | return data, index |
---|
| 164 | |
---|
[a503bfd] | 165 | def compare(name, pars, Ncpu, Nocl, opts, set_pars): |
---|
[b89f519] | 166 | view = 'linear' if '-linear' in opts else 'log' if '-log' in opts else 'q4' if '-q4' in opts else 'log' |
---|
| 167 | |
---|
[216a9e1] | 168 | opt_values = dict(split |
---|
| 169 | for s in opts for split in ((s.split('='),)) |
---|
| 170 | if len(split) == 2) |
---|
| 171 | # Sort out data |
---|
[29f5536] | 172 | qmax = 10.0 if '-exq' in opts else 1.0 if '-highq' in opts else 0.2 if '-midq' in opts else 0.05 |
---|
[216a9e1] | 173 | Nq = int(opt_values.get('-Nq', '128')) |
---|
| 174 | is2D = not "-1d" in opts |
---|
[b89f519] | 175 | data, index = make_data(qmax, is2D, Nq, view=view) |
---|
[216a9e1] | 176 | |
---|
[87985ca] | 177 | |
---|
| 178 | # modelling accuracy is determined by dtype and cutoff |
---|
| 179 | dtype = 'double' if '-double' in opts else 'single' |
---|
[216a9e1] | 180 | cutoff = float(opt_values.get('-cutoff','1e-5')) |
---|
[87985ca] | 181 | |
---|
| 182 | # randomize parameters |
---|
[b89f519] | 183 | pars.update(set_pars) |
---|
[216a9e1] | 184 | if '-random' in opts or '-random' in opt_values: |
---|
| 185 | seed = int(opt_values['-random']) if '-random' in opt_values else None |
---|
| 186 | pars, seed = randomize_model(name, pars, seed=seed) |
---|
[87985ca] | 187 | print "Randomize using -random=%i"%seed |
---|
| 188 | |
---|
| 189 | # parameter selection |
---|
| 190 | if '-mono' in opts: |
---|
| 191 | suppress_pd(pars) |
---|
| 192 | if '-pars' in opts: |
---|
| 193 | print "pars",parlist(pars) |
---|
| 194 | |
---|
| 195 | # OpenCl calculation |
---|
[a503bfd] | 196 | if Nocl > 0: |
---|
| 197 | ocl, ocl_time = eval_opencl(name, pars, data, dtype, Nocl) |
---|
| 198 | print "opencl t=%.1f ms, intensity=%.0f"%(ocl_time, sum(ocl[index])) |
---|
| 199 | #print max(ocl), min(ocl) |
---|
[87985ca] | 200 | |
---|
| 201 | # ctypes/sasview calculation |
---|
| 202 | if Ncpu > 0 and "-ctypes" in opts: |
---|
[216a9e1] | 203 | cpu, cpu_time = eval_ctypes(name, pars, data, dtype=dtype, cutoff=cutoff, Nevals=Ncpu) |
---|
[87985ca] | 204 | comp = "ctypes" |
---|
| 205 | print "ctypes t=%.1f ms, intensity=%.0f"%(cpu_time, sum(cpu[index])) |
---|
| 206 | elif Ncpu > 0: |
---|
[216a9e1] | 207 | cpu, cpu_time = eval_sasview(name, pars, data, Ncpu) |
---|
[87985ca] | 208 | comp = "sasview" |
---|
| 209 | print "sasview t=%.1f ms, intensity=%.0f"%(cpu_time, sum(cpu[index])) |
---|
| 210 | |
---|
| 211 | # Compare, but only if computing both forms |
---|
[a503bfd] | 212 | if Nocl > 0 and Ncpu > 0: |
---|
| 213 | #print "speedup %.2g"%(cpu_time/ocl_time) |
---|
| 214 | #print "max |ocl/cpu|", max(abs(ocl/cpu)), "%.15g"%max(abs(ocl)), "%.15g"%max(abs(cpu)) |
---|
| 215 | #cpu *= max(ocl/cpu) |
---|
| 216 | resid, relerr = np.zeros_like(ocl), np.zeros_like(ocl) |
---|
| 217 | resid[index] = (ocl - cpu)[index] |
---|
[87985ca] | 218 | relerr[index] = resid[index]/cpu[index] |
---|
[ba69383] | 219 | #bad = (relerr>1e-4) |
---|
[a503bfd] | 220 | #print relerr[bad],cpu[bad],ocl[bad],data.qx_data[bad],data.qy_data[bad] |
---|
[87985ca] | 221 | print "max(|ocl-%s|)"%comp, max(abs(resid[index])) |
---|
[ba69383] | 222 | print "max(|(ocl-%s)/%s|)"%(comp,comp), max(abs(relerr[index])) |
---|
| 223 | p98 = int(len(relerr[index])*0.98) |
---|
| 224 | print "98%% (|(ocl-%s)/%s|) <"%(comp,comp), np.sort(abs(relerr[index]))[p98] |
---|
| 225 | |
---|
[87985ca] | 226 | |
---|
| 227 | # Plot if requested |
---|
| 228 | if '-noplot' in opts: return |
---|
[1726b21] | 229 | import matplotlib.pyplot as plt |
---|
[87985ca] | 230 | if Ncpu > 0: |
---|
[a503bfd] | 231 | if Nocl > 0: plt.subplot(131) |
---|
[b89f519] | 232 | plot_data(data, cpu, view=view) |
---|
[87985ca] | 233 | plt.title("%s t=%.1f ms"%(comp,cpu_time)) |
---|
[29f5536] | 234 | cbar_title = "log I" |
---|
[a503bfd] | 235 | if Nocl > 0: |
---|
[87985ca] | 236 | if Ncpu > 0: plt.subplot(132) |
---|
[b89f519] | 237 | plot_data(data, ocl, view=view) |
---|
[a503bfd] | 238 | plt.title("opencl t=%.1f ms"%ocl_time) |
---|
[29f5536] | 239 | cbar_title = "log I" |
---|
[a503bfd] | 240 | if Ncpu > 0 and Nocl > 0: |
---|
[87985ca] | 241 | plt.subplot(133) |
---|
[29f5536] | 242 | if '-abs' in opts: |
---|
[b89f519] | 243 | err,errstr,errview = resid, "abs err", "linear" |
---|
[29f5536] | 244 | else: |
---|
[b89f519] | 245 | err,errstr,errview = abs(relerr), "rel err", "log" |
---|
[a503bfd] | 246 | #err,errstr = ocl/cpu,"ratio" |
---|
[b89f519] | 247 | plot_data(data, err, view=errview) |
---|
[87985ca] | 248 | plt.title("max %s = %.3g"%(errstr, max(abs(err[index])))) |
---|
[b89f519] | 249 | cbar_title = errstr if errview=="linear" else "log "+errstr |
---|
[29f5536] | 250 | if is2D: |
---|
| 251 | h = plt.colorbar() |
---|
| 252 | h.ax.set_title(cbar_title) |
---|
[ba69383] | 253 | |
---|
[a503bfd] | 254 | if Ncpu > 0 and Nocl > 0 and '-hist' in opts: |
---|
[ba69383] | 255 | plt.figure() |
---|
| 256 | v = relerr[index] |
---|
| 257 | v[v==0] = 0.5*np.min(np.abs(v[v!=0])) |
---|
| 258 | plt.hist(np.log10(np.abs(v)), normed=1, bins=50); |
---|
| 259 | plt.xlabel('log10(err), err = | F(q) single - F(q) double| / | F(q) double |'); |
---|
| 260 | plt.ylabel('P(err)') |
---|
| 261 | plt.title('Comparison of single and double precision models for %s'%name) |
---|
| 262 | |
---|
[8a20be5] | 263 | plt.show() |
---|
| 264 | |
---|
[87985ca] | 265 | # =========================================================================== |
---|
| 266 | # |
---|
| 267 | USAGE=""" |
---|
| 268 | usage: compare.py model [Nopencl] [Nsasview] [options...] [key=val] |
---|
| 269 | |
---|
| 270 | Compare the speed and value for a model between the SasView original and the |
---|
| 271 | OpenCL rewrite. |
---|
| 272 | |
---|
| 273 | model is the name of the model to compare (see below). |
---|
| 274 | Nopencl is the number of times to run the OpenCL model (default=5) |
---|
| 275 | Nsasview is the number of times to run the Sasview model (default=1) |
---|
| 276 | |
---|
| 277 | Options (* for default): |
---|
| 278 | |
---|
| 279 | -plot*/-noplot plots or suppress the plot of the model |
---|
[2d0aced] | 280 | -single*/-double uses double precision for comparison |
---|
[29f5536] | 281 | -lowq*/-midq/-highq/-exq use q values up to 0.05, 0.2, 1.0, 10.0 |
---|
[216a9e1] | 282 | -Nq=128 sets the number of Q points in the data set |
---|
| 283 | -1d/-2d* computes 1d or 2d data |
---|
[2d0aced] | 284 | -preset*/-random[=seed] preset or random parameters |
---|
| 285 | -mono/-poly* force monodisperse/polydisperse |
---|
| 286 | -ctypes/-sasview* whether cpu is tested using sasview or ctypes |
---|
| 287 | -cutoff=1e-5*/value cutoff for including a point in polydispersity |
---|
| 288 | -pars/-nopars* prints the parameter set or not |
---|
| 289 | -abs/-rel* plot relative or absolute error |
---|
[b89f519] | 290 | -linear/-log/-q4 intensity scaling |
---|
[ba69383] | 291 | -hist/-nohist* plot histogram of relative error |
---|
[87985ca] | 292 | |
---|
| 293 | Key=value pairs allow you to set specific values to any of the model |
---|
| 294 | parameters. |
---|
| 295 | |
---|
| 296 | Available models: |
---|
| 297 | |
---|
| 298 | %s |
---|
| 299 | """ |
---|
| 300 | |
---|
[216a9e1] | 301 | NAME_OPTIONS = set([ |
---|
[87985ca] | 302 | 'plot','noplot', |
---|
| 303 | 'single','double', |
---|
[29f5536] | 304 | 'lowq','midq','highq','exq', |
---|
[87985ca] | 305 | '2d','1d', |
---|
| 306 | 'preset','random', |
---|
| 307 | 'poly','mono', |
---|
| 308 | 'sasview','ctypes', |
---|
| 309 | 'nopars','pars', |
---|
| 310 | 'rel','abs', |
---|
[b89f519] | 311 | 'linear', 'log', 'q4', |
---|
[ba69383] | 312 | 'hist','nohist', |
---|
[216a9e1] | 313 | ]) |
---|
| 314 | VALUE_OPTIONS = [ |
---|
| 315 | # Note: random is both a name option and a value option |
---|
| 316 | 'cutoff', 'random', 'Nq', |
---|
[87985ca] | 317 | ] |
---|
| 318 | |
---|
[373d1b6] | 319 | def get_demo_pars(name): |
---|
| 320 | import sasmodels.models |
---|
| 321 | __import__('sasmodels.models.'+name) |
---|
| 322 | model = getattr(sasmodels.models, name) |
---|
| 323 | pars = getattr(model, 'demo', None) |
---|
| 324 | if pars is None: pars = dict((p[0],p[2]) for p in model.parameters) |
---|
| 325 | return pars |
---|
| 326 | |
---|
[87985ca] | 327 | def main(): |
---|
| 328 | opts = [arg for arg in sys.argv[1:] if arg.startswith('-')] |
---|
| 329 | args = [arg for arg in sys.argv[1:] if not arg.startswith('-')] |
---|
[d547f16] | 330 | models = "\n ".join("%-15s"%v for v in MODELS) |
---|
[87985ca] | 331 | if len(args) == 0: |
---|
| 332 | print(USAGE%models) |
---|
| 333 | sys.exit(1) |
---|
| 334 | if args[0] not in MODELS: |
---|
| 335 | print "Model %r not available. Use one of:\n %s"%(args[0],models) |
---|
| 336 | sys.exit(1) |
---|
| 337 | |
---|
| 338 | invalid = [o[1:] for o in opts |
---|
[216a9e1] | 339 | if o[1:] not in NAME_OPTIONS |
---|
| 340 | and not any(o.startswith('-%s='%t) for t in VALUE_OPTIONS)] |
---|
[87985ca] | 341 | if invalid: |
---|
| 342 | print "Invalid options: %s"%(", ".join(invalid)) |
---|
| 343 | sys.exit(1) |
---|
| 344 | |
---|
[d547f16] | 345 | # Get demo parameters from model definition, or use default parameters |
---|
| 346 | # if model does not define demo parameters |
---|
| 347 | name = args[0] |
---|
[373d1b6] | 348 | pars = get_demo_pars(name) |
---|
[d547f16] | 349 | |
---|
[87985ca] | 350 | Nopencl = int(args[1]) if len(args) > 1 else 5 |
---|
[ba69383] | 351 | Nsasview = int(args[2]) if len(args) > 2 else 1 |
---|
[87985ca] | 352 | |
---|
| 353 | # Fill in default polydispersity parameters |
---|
| 354 | pds = set(p.split('_pd')[0] for p in pars if p.endswith('_pd')) |
---|
| 355 | for p in pds: |
---|
| 356 | if p+"_pd_nsigma" not in pars: pars[p+"_pd_nsigma"] = 3 |
---|
| 357 | if p+"_pd_type" not in pars: pars[p+"_pd_type"] = "gaussian" |
---|
| 358 | |
---|
| 359 | # Fill in parameters given on the command line |
---|
| 360 | set_pars = {} |
---|
| 361 | for arg in args[3:]: |
---|
| 362 | k,v = arg.split('=') |
---|
| 363 | if k not in pars: |
---|
| 364 | # extract base name without distribution |
---|
| 365 | s = set(p.split('_pd')[0] for p in pars) |
---|
| 366 | print "%r invalid; parameters are: %s"%(k,", ".join(sorted(s))) |
---|
| 367 | sys.exit(1) |
---|
| 368 | set_pars[k] = float(v) if not v.endswith('type') else v |
---|
| 369 | |
---|
| 370 | compare(name, pars, Nsasview, Nopencl, opts, set_pars) |
---|
| 371 | |
---|
[8a20be5] | 372 | if __name__ == "__main__": |
---|
[87985ca] | 373 | main() |
---|