-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a4fa04c
Showing
4 changed files
with
1,393 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
### Sudoku Solver | ||
This is an sudoku-solver implementation coded in three days for GPU-class homework. | ||
|
||
## Parallelizing Sudoku | ||
is hard. The most popular cpu-solution is backtracking, which is built on backtracking and recursion. | ||
|
||
## What cuda-sudoku-solver does. | ||
Generates 50000 blocks, each is capable of solving a logic based sudoku. First one block starts and forks whenever necessary. |
Oops, something went wrong.