-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
[Example] Add comet.py and fix to_numpy() on sparse matrix fields #1583
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
88b727c
tmp save
archibate 502c91c
[Example] Add comet.py and fix to_numpy() on sparse matrix fields
archibate 9784afd
finalize
archibate 00d3d2d
[skip ci] enforce code format
taichi-gardener 384899e
Merge branch 'master' into comet
archibate 73928aa
[skip ci] ti.no_activate for better performance
archibate 88808b9
[skip ci] enforce code format
taichi-gardener File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import taichi as ti | ||
import taichi_glsl as tl | ||
ti.init(arch=[ti.cuda, ti.metal]) | ||
|
||
dim = 3 | ||
N = 1024 * 8 | ||
dt = 2e-4 | ||
steps = 7 | ||
sun = ti.Vector([0.5, 0.5] if dim == 2 else [0.5, 0.5, 0.0]) | ||
gravity = 0.5 | ||
pressure = 0.3 | ||
pps_scale = 0.4 | ||
colorinit = 0.3 | ||
colordeg = 1.6 | ||
initvel = 0.07 | ||
res = 640 | ||
|
||
inv_m = ti.field(ti.f32) | ||
color = ti.field(ti.f32) | ||
x = ti.Vector.field(dim, ti.f32) | ||
v = ti.Vector.field(dim, ti.f32) | ||
ti.root.bitmasked(ti.i, N).place(x, v, inv_m, color) | ||
xcnt = ti.field(ti.i32, ()) | ||
img = ti.field(ti.f32, (res, res)) | ||
|
||
|
||
@ti.kernel | ||
def substep(): | ||
ti.no_activate(x) | ||
for i in x: | ||
r = x[i] - sun | ||
ir = r / r.norm(1e-3)**3 | ||
acci = pressure * ir * inv_m[i] | ||
acci += -gravity * ir | ||
v[i] += acci * dt | ||
|
||
x[i] += v[i] * dt | ||
color[i] *= ti.exp(-dt * colordeg) | ||
|
||
if not all(-0.1 <= x[i] <= 1.1): | ||
ti.deactivate(x.snode().parent(), [i]) | ||
|
||
|
||
@ti.kernel | ||
def generate(): | ||
r = x[0] - sun | ||
ir = 1 / r.norm(1e-3)**2 | ||
pps = int(pps_scale * ir) | ||
for _ in range(pps): | ||
r = x[0] | ||
if ti.static(dim == 3): | ||
r = tl.randUnit3D() | ||
else: | ||
r = tl.randUnit2D() | ||
xi = ti.atomic_add(xcnt[None], 1) % (N - 1) + 1 | ||
x[xi] = x[0] | ||
v[xi] = r * initvel + v[0] | ||
inv_m[xi] = 0.5 + ti.random() | ||
color[xi] = colorinit | ||
|
||
|
||
@ti.kernel | ||
def render(): | ||
for p in ti.grouped(img): | ||
img[p] = 1e-6 / (p / res - ti.Vector([sun.x, sun.y])).norm(1e-4)**3 | ||
for i in x: | ||
p = int(ti.Vector([x[i].x, x[i].y]) * res) | ||
img[p] += color[i] | ||
|
||
|
||
inv_m[0] = 0 | ||
x[0].x = +0.5 | ||
x[0].y = -0.01 | ||
v[0].x = +0.6 | ||
v[0].y = +0.4 | ||
color[0] = 1 | ||
|
||
gui = ti.GUI('Comet', res) | ||
while gui.running: | ||
gui.running = not gui.get_event(gui.ESCAPE) | ||
generate() | ||
for s in range(steps): | ||
substep() | ||
render() | ||
gui.set_image(img) | ||
gui.show() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we automatically use
ti.no_activate(x)
when:x
.x[i]
is written.e.g.:
Thoughts? @xumingkuan @yuanming-hu