Skip to content

Commit

Permalink
Implement mv_prob_homo_taichi and mv_prob_uniform_taichi
Browse files Browse the repository at this point in the history
  • Loading branch information
Routhleck committed Dec 5, 2023
1 parent a2518b1 commit f3e2171
Show file tree
Hide file tree
Showing 5 changed files with 560 additions and 22 deletions.
7 changes: 4 additions & 3 deletions brainpy/_src/math/event/tests/test_event_csrmv_taichi.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@
import brainpy as bp
import brainpy.math as bm
import platform
import sys
from absl.testing import parameterized

import pytest


# pytestmark = pytest.mark.skip(reason="Skipped due to pytest limitations, manual execution required for testing.")

# is_manual_test = False
# if platform.system() == 'Windows' and not is_manual_test:
# pytest.skip('brainpy.math package may need manual tests.', allow_module_level=True)
is_manual_test = False
if sys.platform.startswith('darwin') and not is_manual_test:
pytest.skip('brainpy.math package may need manual tests.', allow_module_level=True)

# bm.set_platform('cpu')

Expand Down
Loading

0 comments on commit f3e2171

Please sign in to comment.