Skip to content

Commit

Permalink
Merge pull request #1 from mirt001/mirt001-testing-k-1-2
Browse files Browse the repository at this point in the history
remove k>2 limitation for testing
  • Loading branch information
fnands committed Apr 26, 2022
2 parents 108ffdd + 18972ee commit c0a651b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bfast/monitor/opencl/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def __init__(self,
):
k_valid = list(range(3, 11))

if k not in k_valid:
raise Exception("Current implementation can only handle the following values for k: {}".format(k_valid))
# if k not in k_valid:
# raise Exception("Current implementation can only handle the following values for k: {}".format(k_valid))

super().__init__(start_monitor,
freq,
Expand Down

0 comments on commit c0a651b

Please sign in to comment.