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

Develop #736

Merged
merged 29 commits into from
Aug 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a8dda50
proper initialization of Dnom_tunnel
beck-llr Jun 27, 2024
08985b0
Fix bug for species specific diagnostics with AM vecto
beck-llr Jun 27, 2024
922cc85
fix diag custom functions with python 3.12
Jun 28, 2024
049f169
Handle AM prescribed fields as Cartesian ones
beck-llr Jun 28, 2024
e108d24
Small doc improvement on external and prescribed fields
beck-llr Jun 28, 2024
78c57bf
fix python changes for tornado
Jun 28, 2024
20c472e
Handle species reflective boundary conditions on Rmax in AM.
beck-llr Jul 1, 2024
4ba471a
fix happi average (last bin)
Jul 2, 2024
4aaef8b
clarification on the Prescribed Fields in the doc
Jul 5, 2024
9b42649
move initExchParticles outside of dynamics
Jul 11, 2024
42d097b
remove useless test in exch particles
Jul 11, 2024
da16dc0
New am shape functions
beck-llr Jul 12, 2024
0f98f09
Merge branch 'newAM_shape_functions' into 'develop'
beck-llr Jul 12, 2024
fb430ac
Update release status
beck-llr Jul 12, 2024
41e8dfa
fix again threading with python
Jul 16, 2024
4f4fc13
Merge branch 'develop' of llrgit.in2p3.fr:smilei/smilei into develop
Jul 16, 2024
e633efe
Correct buffer intialization for Ruyten Projector
beck-llr Jul 17, 2024
20e17af
Merge branch 'develop' of llrgit.in2p3.fr:smilei/smilei into develop
beck-llr Jul 17, 2024
53c761b
Typo in Ruyten interpolator
beck-llr Jul 17, 2024
de50a84
add warnings for the envelope
Jul 19, 2024
af4ee6d
message to say that the B-TIS3 is activated
Jul 19, 2024
eb16a04
Updated the doc on GPU support
charlesprouveur Jul 21, 2024
387b3b4
Removed useless declaration in 1D GPU projector that triggered unused…
charlesprouveur Jul 22, 2024
9d445cd
fix weight units for openPMD
Jul 25, 2024
27f316f
typo in previous commit
Jul 25, 2024
c95a9be
fixed necessary override in projector 1D order 2 for GPU
charlesprouveur Jul 26, 2024
f2b7bf1
fix for 1D GPU with no diag every iteration
charlesprouveur Aug 8, 2024
3e775f0
removed useless class member pointers Jx_, etc. in 1D, could be don…
charlesprouveur Aug 8, 2024
20231e3
update releases.rst
Aug 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix for 1D GPU with no diag every iteration
  • Loading branch information
charlesprouveur committed Aug 8, 2024
commit f2b7bf1114060fa3f41763bf118b47b5c57cc78a
2 changes: 1 addition & 1 deletion src/Projector/Projector1D2OrderGPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ void Projector1D2OrderGPU::currentsAndDensityWrapper( ElectroMagn *EMfields,
else{

#if defined( SMILEI_ACCELERATOR_GPU )
currentDepositionKernel1DOnDevice(Jx_, Jy_, Jz_,
currentDepositionKernel1DOnDevice(EMfields->Jx_->data(), EMfields->Jz_->data(), EMfields->Jz_->data(),
EMfields->Jx_->size(), EMfields->Jy_->size(), EMfields->Jz_->size(),
particles.getPtrPosition( 0 ),
particles.getPtrMomentum( 1 ),
Expand Down