Changes

Jump to: navigation, search

GPU610/Cosmosis

1,017 bytes added, 19:38, 1 February 2013
Assignment 1
== Progress ==
=== Assignment 1 ===
For our assignment 1, we are looking into finding and N-body simulator. All of us in the group have agreed to find 1 each, and after profiling them, we will choose the most inefficient one to parallelizeparrallelize.
=====Example Profiles=====
When run with 1000 bodies:
[[File:1000BodyProfile.png]]
 
 
When run with 2500 bodies:
[[File:2500_bodies_profile.PNG]]
 
 
When run with 10000 bodies:
[[File:10000_bodies_profile.PNG]]
 
 
All of these profiles where ran for about 4 to 5 minutes each. It seems that when the body count is low (1000) the program spends most of its time in the '''addforces()''' function, which is a user defined function within one of the source files. However, when the body count gets higher, it seems that the program slows down so much from having to draw all of the bodies, it spends most of its time in the Java defined'''fillOval()''' function, rather than the '''addforces()''' function. I'm not entirely sure if we would be able to parrallelize that function, since it is in a library. It may be possible to simply define a function that does the same thing and put it in the program.
 
 
'''Coming Soon'''
 
An applet that uses the same Body class, but has an improved algorithm. I will profile it and see if that one may be better suited to our needs.
=== Assignment 2 ===
=== Assignment 3 ===
1
edit

Navigation menu