Changes

Jump to: navigation, search

GPU610/DPS915 Team 7 Project Page

50 bytes added, 12:04, 21 February 2018
Sudoku Solver
The remainder of the functions where the majority of the time is spent are called from ''TraceRay''. The timing statements added to the code show that 3261 milliseconds are spent in this nested loop. The total time spent in the application is 3658 milliseconds. Therefore, we can conclude that the majority of the time is spent in the above nested loop. Since one iteration of the loop does not depend on another iteration, the calls to ''TraceRay'' can be parallelized.
'''Sudoku Solverby Ariquddowla Chowdhury'''
<code>
<nowiki>
for (int y_verify=box_y * 3; y_verify < box_y * 3 + 3; y_verify++) {
// For each x in the same box
}
}
</nowiki>
</code>
'''Assessment:'''
9
edits

Navigation menu