Skip to content

Commit

Permalink
reduce memory use in bl_splash.py
Browse files Browse the repository at this point in the history
Reduces accuracy but it's similar visual fidelity
  • Loading branch information
rjmoerland committed Nov 16, 2024
1 parent eb2b122 commit b50095d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/bl_splash.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.16.2
# jupytext_version: 1.16.4
# kernelspec:
# display_name: Python 3 (ipykernel)
# language: python
Expand Down Expand Up @@ -55,7 +55,7 @@
x=x,
y=0,
z=z,
num_orders=20, # lower number of orders such that the image looks good, but we need less memory
num_orders=12, # lower number of orders such that the image looks good, but we need less memory
bead_center=bead_center,
bfp_sampling_n=bfp_sampling_n,
return_grid=True,
Expand Down Expand Up @@ -90,7 +90,7 @@
x=x,
y=0,
z=z,
num_orders=20, # lower the number of orders such that the image looks good, but we need less memory
num_orders=12, # lower the number of orders such that the image looks good, but we need less memory
bead_center=bead_center,
bfp_sampling_n=bfp_sampling_n,
return_grid=True,
Expand Down

0 comments on commit b50095d

Please sign in to comment.