GithubHelp home page GithubHelp logo

gpumcml's Introduction

=====================================================
||Description of Folders: 
=====================================================

cpumcml: original mcml 
cpumcml_mwc: mcml with MWC RNG
gpumcml/fast: optimized version of GPUMCML
gpumcml/simple: simplified version of GPUMCML
validation: MATLAB scripts and validation results

gpumcml's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

gpumcml's Issues

Double-precision (64-bit) support

What steps will reproduce the problem?
1. comment out #define SINGLE_PRECISION 
2. compile in Visual Studio 2008

Error: windef.h has the same repeated definition
typedef float FLOAT is defined in windef.h, so 
typedef double FLOAT fails to compile

Also,are intrinsic math functions, such as __cosf (), only available in 
single-precision? 


Original issue reported on code.google.com by [email protected] on 6 May 2010 at 6:34

read_file_mco.m returns incorrect refl_ra and trans_ra

These two lines in 'read_file_mco.m' has the same error

115: refl_ra = reshape(refl_ra,step_num(2),step_num(3));
122: trans_ra = reshape(trans_ra,step_num(2),step_num(3));

where 
step_num(2) = nr 
step_num(3) = na (as from gpumcml_io.c)

Array elements refl_ra[r,a] and trans_ra[r,a] in an output file are printed as 
[nr,na]=[0,0], [0,1], [0,2], etc., so in order to reshape them we should write
  reshape(refl_ra,na,nr)
and transpose the result:

115: refl_ra = reshape(refl_ra,step_num(3),step_num(2))';
122: trans_ra = reshape(trans_ra,step_num(3),step_num(2))';

Original issue reported on code.google.com by [email protected] on 1 Nov 2010 at 3:02

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.