Difference between revisions of "Sudo"

From CDOT Wiki
Jump to: navigation, search
(Progress)
(Progress)
Line 19: Line 19:
 
I made some changes to how the application runs in order to profile only the subdivision procedure. I removed the GUI component, and made it so that the only thing the application would do is load a mesh, and then perform the subdivision 4 times.
 
I made some changes to how the application runs in order to profile only the subdivision procedure. I removed the GUI component, and made it so that the only thing the application would do is load a mesh, and then perform the subdivision 4 times.
  
'''<u>Output</u>'''
 
  
[[File:Subdivision output.PNG]]
 
 
'''<u>Output</u>'''
 
'''<u>Output</u>'''
  
[[File:Subdivision output.PNG]]
+
[[File:Subdivision_output.PNG]]
 
'''<u>Flat Profile</u>'''
 
'''<u>Flat Profile</u>'''
  
[[File:Subdivision flat.PNG]]
+
[[File:Subdivision_flat.PNG]]
  
 
'''<u>Subdivide Method</u>'''
 
'''<u>Subdivide Method</u>'''
  
[[File:Subdivision subdivide.PNG]]
+
[[File:Subdivision_subdivide.PNG]]
  
 
'''<u>AddFace Method</u>'''
 
'''<u>AddFace Method</u>'''
  
[[File:Subdivision addFace.PNG]]
+
[[File:Subdivision_addFace.PNG]]
  
 
'''<u>IndexOf Methods</u>'''
 
'''<u>IndexOf Methods</u>'''
  
[[File:Subdivision indexOf.PNG]]
+
[[File:Subdivision_indexOf.PNG]]
  
 
I did not trust the flat profile as it was not accurately reflecting the amount of time that the application took to run, so I used the std::chrono library to measure how long the various functions and sections of code took.
 
I did not trust the flat profile as it was not accurately reflecting the amount of time that the application took to run, so I used the std::chrono library to measure how long the various functions and sections of code took.

Revision as of 18:52, 7 October 2015

Sudo

Team Members

  1. kmpaiva, Kevin Paiva
  2. mlucic3, Mateya Lucic

Sudo Email All

Progress

Assignment 1

Catmull-Clark Mesh Subdivision

After browsing C++ repositories on GitHub in search for a 3D model viewer application, I came across the following repository: https://github.com/tsong/viewer

This repository caught my interest as it was amongst the more straight forward 3D model viewing applications with available source code.

Upon compiling and running the application I played around with it to determine any procedures which seemed like they would benefit from an increase in speed. I found that when calling for subdivision the loaded mesh took a very long time to complete. As a result, I’ve decided to take a look at the code which is involved in that process to determine whether it can benefit from parallelizing.

I made some changes to how the application runs in order to profile only the subdivision procedure. I removed the GUI component, and made it so that the only thing the application would do is load a mesh, and then perform the subdivision 4 times.


Output

File:Subdivision output.PNG Flat Profile

File:Subdivision flat.PNG

Subdivide Method

File:Subdivision subdivide.PNG

AddFace Method

File:Subdivision addFace.PNG

IndexOf Methods

File:Subdivision indexOf.PNG

I did not trust the flat profile as it was not accurately reflecting the amount of time that the application took to run, so I used the std::chrono library to measure how long the various functions and sections of code took.


Analyzing the code, it can be seen that the call structure goes as following:

-> Scene.subdivide(4)

   -> For(4 steps) { mesh.subdivide() }
       -> For(each face in the current mesh) addFaces()
           -> indexOf()

The vast majority of time is being occupied within the addFaces method, where a vast part of that time is occupied getting the index of the edges in the mesh.


Parallelizable?

If the code is reorganized to first find whether a vertex or edge exists in the mesh and then separate the ones that exist from the ones that don’t and perform the necessary operations on them separately and in parallel, it could possibly result in an improvement in run-time.

Assignment 2

Assignment 3