view src/Application/SimParams.h @ 0:8ea476474093

Initial add -- gobbeldegook
author Me@portablequad
date Mon, 07 Nov 2011 16:03:01 -0800
parents
children 7566745e812a
line source
1 /*
3 * Copyright Oct 24, 2009 OpenSourceStewardshipFoundation.org
5 * Licensed under GNU General Public License version 2
7 */
11 #ifndef MATRIX_MULT_H_
13 #define MATRIX_MULT_H_
17 #include <stdio.h>
19 #include <unistd.h>
21 #include <malloc.h>
25 #include "../HWSim_lib/VMS/VMS_primitive_data_types.h"
27 #include "ParamHelper/Param.h"
31 //============================== Structures ==============================
35 typedef
37 struct
39 { uint8 *guestApp;
41 uint8 *systemCode;
43 int32 numNodes;
45 }
47 SimulationResults;
53 typedef
55 struct
57 { uint8 *guestApp;
59 uint8 *systemCode;
61 int32 numNodes;
63 SimulationResults *simResults;
65 }
67 SimulationParams;
75 //============================== Functions ================================
79 void
81 printSimResults( SimulationResults simResults );
85 void
87 fill_sim_params_from_bag( SimulationParams *simParams, ParamBag *paramBag );
91 //===========================================================================
95 #endif /*MATRIX_MULT_H_*/