Difference between revisions of "0xCAFEBABE"

From CDOT Wiki
Jump to: navigation, search
(Assignment 1)
(Profile 1: Solving unsteady 1D heat transfer equation)
Line 11: Line 11:
  
 
== Profile 1: Solving unsteady 1D heat transfer equation ==
 
== Profile 1: Solving unsteady 1D heat transfer equation ==
 +
 +
For this project, the code analyzed was to solve a problem with constant value boundary condition.
 +
 +
The code was borrowed from Dr. Pengfei Du, and I had to split up his class calls into function calls, respectively, to help me better analyze it.
 +
 +
Flat profile:
 +
Each sample counts as 0.01 seconds.
 +
 +
  %  cumulative  self              self    total         
 +
time  seconds  seconds    calls  Ts/call  Ts/call  name 
 +
  0.03      0.01    0.01        1    0.00    0.00  _GLOBAL__sub_I__Z5setupR14pdu1dsteadyExp
 +
  99.78    1.03    1.02        1    1.01    1.01  _GLOBAL__sub_I__Z5solvingR15pdu1dsteadyExp
 +
 +
 +
As shown, most of the time taken was in the solving function, which took care of calculating the wave.
 +
 +
- Martin Ristov
  
 
=== Assignment 2 ===
 
=== Assignment 2 ===
 
=== Assignment 3 ===
 
=== Assignment 3 ===

Revision as of 16:47, 14 October 2015

0xCAFEBABE

Team Members

  1. Luv Kapur, Some responsibility
  2. Martin Ristov, Some other responsibility
  3. Steven De Filippis, Hopefully some other responsibility

Email All

Progress

Assignment 1

Profile 1: Solving unsteady 1D heat transfer equation

For this project, the code analyzed was to solve a problem with constant value boundary condition.

The code was borrowed from Dr. Pengfei Du, and I had to split up his class calls into function calls, respectively, to help me better analyze it.

Flat profile: Each sample counts as 0.01 seconds.

 %   cumulative   self              self     total          
time   seconds   seconds    calls  Ts/call  Ts/call  name   
 0.03      0.01     0.01        1     0.00     0.00  _GLOBAL__sub_I__Z5setupR14pdu1dsteadyExp
 99.78     1.03     1.02        1     1.01     1.01  _GLOBAL__sub_I__Z5solvingR15pdu1dsteadyExp


As shown, most of the time taken was in the solving function, which took care of calculating the wave.

- Martin Ristov

Assignment 2

Assignment 3