home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / SPD.3.0.shar.gz / SPD.3.0.shar / README < prev    next >
Text File  |  1991-01-13  |  26KB  |  500 lines

  1. STANDARD PROCEDURAL DATABASES, by Eric Haines, 3D/Eye, Inc.
  2.  
  3. [Created while under contract to Hewlett-Packard FSD and HP Laboratories]
  4. Version 3.0, as of 12/17/90
  5.     address: 3D/Eye, Inc., 2359 N. Triphammer Rd, Ithaca, NY 14850
  6.     email: erich@eye.com, wrath.cs.cornell.edu!eye!erich
  7.  
  8. This software package is not copyrighted and can be used freely.
  9.  
  10. History
  11. -------
  12. Versions 1.0 to 1.5 released February to June, 1987 for testing.
  13. Version 2.0 released July, 1987.
  14. Version 2.1 released August, 1987 - corrected info on speed of the HP 320,
  15.     other minor changes to README.
  16. Version 2.2 released November, 1987 - shortened file names to <=12 characters,
  17.     procedure names to <= 32 characters, and ensured that all lines are <= 80
  18.     characters (including return character).
  19. Version 2.3 released March, 1988 - corrected gears.c to avoid interpenetration,
  20.     corrected and added further instructions and global statistics for ray
  21.     tracing to README.
  22. Version 2.4 released May, 1988 - fixed hashing function for mountain.c.
  23. Version 2.5 released October, 1988 - added NFF documentation.
  24. Version 2.6 released August, 1989 - lib_output_cylcone fix (start_norm.w was
  25.     not initialized).
  26. Version 2.7 released July, 1990 - comment correction in lib.c, NFF file
  27.     clarifications.
  28. Version 3.0 released October, 1990 - added teapot.c database, mountain.c
  29.     changed to mount.c, additions to def.h and lib.c, changes to README and
  30.     NFF, added patchlevel.h file.
  31.  
  32. {These files use tab characters worth 8 spaces}
  33.  
  34.  
  35. Introduction
  36. ------------
  37.  
  38.     This software is meant to act as a set of basic test images for ray
  39. tracing algorithms.  The programs generate databases of objects which are
  40. fairly familiar and "standard" to the graphics community, such as the teapot,
  41. a fractal mountain, a tree, a recursively built tetrahedral structure, etc.  I
  42. originally created them for my own testing of ray tracing efficiency schemes.
  43. Since their first release other researchers have used them to test new
  44. algorithms.  In this way, research on algorithmic improvements can be compared
  45. in a more standardized way.  If one researcher ray-traces a car, another a
  46. tree, the question arises, "How many cars to the tree?"  With these databases
  47. we may be comparing oranges and apples ("how many hypercubes to a timeshared
  48. VAX?"), but it's better than comparing oranges and orangutans.  In addition,
  49. this document outlines some statistics that are more meaningful to researchers
  50. than raw timing tests.  Using these statistics along with the same scenes
  51. allows us to compare results in a more meaningful way.
  52.  
  53.     With the development and release of the Anderson benchmarks for graphics
  54. hardware, the use of the SPD package for hardware testing is somewhat
  55. redundant.  Therefore I have deleted references to testing hidden-surface
  56. algorithms in this version.  However, another interesting use for the SPD has
  57. been noted:  debugging.  By comparing the images and the statistics with the
  58. output of your own ray tracer, you can detect program errors.  For example,
  59. "mount" is useful for checking if refraction rays are generated correctly, and
  60. "balls" can check for the correctness of eye and reflection rays.
  61.  
  62.     The images for these databases and other information about them can be
  63. found in "A Proposal for Standard Graphics Environments," IEEE Computer
  64. Graphics and Applications, vol. 7, no. 11, November 1987, pp.  3-5.  See
  65. IEEE CG&A, vol. 8, no. 1, January 1988, p. 18 for the correct image of the
  66. tree database (the only difference is that the sky is blue, not orange).  The
  67. teapot database was added later, and consists of a shiny teapot on a shiny
  68. checkerboard.
  69.  
  70.     The SPD package is available via anonymous FTP from:
  71.  
  72.     freedom.graphics.cornell.edu [128.84.247.85]
  73.     weedeater.math.yale.edu [130.132.23.17]
  74.     cs.uoregon.edu [128.223.4.13]
  75.  
  76. among others.  For those without FTP access, write to the netlib automatic
  77. mailer:  research!netlib and netlib@ornl.gov are the sites.  Send a one line
  78. message "send index" for more information, or "send haines from graphics" for
  79. the latest version of the SPD package.
  80.  
  81.  
  82. File Structure
  83. --------------
  84.  
  85.     Eight different procedural database generators are included.  These were
  86. designed to span a fair range of primitives, modeling structures, lighting and
  87. surface parameters, background conditions, and other factors.  A complexity
  88. factor is provided within each program to control the size of the database
  89. generated.
  90.  
  91. This software package contains the following files:
  92.  
  93.     README - what you are now reading
  94.     NFF - a description of the Neutral File Format used in the SPD
  95.     patchlevel.h - keeps track of patch level
  96.     makefile - used to make the programs (in HP-UX Unix)
  97.     def.h - some useful "C" definitions
  98.     lib.h - globals and library routine declarations
  99.     lib.c - library of routines
  100.     balls.c - fractal ball object (a.k.a. sphereflake) generator
  101.     gears.c - 3D array of interlocking gears generator
  102.     mount.c - fractal mountain and 4 glass ball generator
  103.     rings.c - pyramid of dodecahedral rings generator
  104.     teapot.c - the famous teapot on a checkerboard generator
  105.     tetra.c - recursive tetrahedra generator
  106.     tree.c - tree generator
  107.  
  108.     The compiled and linked programs will output a database in ASCII to stdout
  109. containing viewing parameters, lighting conditions, material properties, and
  110. geometric information.  The data format is called the 'neutral file format'
  111. (or NFF) and is described in the `NFF' file.  This format is meant to be
  112. minimal and easy to attach to a user-written filter program which will convert
  113. the output into a file format of your choosing.
  114.  
  115.     Either of two sets of primitives can be selected for output.  If
  116. OUTPUT_FORMAT is defined as OUTPUT_CURVES, the primitives are spheres, cones,
  117. cylinders, and polygons.  If OUTPUT_FORMAT is set to OUTPUT_PATCHES, the
  118. primitives are output as polygonal patches and polygons (i.e.  all other
  119. primitives are polygonalized).  In this case OUTPUT_RESOLUTION is used to set
  120. the amount of polygonalization of non-polygonal primitives.  In general,
  121. OUTPUT_CURVES is used for ray-trace timing tests, and OUTPUT_PATCHES for
  122. polygon-based algorithm timings.  Note that sphere primitives are not
  123. polygonalized using the simple longitude/latitude tessellation, but rather are
  124. chopped along the six faces of a cube projected onto the sphere.  This
  125. tessellation avoids generation of the cusp points at the sphere's poles and so
  126. eliminates discontinuities due to them.
  127.  
  128.     The size factor is used to control the overall size of the database.
  129. Default values have been chosen such that the maximum number of primitives
  130. less than 10,000 is output.  One purpose of the size factor is to avoid
  131. limiting the uses of these databases.  Depending on the research being done
  132. and the computing facilities available, a larger or smaller number of
  133. primitives may be desired.  The size factor can also be used to show how an
  134. algorithm's time changes as the complexity increases.
  135.  
  136.     To generate the databases, simply type the name of the database and direct
  137. the output as desired, e.g. "balls > balls.nff" creates the default sized
  138. database and sends the output to balls.nff.  A new feature in 3.0 is that you
  139. can enter the size factor on the command line, e.g. "balls 2 > balls.nff"
  140. gives a much smaller database of 91 spheres.  See the header of the database C
  141. file (e.g. "balls.c") for how the size factor affects the output.
  142.  
  143.     Other parameters in the code itself (for example, branching angles for
  144. "tree.c" and the fractal dimension in "mount.c") are included for your own
  145. enjoyment, and so normally should not be changed if the database is used for
  146. timing tests.  Because the hashing function in the original release of
  147. "mount.c" is not very good (at low resolutions there is patterning), there is
  148. a better hashing function provided which can be turned on by defining
  149. NEW_HASH.  Use the old hashing function (i.e.  don't change anything) for
  150. consistency with previously published results.
  151.  
  152.     Since the SPD package is designed to test efficiency, the actual shading
  153. of the images is mostly irrelevant.  All that matters is that reflective
  154. surfaces spawn reflection rays and transmitters spawn refraction rays.  For
  155. this reason the effect of the other shading parameters is up to the
  156. implementer.  Note that light intensities, ambient components, etc. are not
  157. specified.  These may be set however you prefer.  Feel free to change any
  158. colors you wish (especially the garish colors of `rings').  The thrust of
  159. these databases is the testing of rendering speeds, and so the actual color
  160. should not affect these calculations.  An ambient component should be used for
  161. all objects, so that the time to compute it is included in the ray tracing
  162. statistics.  A simple formula for a relative intensity (i.e. between 0 and
  163. 1) for each light and for the ambient component is the following:
  164.  
  165.     sqrt(# lights) / (# lights * 2).
  166.  
  167.     If you desire a model for a good scene description language, NFF is not
  168. it.  Instead, you should look at Craig Kolb's ray-tracer language, which is
  169. part of his excellent RayShade ray tracer, available via anonymous FTP from
  170. weedeater.math.yale.edu [130.132.23.17].  Of the public domain ray tracers,
  171. this is the one to beat in speed.  Also included in his distribution is an awk
  172. filter which converts NFF files to his language.
  173.  
  174.     The programs all attempt to minimize program size (for ease in
  175. distributing) and memory usage, and none allocate any dynamic memory.  As
  176. such, many of the programs are relatively inefficient, regenerating various
  177. data again and again instead of saving intermediate results.  This behavior
  178. was felt to be unimportant, since generating the data is a one-time affair
  179. which normally takes much less time than actually rendering the scene.
  180.  
  181.  
  182. Database Analysis
  183. -----------------
  184.  
  185.     The databases were designed with the idea of diversity in mind.  The
  186. variables considered important were the amount of background visible, the
  187. number of lights, the distribution of sizes of objects, the amount of
  188. reflection and refraction, and the depth complexity (how many objects a ray
  189. from the eye passes through).
  190.  
  191. balls:  This database is sometimes called "sphereflake", as it is generated
  192.     like a snowflake curve.  This database consists mostly of various sized
  193.     spheres.  It has no eye rays which hit the background, and the three light
  194.     sources cause a large number of shadow rays to be generated.
  195.  
  196. gears:  This database consists of a set of meshed gears.  Some of the gears
  197.     are transmitters, making this database lengthy to render.  The gear faces
  198.     each have 144 vertices, and thus tests polygon inside/outside test
  199.     efficiency.  Depth complexity is medium.
  200.  
  201. mount:  The fractal mountain generator is derived from Loren Carpenter's
  202.     method, and the composition with the four glass spheres is inspired by
  203.     Peter Watterberg's work.  Most objects are tiny (i.e. fractal facets),
  204.     but rendering time is dominated by the rendering of the four large
  205.     spheres.  Depth complexity is low, and there is much background area.
  206.  
  207. rings:  Objects with six pentagonal rings form a pyramid against a background
  208.     polygon.  With a high amount of interreflection and shadowing, this scene
  209.     is fairly lengthy to render.  Depth complexity is also high, with
  210.     all of the objects partially or fully obscured.
  211.  
  212. teapot:  The famous teapot on a checkerboard.  There are a number of
  213.     variations on the teapot database, i.e.  whether the bottom is included
  214.     (the IEEE CG&A article added a bottom), variations in the control points
  215.     on the lid (which creates thin, almost degenerate triangles), etc.  For
  216.     this database generator, the bottom is created, and the degenerate
  217.     polygonal patches at the center of the lid and bottom are not output.  The
  218.     bottom of the teapot is not flat, interestingly enough.  The resolution of
  219.     the checkerboard shows the resolution of the teapot meshing (with each
  220.     teapot quadrilateral cut into two triangles), e.g. an 8x8 checkerboard
  221.     means that 8x8x2 triangles are generated per patch.  The definitions for
  222.     the 32 Bezier patches are a part of the program.  All objects are
  223.     reflective and there are two light sources.  Depth complexity is low.
  224.  
  225. tetra:  A recursive tetrahedral pyramid, first visualized by Benoit Mandelbrot
  226.     and Alan Norton.  This scene is dominated by background (around 80%).  With
  227.     the objects not being reflective and there being only one light source,
  228.     this database is particularly quick to render, with various forms of
  229.     coherency being very useful.  Depth complexity is medium, though some
  230.     rays must pass by many triangles for some of the background pixels.
  231.  
  232. tree:  A tree formed using Aono and Kunii's tree generation method.  With
  233.     seven light sources, the emphasis is on shadow testing.  Shadow caching
  234.     yields little improvement due to the narrow primitives, and many shadow
  235.     rays pass through complex areas without hitting any objects.  There is a
  236.     fair amount of background area.  Depth complexity is low.
  237.  
  238.  
  239.                 balls      gears       mount       rings
  240.                 -----      -----       -----       -----
  241. primitives        SP         P           PS         YSP
  242. total prim.      7382       9345        8196        8401
  243. poly/patches    1417K       9345        8960        874K
  244.  
  245. lights            3          5           1           3
  246. background        0%         7%         34%          0%
  247. specular         yes        yes         yes         yes
  248. transmitter       no        yes         yes          no
  249.  
  250. eye hit rays   263169     245086      173125      263169
  251. reflect rays   175095     304643      354769      315236
  252. refract rays        0     207564      354769           0
  253. shadow rays    954368    2246955      412922     1085002
  254.  
  255.  
  256.                teapot       tetra        tree
  257.                ------       -----        ----
  258. primitives       TP           P           OSP
  259. total prim.      9264        4096        8191
  260. poly/patches     9264        4096        852K
  261.  
  262. lights            2           1           7
  263. background       39%         81%         35%
  264. reflector        yes          no          no
  265. transmitter       no          no          no
  266.  
  267. eye hit rays   161120       49788      169836
  268. reflect rays   225248           0           0
  269. refract rays        0           0           0
  270. shadow rays    407656       46112     1097419
  271.  
  272.  
  273.     "primitives" are S=sphere, P=polygon, T=polygonal patch, Y=cylinder,
  274. O=cone, listed from most in database to least.
  275.  
  276.     "total prim." is the total number of ray-tracing primitives (polygons,
  277. spheres, cylinders and cones) in the scene.  The number of polygons and vectors
  278. generated is a function of the OUTPUT_RESOLUTION.  The default value for this
  279. parameter is 4 for all databases.
  280.  
  281.     "poly/patches" is the total number of polygons and polygonal patches
  282. generated when using OUTPUT_PATCHES.
  283.  
  284.     "lights" is simply the number of lights in a scene.  "background" is the
  285. percentage of background color (empty space) seen directly by the eye for the
  286. given view.  "reflector" tells if there are reflective objects in the scene,
  287. and "transmitter" if there are transparent objects.
  288.  
  289.     "eye hit rays" is the number of rays from the eye which actually hit an
  290. object (i.e. not the background).  513x513 eye rays are assumed to be shot
  291. (i.e. one ray per pixel corner).  "reflect rays" is the total number of rays
  292. generated by reflection off of reflecting and transmitting surfaces.  "refract
  293. rays" is the number of rays generated by transmitting surfaces.  "shadow rays"
  294. is the sum total of rays shot towards the lights.  Note that if a surface is
  295. facing away from a light, or the background is hit, a light ray is not formed.
  296. The numbers given can vary noticeably from a given ray tracer, but should all
  297. be within about 10%.
  298.  
  299.     "K" means exactly 1000 (not 1024), with number rounded to the nearest K.
  300. All of the above statistics should be approximately the same for all
  301. classical ray tracers.
  302.  
  303.  
  304. Testing Procedures
  305. ------------------
  306.  
  307. Below are listed the requirements for testing various algorithms.  These test
  308. conditions should be realizable by most renderers, and are meant to represent
  309. a common mode of operation for each algorithm.  Special features which the
  310. software supports (or standard features which it lacks) should be noted in
  311. your statistics.
  312.  
  313.     1)  The non-polygon (OUTPUT_CURVES) format should normally be used for
  314.     ray-tracing tests.
  315.  
  316.     2)  All opaque (non-transmitting) primitives can be considered one-sided
  317.     for rendering purposes.  Only the outside of primitives are visible in
  318.     the scenes.  The only exception to this is the "teapot" database, in
  319.     which the teapot itself should normally be double sided (this is
  320.     necessary because the lid of the teapot does not fit tightly, allowing
  321.     the viewer to see back faces).
  322.  
  323.     3)  Polygonal patches (which are always triangles in the SPD) should have
  324.     smooth shading, if available.
  325.  
  326.     4)  Specular highlighting should be performed for surfaces with a
  327.     reflective component.  The simple Phong distribution model is
  328.     sufficient.
  329.  
  330.     5)  Light sources are positional.  If unavailable, assign the directional
  331.     lights a vector given by the light position and the viewing "lookat"
  332.     position.
  333.  
  334.     6)  Render at a resolution of 512 x 512 pixels, shooting rays at the
  335.     corners (meaning that 513 x 513 eye rays will be created).  The four
  336.     corner contributions are averaged to arrive at a pixel value.  If
  337.     rendering is done differently, note this fact.  No pixel subdivision
  338.     is performed.
  339.  
  340.     7)  The maximum tree depth is 5 (where the eye ray is of depth 1).  Beyond
  341.     this depth rays do not have to be spawned.
  342.  
  343.     8)  All rays hitting only reflective and transmitting objects spawn
  344.     reflection rays, unless the maximum ray depth was reached by the
  345.     spawning ray.  No adaptive tree depth cutoff is allowed; that is, all
  346.     rays must be spawned (adaptive tree depth is a proven time saver and
  347.     is also dependent on the color model used - see Roy Hall's work for
  348.     details).
  349.  
  350.     9)  All rays hitting transmitting objects spawn refraction rays, unless
  351.     the maximum ray depth was reached or total internal reflection occurs.
  352.     Transmitting rays should be refracted using Snell's Law (i.e. should
  353.     not pass straight through an object).  If total internal reflection
  354.     occurs, a reflection ray should still be generated at this node.  Note
  355.     that all transmitters in the SPD are also reflective, but this is
  356.     not a requirement of the file format itself.
  357.  
  358.     10) A shadow ray is not generated if the surface normal points away from
  359.     the light.  This is true even on transmitting surfaces.  Note any
  360.     changes from this condition.
  361.  
  362.     11) Assume no hierarchy is given with the database (for example, color
  363.     change cannot be used to note a clustering).  The ray tracing program
  364.     itself can create its own hierarchy, but this process should be
  365.     automatic.  Note any exceptions to this (e.g. not including the
  366.     background polygon in the efficiency structure, changing the
  367.     background polygon into an infinite plane, etc).  Such changes can be
  368.     critical for the efficiency of some schemes, so an explanation of why
  369.     changes were made is important.
  370.  
  371.     12) Timing costs should be separated into at least two areas: preprocessing
  372.     and ray-tracing.  Preprocessing includes all time spent initializing,
  373.     reading the database, and creating data structures needed to ray-trace.
  374.     Preprocessing should be all the constant cost operations--those that
  375.     do not change with the resolution of the image.  Ray-tracing is the
  376.     time actually spent tracing the rays (i.e. everything that is not
  377.     preprocessing).
  378.  
  379.     13) Other timing costs which would be of interest are in a breakdown of
  380.     times spent in preprocessing and during actual ray-tracing.  Examples
  381.     include time spent reading in the data itself, creating a hierarchy,
  382.     octree, or item buffer, and times spent on intersection the various
  383.     primitives and on calculating the shade.
  384.  
  385.     14) Time-independent statistics on the performance of the algorithm should
  386.     be gathered.  Some examples are the number of ray/object intersection
  387.     tests, the number of ray/object tests which actually hit objects,
  388.     number of octree or grid nodes accessed, and the number of successful
  389.     shadow cache hits.
  390.  
  391.  
  392. Timings
  393. -------
  394.  
  395. Rendering time of the ray-traced test set on an HP-835, optimized (512 x 512):
  396.  
  397.        Input   Setup  Ray-Tracing  |  Polygon   Sphere    Cyl/Cone    Bounding
  398.             (hr:min:sec)           |   Tests     Tests      Tests    Box Tests
  399. -------------------------------------------------------------------------------
  400. balls   0:14    0:19      24:56    |    822K     6197K        0        51726K
  401. gears   0:56    0:18    1:02:31    |  13703K       0          0       107105K
  402. mount   0:31    0:14      18:49    |   4076K     3978K        0        31106K
  403. rings   0:41    0:33      53:41    |   1045K     5315K     16298K      91591K
  404. teapot  1:02    0:18      25:38    |   7281K       0          0        57050K
  405. tetra   0:15    0:06       3:48    |    965K       0          0         7637K
  406. tree    0:40    0:31      11:36    |    479K      524K      1319K      22002K
  407.  
  408. Input:  time spent reading in the NFF file.
  409.  
  410. Setup:  time spent creating the database and any ray tracing efficiency
  411. structures, and cleaning up after ray trace (does not include "Input" time).
  412.  
  413. Ray-Tracing:  time spent traversing and rendering the pixel grid.
  414.  
  415.  
  416. A typical set of ray tracing intersection statistics for the tetra database is:
  417.  
  418. [these statistics should be the same for all users]
  419.   image size: 512 x 512
  420.   total number of pixels: 262144            [ 512 x 512 ]
  421.   total number of trees generated: 263169        [ 513 x 513 ]
  422.   total number of tree rays generated: 263169        [ no rays spawned ]
  423.   number of eye rays which hit background: 213381    [ 81% - might vary ]
  424.   average number of rays per tree: 1.000000
  425.   average number of rays per pixel: 1.003910
  426.   total number of shadow rays generated: 46111        [ might vary a bit ]
  427.  
  428. [these tests vary depending on the ray-tracing algorithm used]
  429. Intersector performance
  430.   Bounding box intersections:      7636497  -    26.71 usec/test
  431.   Polygon intersections:            964567  -    36.77 usec/test
  432.  
  433. Ray generation
  434.   Eye rays generated:              263169 ( 49788 hit - 18.92% )
  435.   Reflection rays generated:            0
  436.   Refraction rays generated:            0
  437.   Shadow rays generated:            46111
  438.       Coherency hits:                3407  -  7.39 % of total
  439.       Fully tested:                 42704
  440.  
  441.  
  442.     The ray-tracer which generated these statistics is based on hierarchical
  443. bounding boxes generated using Goldsmith & Salmon's automatic hierarchy method
  444. (see IEEE CG&A May 1987).  It no longer uses an item buffer, hence the higher
  445. number of overall intersection tests from earlier SPD versions.
  446.  
  447.     One problem worth analyzing when using the SPD for efficiency tests is how
  448. octree, SEADS, and other space dividing algorithms perform when the background
  449. polygon dimensions are changed (thus changing the size of the outermost
  450. enclosing box, which changes the encoding of the environment).  One analysis of
  451. the effect of the background polygon on RayShade can be found in "Ray Tracing
  452. News", volume 3, number 1.
  453.  
  454.  
  455. Future Work
  456. -----------
  457.  
  458.     These databases are not meant to be the ultimate in standards, but are
  459. presented as an attempt at providing representative modeled environments.  A
  460. number of extensions to the file format could be provided someday, along with
  461. new database generators which use them.  The present databases do not contain
  462. polygons with holes, spline patches, polygonal mesh, triangular strip, or
  463. polyhedron data structures.  Modeling matrices are not output, and CSG
  464. combined primitives are not included.  Light sources are particularly
  465. simplistic.  For a richer, more user-friendly scene description language,
  466. take a look at RayShade or RenderMan.
  467.  
  468.     As far as database geometry is concerned, most scenes have a preponderance
  469. of small primitives.  If you find that these databases do not reflect the type
  470. of environments you render, please write and explain why (or better yet, write
  471. one or more programs that will generate your "typical" environments--maybe it
  472. will get put in the next release).
  473.  
  474.  
  475. Acknowledgements
  476. ----------------
  477.  
  478.     I originally heard of the idea of standard scenes from Don Greenberg back
  479. in 1984.  Some time earlier he and Ed Catmull had talked over coming up with
  480. some standard databases for testing algorithmic claims, and to them must go
  481. the credit for the basic concept.  The idea of making small programs which
  482. generate the data came to me after Tim Kay generously sent huge files of his
  483. tree database via email - I felt there had to be a better way.  Adding the
  484. teapot was inspired by the repeated demand on comp.graphics for this database,
  485. certainly the most famous of all.
  486.  
  487.     Many thanks to the reviewers, listed alphabetically:  Kells Elmquist, Jeff
  488. Goldsmith, Donald Greenberg, David Hook, Craig Kolb, Susan Spach, Rick Speer,
  489. K.R. Subramanian, J. Eric Townsend, Mark VandeWettering, John Wallace, Greg
  490. Ward, and Louise Watson.  Other people who have kindly offered their ideas and
  491. opinions on this project include Brian Barsky, Andrew Glassner, Roy Hall, Chip
  492. Hatfield, Tim Kay, John Recker, Paul Strauss, and Chan Verbeck.  These names
  493. are mentioned mostly as a listing of people interested in this idea.  They do
  494. not necessarily agree (and in some cases strongly disagree) with the validity
  495. of the concept or the choice of databases.
  496.  
  497.     Your comments and suggestions on these databases are appreciated.  Please
  498. do send me any timing results for software and hardware which you test, or any
  499. publications which use the SPD package.
  500.