summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-09-16Rename chroma.fileio to chroma.ioStan Seibert
2011-09-16Rewrite test_sample_cdf to use a unittest.TestCase class so that the GPU ↵Stan Seibert
context can be setup and torn down correctly around the test.
2011-09-16Modify test_ray_intersection to use __file__ to file location of test standardStan Seibert
2011-09-16Silence annoying GEANT4 warnings and banners during operation.Stan Seibert
2011-09-16Remove executable flag from camera.py and sim.py, which are no longer scripts.Stan Seibert
2011-09-16Add a srcdir attribute to the chroma.cuda module. This consolidates the ↵Stan Seibert
calculation of the path to the CUDA source code in one place.
2011-09-16Fix reference to _g4chroma moduleStan Seibert
2011-09-16Now use setuptools-built Boost::Python GEANT4 moduleStan Seibert
2011-09-16Update functions to look in chroma/cuda directory for CUDA sourceStan Seibert
2011-09-16Start of setuptools setup.pyStan Seibert
2011-09-16Ignore files generated by setuptoolsStan Seibert
2011-09-16Move C++ source to src directoryStan Seibert
2011-09-16Move CUDA source inside chroma package, rename tests directory to testStan Seibert
2011-09-16File reorganization to move toward standard python package layoutStan Seibert
2011-09-16remove old spnav moduleStan Seibert
2011-09-16Switch to now published spnav module rather than internal copy.Stan Seibert
2011-09-13Now you can run benchmark with a list of test names at the command line to ↵Stan Seibert
only run specific tests. Names currently include: ray, load, propagate, pdf, pdf_eval
2011-09-13Set better defaults for likelihood calculation.Stan Seibert
2011-09-13mergeStan Seibert
2011-09-13Benchmark to test speed of pdf_eval accumulationStan Seibert
2011-09-12add chroma-sim script. get rid of GPU class; contexts should now be created ↵Anthony LaTorre
with create_cuda_context().
2011-09-12fix space navigator controls.Anthony LaTorre
2011-09-11remove #include.Anthony LaTorre
2011-09-11Add t0 parameters to the vertex generators that set the start timeStan Seibert
of the event.
2011-09-11speedup triangle intersection by reducing STACK_SIZE.Anthony LaTorre
2011-09-11correctly check cuda initialization in create_cuda_context().Anthony LaTorre
2011-09-10store geometry struct in shared memory. this increases photon propagation ↵Anthony LaTorre
speed from 3.3M -> 3.45!.
2011-09-10geometry -> g, triangle -> t. dot(-a,b) <-> -dot(a,b).Anthony LaTorre
2011-09-10round value and uncertainty in ufloat_to_str().Anthony LaTorre
2011-09-10add ray_intersection unit test.Anthony LaTorre
2011-09-10mergeAnthony LaTorre
2011-09-10update 3d mode to work properly when rendering multiple geometries.Anthony LaTorre
2011-09-10mergeStan Seibert
2011-09-10Add the ability to propagate the same photons multiple times on theStan Seibert
the GPU, and run the DAQ multiple times on the same photons in a likelihood calculation. Propagating the same photons in a warp speeds up propagation by a factor of 3 (and we could do this even better if we wanted), and this improves the statistics in a likelihood evaluation quite a bit. Running the DAQ multiple times is also an inexpensive way to improve the quality of the PDF estimates.
2011-09-10Implement len() for event.Photons class.Stan Seibert
2011-09-10new alpha rendering scheme.Anthony LaTorre
2011-09-10update benchmark.pyAnthony LaTorre
2011-09-10update documentation and rename create_context -> create_cuda_context.Anthony LaTorre
2011-09-10change color of pmt shell.Anthony LaTorre
2011-09-09toggle 3d color in Camera class updates screen.Anthony LaTorre
2011-09-09update sphinx documentation.Anthony LaTorre
2011-09-09mergeAnthony LaTorre
2011-09-09chroma-cam script now used to view geometries.Anthony LaTorre
2011-09-08Geometry.build() waits until a certain number of triangles are grouped ↵Anthony LaTorre
together before creating leaf nodes in the bounding volume hierarchy.
2011-09-08add a useful create_context() function to gpu.py which will take over the ↵Anthony LaTorre
current GPU class. get full path name for cuda source inclusion in get_cu_module() and get_cu_source() so that it works when called from outside the package directory.
2011-09-08import submodules in package __init__.pyAnthony LaTorre
2011-09-08speedup from_film() projection.Anthony LaTorre
2011-09-08add normalize() function to transform module. ↵Anthony LaTorre
np.apply_along_axis(np.linalg.norm,...) is really slow!
2011-09-08mergeStan Seibert
2011-09-08repeating_iterator needs a number of repsStan Seibert