Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
evcu authored Dec 15, 2017
1 parent b1d8cd5 commit bf138de
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ This is an sudoku-solver implementation coded in three days for GPU-class homewo
nvcc -arch sm_35 -rdc=true -o sudokusolver sudokusolver.cu
./sudokusolver inp.in
```
Which will print out the stdout and save the results in to the inp.sol file.
Which will print out the stdout and save the results of 95 very hard sudoku in to the inp.sol file __in less then 2 seconds.__


Input should have the following form. You can add many problems, separating the 9 line with a space.
```
Expand Down Expand Up @@ -44,8 +45,6 @@ Current:
Future:
- Share bit mask generation task better within block.

__<2s total kernel time for 95 hard sudoku.__

## What cuda-sudoku-solver does.
The `controller` kernel is the main Kernel which calls `fillSudokuSafeAndFork` repeatedly until a solution is found.
The program has some default values like #blocks and #threads.
Expand Down

0 comments on commit bf138de

Please sign in to comment.