Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old numba methods #86

Closed
2 tasks
RemiLehe opened this issue Jul 17, 2017 · 1 comment
Closed
2 tasks

Remove old numba methods #86

RemiLehe opened this issue Jul 17, 2017 · 1 comment

Comments

@RemiLehe
Copy link
Member

RemiLehe commented Jul 17, 2017

These methods are superseded by the new threading methods of PR #80 .

Note: in order to be able to still use the old versions of numba (i.e. <0.34), we should do something like: in threading_utilities.py

if numba.version > 0.34: #The syntax maybe a bit different    
    threading_installed = True    
    prange = numba.prange 
else:
    threading_installed = False
    prange = range

Update: We still need to remove:

  • The old gathering functions
  • The old deposition functions (assuming they are not needed for the laser antenna)
@RemiLehe
Copy link
Member Author

This depends on PR #80 being merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant