HPCE / hpce-2017-cw6

2 stars 17 forks source link

Will header file be changed ? #40

Closed malharjajoo closed 6 years ago

malharjajoo commented 6 years ago

Hi,

This is based on issue #7 . It seems that USE_LONG_LONGis being#definedunconditionally Does this mean we will not have to modify any code in the else branch of the ifdef ,ie will the testu01/include/gdef.h file remain as is or might it be changed ?

Example -


#ifdef USE_LONGLONG 
//some code --> we optmize this 
#else 
// some other code --> do we need to optimize ??
#endif
m8pple commented 6 years ago

Yes, it will remain as-is, so you can assume it will take exactly the same path.

Part of the reason I stripped out all the machine-dependent configuration stuff is to try to avoid differences in code paths between students home machines and the target server.