This file contains hidden or 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
| [statusline] AV: 00:00:00 / 00:20:14 (0%) A-V: 0.000 | |
| [statusline] AV: 00:00:03 / 00:20:14 (0%) A-V: 0.003 Dropped: 111 | |
| (base) jerry@smallpot:~/Downloads/YouTube$ vim test.log | |
| (base) jerry@smallpot:~/Downloads/YouTube$ cat test.log | |
| [cplayer] Command line options: '-v' '-v' 'Switzerland in 8K ULTRA HD HDR - Heaven of Earth (60 FPS) [linlz7-Pnvw].mkv' | |
| [cplayer] mpv 0.34.1 Copyright © 2000-2021 mpv/MPlayer/mplayer2 projects | |
| [cplayer] built on UNKNOWN | |
| [cplayer] FFmpeg library versions: | |
| [cplayer] libavutil 56.70.100 | |
| [cplayer] libavcodec 58.134.100 |
This file contains hidden or 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
| import taichi as ti | |
| ti.init(arch=ti.gpu) | |
| n_particles = 8192 | |
| n_grid = 128 | |
| dx = 1 / n_grid | |
| dt = 2e-4 | |
| p_rho = 1 |