From bf138de85427f5e6d7bf7988ab208b98ac59225e Mon Sep 17 00:00:00 2001 From: Utku Evci Date: Fri, 15 Dec 2017 14:11:57 -0500 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4a0509c..733f7a2 100644 --- a/README.md +++ b/README.md @@ -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. ``` @@ -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.