X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1e73faf0938f7ef712e1711e3b79e0be16441a0e..e96591e449fee7a54bf3ecda31e85fb61df149c9:/src/surf/surfxml_parse.c diff --git a/src/surf/surfxml_parse.c b/src/surf/surfxml_parse.c index 95080a44d5..2cff0983c1 100644 --- a/src/surf/surfxml_parse.c +++ b/src/surf/surfxml_parse.c @@ -115,12 +115,12 @@ double surf_parse_get_bandwidth(const char *string) { "TBps", 1e12 }, { "GBps", 1e9 }, { "MBps", 1e6 }, - { "KBps", 1e3 }, + { "kBps", 1e3 }, { "Bps", 1.0 }, { "", 1.0 }, /* default unit is bytes ber second */ - { "tbps", 0.125 * 1e12 }, - { "gbps", 0.125 * 1e9 }, - { "mbps", 0.125 * 1e6 }, + { "Tbps", 0.125 * 1e12 }, + { "Gbps", 0.125 * 1e9 }, + { "Mbps", 0.125 * 1e6 }, { "kbps", 0.125 * 1e3 }, { "bps", 0.125 }, { NULL, 0 } @@ -132,19 +132,19 @@ double surf_parse_get_power(const char *string) { const struct unit_scale units[] = { { "yottaflops", 1e24 }, - { "yf", 1e24 }, + { "Yf", 1e24 }, { "zettaflops", 1e21 }, - { "zf", 1e21 }, + { "Zf", 1e21 }, { "exaflops", 1e18 }, - { "ef", 1e18 }, + { "Ef", 1e18 }, { "petaflops", 1e15 }, - { "pf", 1e15 }, + { "Pf", 1e15 }, { "teraflops", 1e12 }, - { "tf", 1e12 }, + { "Tf", 1e12 }, { "gigaflops", 1e9 }, - { "gf", 1e9 }, + { "Gf", 1e9 }, { "megaflops", 1e6 }, - { "mf", 1e6 }, + { "Mf", 1e6 }, { "kiloflops", 1e3 }, { "kf", 1e3 }, { "flops", 1.0 },