Skip to content

Commit

Permalink
fix CI pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
pjflux2001 committed Oct 2, 2023
1 parent 3dcc1b8 commit 58794e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"outputs": [],
"source": [
"## Initialize Taichi\n",
"ti.init(arch=ti.gpu, device_memory_GB=4.0, dynamic_index=True)\n",
"ti.init(arch=ti.cpu)\n",
"rng = default_rng()\n",
"\n",
"## Initialize data and agents\n",
Expand Down
6 changes: 3 additions & 3 deletions experiments/jupyter/production/imgui.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Size=400,400
Collapsed=0

[Window][Main]
Pos=14,9
Size=327,870
Pos=14,8
Size=327,757
Collapsed=0

[Window][Help]
Pos=358,9
Pos=358,8
Size=864,307
Collapsed=1

2 changes: 1 addition & 1 deletion experiments/jupyter/production/polyphy_2DDiscrete.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self):
self.rng = default_rng()
self.ppInputData = PPInputData_2DDiscrete(self.input_file, self.rng)
self.ppConfig.register_data(self.ppInputData)
ti.init(arch=ti.gpu)
ti.init(arch=ti.cpu)
self.kernels = PPKernels()
self.ppInternalData = PPInternalData_2DDiscrete(self.rng, self.kernels, self.ppConfig)

Expand Down

0 comments on commit 58794e4

Please sign in to comment.