Skip to content

Commit

Permalink
minor issue fix with previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pjflux2001 committed Oct 4, 2023
1 parent 3a8d88f commit e9919ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experiments/jupyter/production/polyphy_3DDiscrete.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_3DDiscrete(self.input_file, self.rng)
self.ppConfig.register_data(self.ppInputData)
ti.init(rch=ti.cpu if os.path.exists("/tmp/flag") else ti.gpu, device_memory_GB=4)
ti.init(arch=ti.cpu if os.path.exists("/tmp/flag") else ti.gpu, device_memory_GB=4)
self.kernels = PPKernels()
self.ppInternalData = PPInternalData_3DDiscrete(self.rng, self.kernels, self.ppConfig)

Expand Down

0 comments on commit e9919ea

Please sign in to comment.