- Timestamp:
- Aug 8, 2014 2:55:23 PM (11 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- a953943
- Parents:
- 1726b21
- Location:
- Models
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Models/code_cylinder_f.py
r1726b21 rae7d639 2 2 # -*- coding: utf-8 -*- 3 3 4 import sys 4 5 5 import ctypes 6 6 from ctypes import c_int, c_double, c_void_p … … 45 45 loops_b = cl.Buffer(ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=loops) 46 46 loops_l = cl.LocalMemory(len(loops.data)) 47 47 48 self.prg.CylinderKernel(queue, self.qx.shape, None, 48 49 self.qx_b, self.qy_b, self.res_b, … … 51 52 real(pars['sldCyl']-pars['sldSolv']), 52 53 *[np.uint32(pn) for pn in loop_lengths]) 54 53 55 cl.enqueue_copy(queue, self.res, self.res_b) 54 56 print toc()*1000, self.qx.shape[0] … … 85 87 length.get_weights(pars['length'], 0, 10000, True), 86 88 theta.get_weights(pars['cyl_theta'], -np.inf, np.inf, False), 87 theta.get_weights(pars['cyl_phi'], -np.inf, np.inf, False),89 phi.get_weights(pars['cyl_phi'], -np.inf, np.inf, False), 88 90 ] 89 91 # Make sure that weights are normalized to peaks at 1 so that
Note: See TracChangeset
for help on using the changeset viewer.