source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/lightspeed/flops_exp.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 454 bytes
Line 
1function f = flops_exp
2% FLOPS_EXP    Flops for exponential
3% FLOPS_EXP returns the number of flops needed to compute the exponential
4% of a scalar.
5
6% This flop count is based on timing the Pentium 4.
7% A neutral flop count is based on source code for C exp() function at
8% http://www.opencores.org/cvsweb.shtml/or1k/newlib/newlib/libm/mathfp/s_exp.c
9
10% if you change this, you should also change flops_pow.
11f = 40;  % P4
12%f = 20; % neutral
Note: See TracBrowser for help on using the repository browser.