Changes in sasmodels/kerneldll.py [40a87fa:bde38b5] in sasmodels


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/kerneldll.py

    r40a87fa rbde38b5  
    380380            self.real(cutoff), # cutoff 
    381381        ] 
    382         #print("kerneldll values", values) 
     382        #print("Calling DLL") 
     383        #call_details.show(values) 
    383384        step = 100 
    384         for start in range(0, call_details.pd_prod, step): 
    385             stop = min(start+step, call_details.pd_prod) 
     385        for start in range(0, call_details.num_eval, step): 
     386            stop = min(start + step, call_details.num_eval) 
    386387            args[1:3] = [start, stop] 
    387             #print("calling DLL") 
    388388            kernel(*args) # type: ignore 
    389389 
Note: See TracChangeset for help on using the changeset viewer.