123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2016 Université de Bordeaux
- * Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 CNRS
- * Copyright (C) 2017 Inria
- * Copyright (C) 2013 Corentin Salingue
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #ifdef STARPU_USE_CUDA
- #ifndef _GNU_SOURCE
- #define _GNU_SOURCE
- #endif
- #include <sched.h>
- #endif
- #include <stdlib.h>
- #include <math.h>
- #include <starpu.h>
- #include <starpu_cuda.h>
- #include <starpu_opencl.h>
- #include <common/config.h>
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- #include <core/workers.h>
- #include <core/perfmodel/perfmodel.h>
- #include <core/simgrid.h>
- #include <core/topology.h>
- #include <common/utils.h>
- #include <drivers/mpi/driver_mpi_common.h>
- #ifdef STARPU_USE_OPENCL
- #include <starpu_opencl.h>
- #endif
- #ifdef STARPU_HAVE_WINDOWS
- #include <windows.h>
- #endif
- #if defined(HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX) && HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX
- #include <hwloc/cuda.h>
- #endif
- #define SIZE (32*1024*1024*sizeof(char))
- #define NITER 32
- #ifndef STARPU_SIMGRID
- static void _starpu_bus_force_sampling(void);
- #endif
- /* timing is in µs per byte (i.e. slowness, inverse of bandwidth) */
- struct dev_timing
- {
- int numa_id;
- double timing_htod;
- double latency_htod;
- double timing_dtoh;
- double latency_dtoh;
- };
- /* TODO: measure latency */
- static double bandwidth_matrix[STARPU_MAXNODES][STARPU_MAXNODES];
- static double latency_matrix[STARPU_MAXNODES][STARPU_MAXNODES];
- static unsigned was_benchmarked = 0;
- #ifndef STARPU_SIMGRID
- static unsigned ncpus = 0;
- #endif
- static unsigned nnumas = 0;
- static unsigned ncuda = 0;
- static unsigned nopencl = 0;
- static unsigned nmic = 0;
- static unsigned nmpi_ms = 0;
- /* Benchmarking the performance of the bus */
- static double numa_latency[STARPU_MAXNUMANODES][STARPU_MAXNUMANODES];
- static double numa_timing[STARPU_MAXNUMANODES][STARPU_MAXNUMANODES];
- #ifndef STARPU_SIMGRID
- static uint64_t cuda_size[STARPU_MAXCUDADEVS];
- #endif
- #ifdef STARPU_USE_CUDA
- /* preference order of cores (logical indexes) */
- static int cuda_affinity_matrix[STARPU_MAXCUDADEVS][STARPU_MAXNUMANODES];
- #ifndef STARPU_SIMGRID
- #ifdef HAVE_CUDA_MEMCPY_PEER
- static double cudadev_timing_dtod[STARPU_MAXNODES][STARPU_MAXNODES] = {{0.0}};
- static double cudadev_latency_dtod[STARPU_MAXNODES][STARPU_MAXNODES] = {{0.0}};
- #endif
- #endif
- static struct dev_timing cudadev_timing_per_numa[STARPU_MAXCUDADEVS*STARPU_MAXNUMANODES];
- static char cudadev_direct[STARPU_MAXNODES][STARPU_MAXNODES];
- #endif
- #ifndef STARPU_SIMGRID
- static uint64_t opencl_size[STARPU_MAXCUDADEVS];
- #endif
- #ifdef STARPU_USE_OPENCL
- /* preference order of cores (logical indexes) */
- static int opencl_affinity_matrix[STARPU_MAXOPENCLDEVS][STARPU_MAXNUMANODES];
- static struct dev_timing opencldev_timing_per_numa[STARPU_MAXOPENCLDEVS*STARPU_MAXNUMANODES];
- #endif
- #ifdef STARPU_USE_MIC
- static double mic_time_host_to_device[STARPU_MAXNODES] = {0.0};
- static double mic_time_device_to_host[STARPU_MAXNODES] = {0.0};
- #endif /* STARPU_USE_MIC */
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- static double mpi_time_device_to_device[STARPU_MAXMPIDEVS][STARPU_MAXMPIDEVS] = {{0.0}};
- static double mpi_latency_device_to_device[STARPU_MAXMPIDEVS][STARPU_MAXMPIDEVS] = {{0.0}};
- #endif
- #ifdef STARPU_HAVE_HWLOC
- static hwloc_topology_t hwtopology;
- hwloc_topology_t _starpu_perfmodel_get_hwtopology()
- {
- return hwtopology;
- }
- #endif
- #if (defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)) && !defined(STARPU_SIMGRID)
- #ifdef STARPU_USE_CUDA
- static void measure_bandwidth_between_host_and_dev_on_numa_with_cuda(int dev, int numa, int cpu, struct dev_timing *dev_timing_per_cpu)
- {
- struct _starpu_machine_config *config = _starpu_get_machine_config();
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- size_t size = SIZE;
- /* Initialize CUDA context on the device */
- /* We do not need to enable OpenGL interoperability at this point,
- * since we cleanly shutdown CUDA before returning. */
- cudaSetDevice(dev);
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- /* hack to force the initialization */
- cudaFree(0);
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- /* Get the maximum size which can be allocated on the device */
- struct cudaDeviceProp prop;
- cudaError_t cures;
- cures = cudaGetDeviceProperties(&prop, dev);
- if (STARPU_UNLIKELY(cures)) STARPU_CUDA_REPORT_ERROR(cures);
- cuda_size[dev] = prop.totalGlobalMem;
- if (size > prop.totalGlobalMem/4) size = prop.totalGlobalMem/4;
- /* Allocate a buffer on the device */
- unsigned char *d_buffer;
- cures = cudaMalloc((void **)&d_buffer, size);
- STARPU_ASSERT(cures == cudaSuccess);
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- /* Allocate a buffer on the host */
- unsigned char *h_buffer;
-
- #if defined(STARPU_HAVE_HWLOC)
- if (nnumas > 1)
- {
- /* NUMA mode activated */
- hwloc_obj_t obj = hwloc_get_obj_by_type(hwtopology, HWLOC_OBJ_NODE, numa);
- h_buffer = hwloc_alloc_membind_nodeset(hwtopology, size, obj->nodeset, HWLOC_MEMBIND_BIND, 0);
- }
- else
- #endif
- {
- /* we use STARPU_MAIN_RAM */
- _STARPU_MALLOC(h_buffer, size);
- cudaHostRegister((void *)h_buffer, size, 0);
- }
- STARPU_ASSERT(cures == cudaSuccess);
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- /* Fill them */
- memset(h_buffer, 0, size);
- cudaMemset(d_buffer, 0, size);
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- const unsigned timing_numa_index = dev*STARPU_MAXNUMANODES + numa;
- unsigned iter;
- double timing;
- double start;
- double end;
- /* Measure upload bandwidth */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- cudaMemcpy(d_buffer, h_buffer, size, cudaMemcpyHostToDevice);
- cudaThreadSynchronize();
- }
- end = starpu_timing_now();
- timing = end - start;
- dev_timing_per_cpu[timing_numa_index].timing_htod = timing/NITER/size;
- /* Measure download bandwidth */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- cudaMemcpy(h_buffer, d_buffer, size, cudaMemcpyDeviceToHost);
- cudaThreadSynchronize();
- }
- end = starpu_timing_now();
- timing = end - start;
- dev_timing_per_cpu[timing_numa_index].timing_dtoh = timing/NITER/size;
- /* Measure upload latency */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- cudaMemcpy(d_buffer, h_buffer, 1, cudaMemcpyHostToDevice);
- cudaThreadSynchronize();
- }
- end = starpu_timing_now();
- timing = end - start;
- dev_timing_per_cpu[timing_numa_index].latency_htod = timing/NITER;
- /* Measure download latency */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- cudaMemcpy(h_buffer, d_buffer, 1, cudaMemcpyDeviceToHost);
- cudaThreadSynchronize();
- }
- end = starpu_timing_now();
- timing = end - start;
- dev_timing_per_cpu[timing_numa_index].latency_dtoh = timing/NITER;
- /* Free buffers */
- cudaHostUnregister(h_buffer);
- #if defined(STARPU_HAVE_HWLOC)
- if (nnumas > 1)
- {
- /* NUMA mode activated */
- hwloc_free(hwtopology, h_buffer, size);
- }
- else
- #endif
- {
- free(h_buffer);
- }
- cudaFree(d_buffer);
- cudaThreadExit();
- }
- #ifdef HAVE_CUDA_MEMCPY_PEER
- static void measure_bandwidth_between_dev_and_dev_cuda(int src, int dst)
- {
- size_t size = SIZE;
- int can;
- /* Get the maximum size which can be allocated on the device */
- struct cudaDeviceProp prop;
- cudaError_t cures;
- cures = cudaGetDeviceProperties(&prop, src);
- if (STARPU_UNLIKELY(cures)) STARPU_CUDA_REPORT_ERROR(cures);
- if (size > prop.totalGlobalMem/4) size = prop.totalGlobalMem/4;
- cures = cudaGetDeviceProperties(&prop, dst);
- if (STARPU_UNLIKELY(cures)) STARPU_CUDA_REPORT_ERROR(cures);
- if (size > prop.totalGlobalMem/4) size = prop.totalGlobalMem/4;
- /* Initialize CUDA context on the source */
- /* We do not need to enable OpenGL interoperability at this point,
- * since we cleanly shutdown CUDA before returning. */
- cudaSetDevice(src);
- if (starpu_get_env_number("STARPU_ENABLE_CUDA_GPU_GPU_DIRECT") != 0)
- {
- cures = cudaDeviceCanAccessPeer(&can, src, dst);
- if (!cures && can)
- {
- cures = cudaDeviceEnablePeerAccess(dst, 0);
- if (!cures)
- {
- _STARPU_DISP("GPU-Direct %d -> %d\n", dst, src);
- cudadev_direct[src][dst] = 1;
- }
- }
- }
- /* Allocate a buffer on the device */
- unsigned char *s_buffer;
- cures = cudaMalloc((void **)&s_buffer, size);
- STARPU_ASSERT(cures == cudaSuccess);
- cudaMemset(s_buffer, 0, size);
- /* Initialize CUDA context on the destination */
- /* We do not need to enable OpenGL interoperability at this point,
- * since we cleanly shutdown CUDA before returning. */
- cudaSetDevice(dst);
- if (starpu_get_env_number("STARPU_ENABLE_CUDA_GPU_GPU_DIRECT") != 0)
- {
- cures = cudaDeviceCanAccessPeer(&can, dst, src);
- if (!cures && can)
- {
- cures = cudaDeviceEnablePeerAccess(src, 0);
- if (!cures)
- {
- _STARPU_DISP("GPU-Direct %d -> %d\n", src, dst);
- cudadev_direct[dst][src] = 1;
- }
- }
- }
- /* Allocate a buffer on the device */
- unsigned char *d_buffer;
- cures = cudaMalloc((void **)&d_buffer, size);
- STARPU_ASSERT(cures == cudaSuccess);
- cudaMemset(d_buffer, 0, size);
- unsigned iter;
- double timing;
- double start;
- double end;
- /* Measure upload bandwidth */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- cudaMemcpyPeer(d_buffer, dst, s_buffer, src, size);
- cudaThreadSynchronize();
- }
- end = starpu_timing_now();
- timing = end - start;
- cudadev_timing_dtod[src][dst] = timing/NITER/size;
- /* Measure upload latency */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- cudaMemcpyPeer(d_buffer, dst, s_buffer, src, 1);
- cudaThreadSynchronize();
- }
- end = starpu_timing_now();
- timing = end - start;
- cudadev_latency_dtod[src][dst] = timing/NITER;
- /* Free buffers */
- cudaFree(d_buffer);
- cudaSetDevice(src);
- cudaFree(s_buffer);
- cudaThreadExit();
- }
- #endif
- #endif
- #ifdef STARPU_USE_OPENCL
- static void measure_bandwidth_between_host_and_dev_on_numa_with_opencl(int dev, int numa, int cpu, struct dev_timing *dev_timing_per_cpu)
- {
- cl_context context;
- cl_command_queue queue;
- cl_int err=0;
- size_t size = SIZE;
- int not_initialized;
- struct _starpu_machine_config *config = _starpu_get_machine_config();
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- /* Is the context already initialised ? */
- starpu_opencl_get_context(dev, &context);
- not_initialized = (context == NULL);
- if (not_initialized == 1)
- _starpu_opencl_init_context(dev);
- /* Get context and queue */
- starpu_opencl_get_context(dev, &context);
- starpu_opencl_get_queue(dev, &queue);
- /* Get the maximum size which can be allocated on the device */
- cl_device_id device;
- cl_ulong maxMemAllocSize, totalGlobalMem;
- starpu_opencl_get_device(dev, &device);
- err = clGetDeviceInfo(device, CL_DEVICE_MAX_MEM_ALLOC_SIZE, sizeof(maxMemAllocSize), &maxMemAllocSize, NULL);
- if (STARPU_UNLIKELY(err != CL_SUCCESS)) STARPU_OPENCL_REPORT_ERROR(err);
- if (size > (size_t)maxMemAllocSize/4) size = maxMemAllocSize/4;
- err = clGetDeviceInfo(device, CL_DEVICE_GLOBAL_MEM_SIZE , sizeof(totalGlobalMem), &totalGlobalMem, NULL);
- if (STARPU_UNLIKELY(err != CL_SUCCESS)) STARPU_OPENCL_REPORT_ERROR(err);
- opencl_size[dev] = totalGlobalMem;
- if (_starpu_opencl_get_device_type(dev) == CL_DEVICE_TYPE_CPU)
- {
- /* Let's not use too much RAM when running OpenCL on a CPU: it
- * would make the OS swap like crazy. */
- size /= 2;
- }
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- /* Allocate a buffer on the device */
- cl_mem d_buffer;
- d_buffer = clCreateBuffer(context, CL_MEM_READ_WRITE, size, NULL, &err);
- if (STARPU_UNLIKELY(err != CL_SUCCESS)) STARPU_OPENCL_REPORT_ERROR(err);
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- /* Allocate a buffer on the host */
- unsigned char *h_buffer;
- #if defined(STARPU_HAVE_HWLOC)
- if (nnumas > 1)
- {
- /* NUMA mode activated */
- hwloc_obj_t obj = hwloc_get_obj_by_type(hwtopology, HWLOC_OBJ_NODE, numa);
- h_buffer = hwloc_alloc_membind_nodeset(hwtopology, size, obj->nodeset, HWLOC_MEMBIND_BIND, 0);
- }
- else
- #endif
- {
- /* we use STARPU_MAIN_RAM */
- _STARPU_MALLOC(h_buffer, size);
- }
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- /* Fill them */
- memset(h_buffer, 0, size);
- err = clEnqueueWriteBuffer(queue, d_buffer, CL_TRUE, 0, size, h_buffer, 0, NULL, NULL);
- if (STARPU_UNLIKELY(err != CL_SUCCESS)) STARPU_OPENCL_REPORT_ERROR(err);
- clFinish(queue);
- /* hack to avoid third party libs to rebind threads */
- _starpu_bind_thread_on_cpu(config, cpu, STARPU_NOWORKERID);
- const unsigned timing_numa_index = dev*STARPU_MAXNUMANODES + numa;
- unsigned iter;
- double timing;
- double start;
- double end;
- /* Measure upload bandwidth */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- err = clEnqueueWriteBuffer(queue, d_buffer, CL_TRUE, 0, size, h_buffer, 0, NULL, NULL);
- if (STARPU_UNLIKELY(err != CL_SUCCESS)) STARPU_OPENCL_REPORT_ERROR(err);
- clFinish(queue);
- }
- end = starpu_timing_now();
- timing = end - start;
- dev_timing_per_cpu[timing_numa_index].timing_htod = timing/NITER/size;
- /* Measure download bandwidth */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- err = clEnqueueReadBuffer(queue, d_buffer, CL_TRUE, 0, size, h_buffer, 0, NULL, NULL);
- if (STARPU_UNLIKELY(err != CL_SUCCESS)) STARPU_OPENCL_REPORT_ERROR(err);
- clFinish(queue);
- }
- end = starpu_timing_now();
- timing = end - start;
- dev_timing_per_cpu[timing_numa_index].timing_dtoh = timing/NITER/size;
- /* Measure upload latency */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- err = clEnqueueWriteBuffer(queue, d_buffer, CL_TRUE, 0, 1, h_buffer, 0, NULL, NULL);
- if (STARPU_UNLIKELY(err != CL_SUCCESS)) STARPU_OPENCL_REPORT_ERROR(err);
- clFinish(queue);
- }
- end = starpu_timing_now();
- timing = end - start;
- dev_timing_per_cpu[timing_numa_index].latency_htod = timing/NITER;
- /* Measure download latency */
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- err = clEnqueueReadBuffer(queue, d_buffer, CL_TRUE, 0, 1, h_buffer, 0, NULL, NULL);
- if (STARPU_UNLIKELY(err != CL_SUCCESS)) STARPU_OPENCL_REPORT_ERROR(err);
- clFinish(queue);
- }
- end = starpu_timing_now();
- timing = end - start;
- dev_timing_per_cpu[timing_numa_index].latency_dtoh = timing/NITER;
- /* Free buffers */
- err = clReleaseMemObject(d_buffer);
- if (STARPU_UNLIKELY(err != CL_SUCCESS))
- STARPU_OPENCL_REPORT_ERROR(err);
- #if defined(STARPU_HAVE_HWLOC)
- if (nnumas > 1)
- {
- /* NUMA mode activated */
- hwloc_free(hwtopology, h_buffer, size);
- }
- else
- #endif
- {
- free(h_buffer);
- }
- /* Uninitiliaze OpenCL context on the device */
- if (not_initialized == 1)
- _starpu_opencl_deinit_context(dev);
- }
- #endif
- /* NB: we want to sort the bandwidth by DECREASING order */
- static int compar_dev_timing(const void *left_dev_timing, const void *right_dev_timing)
- {
- const struct dev_timing *left = (const struct dev_timing *)left_dev_timing;
- const struct dev_timing *right = (const struct dev_timing *)right_dev_timing;
- double left_dtoh = left->timing_dtoh;
- double left_htod = left->timing_htod;
- double right_dtoh = right->timing_dtoh;
- double right_htod = right->timing_htod;
- double timing_sum2_left = left_dtoh*left_dtoh + left_htod*left_htod;
- double timing_sum2_right = right_dtoh*right_dtoh + right_htod*right_htod;
- /* it's for a decreasing sorting */
- return (timing_sum2_left > timing_sum2_right);
- }
- #ifdef STARPU_HAVE_HWLOC
- #if 0
- static int find_numa_node(hwloc_obj_t obj)
- {
- STARPU_ASSERT(obj);
- hwloc_obj_t current = obj;
- while (current->depth != HWLOC_OBJ_NODE)
- {
- current = current->parent;
- /* If we don't find a "node" obj before the root, this means
- * hwloc does not know whether there are numa nodes or not, so
- * we should not use a per-node sampling in that case. */
- STARPU_ASSERT(current);
- }
- STARPU_ASSERT(current->depth == HWLOC_OBJ_NODE);
- return current->logical_index;
- }
- #endif
- static int find_cpu_from_numa_node(hwloc_obj_t obj)
- {
- STARPU_ASSERT(obj);
- hwloc_obj_t current = obj;
- while (current->depth != HWLOC_OBJ_PU)
- {
- current = current->first_child;
- /* If we don't find a "PU" obj before the leave, this means
- * hwloc does not know whether there are CPU or not. */
- STARPU_ASSERT(current);
- }
- STARPU_ASSERT(current->depth == HWLOC_OBJ_PU);
- return current->logical_index;
- }
- #endif
- static void measure_bandwidth_between_numa_nodes_and_dev(int dev, struct dev_timing *dev_timing_per_numanode, char *type)
- {
- /* We measure the bandwith between each GPU and each NUMA node */
- struct _starpu_machine_config * config = _starpu_get_machine_config();
- const unsigned nnuma_nodes = _starpu_topology_get_nnumanodes(config);
- unsigned numa_id;
- for (numa_id = 0; numa_id < nnuma_nodes; numa_id++)
- {
- /* Store results by starpu id */
- const unsigned timing_numa_index = dev*STARPU_MAXNUMANODES + numa_id;
- /* Store STARPU_memnode for later */
- dev_timing_per_numanode[timing_numa_index].numa_id = numa_id;
- /* Chose one CPU connected to this NUMA node */
- unsigned cpu_id = 0;
- #ifdef STARPU_HAVE_HWLOC
- hwloc_obj_t obj = hwloc_get_obj_by_type(hwtopology, HWLOC_OBJ_NODE, numa_id);
- cpu_id = find_cpu_from_numa_node(obj);
- #endif
- #ifdef STARPU_USE_CUDA
- if (strncmp(type, "CUDA", 4) == 0)
- measure_bandwidth_between_host_and_dev_on_numa_with_cuda(dev, numa_id, cpu_id, dev_timing_per_numanode);
- #endif
- #ifdef STARPU_USE_OPENCL
- if (strncmp(type, "OpenCL", 6) == 0)
- measure_bandwidth_between_host_and_dev_on_numa_with_opencl(dev, numa_id, cpu_id, dev_timing_per_numanode);
- #endif
- }
- }
- static void measure_bandwidth_between_host_and_dev(int dev, struct dev_timing *dev_timing_per_numa, char *type)
- {
- measure_bandwidth_between_numa_nodes_and_dev(dev, dev_timing_per_numa, type);
- #ifdef STARPU_VERBOSE
- struct _starpu_machine_config * config = _starpu_get_machine_config();
- const unsigned nnuma_nodes = _starpu_topology_get_nnumanodes(config);
- unsigned numa_id;
- for (numa_id = 0; numa_id < nnuma_nodes; numa_id++)
- {
- const unsigned timing_numa_index = dev*STARPU_MAXNUMANODES + numa_id;
- double bandwidth_dtoh = dev_timing_per_numa[timing_numa_index].timing_dtoh;
- double bandwidth_htod = dev_timing_per_numa[timing_numa_index].timing_htod;
- double bandwidth_sum2 = bandwidth_dtoh*bandwidth_dtoh + bandwidth_htod*bandwidth_htod;
- _STARPU_DISP("(%10s) BANDWIDTH GPU %d NUMA %u - htod %f - dtoh %f - %f\n", type, dev, numa_id, bandwidth_htod, bandwidth_dtoh, sqrt(bandwidth_sum2));
- }
- #endif
- }
- #endif /* defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL) */
- static void measure_bandwidth_latency_between_numa(int numa_src, int numa_dst)
- {
- #if defined(STARPU_HAVE_HWLOC)
- if (nnumas > 1)
- {
- /* NUMA mode activated */
- double start, end, timing;
- unsigned iter;
- unsigned char *h_buffer;
- hwloc_obj_t obj_src = hwloc_get_obj_by_type(hwtopology, HWLOC_OBJ_NODE, numa_src);
- h_buffer = hwloc_alloc_membind_nodeset(hwtopology, SIZE, obj_src->nodeset, HWLOC_MEMBIND_BIND, 0);
- unsigned char *d_buffer;
- hwloc_obj_t obj_dst = hwloc_get_obj_by_type(hwtopology, HWLOC_OBJ_NODE, numa_dst);
- d_buffer = hwloc_alloc_membind_nodeset(hwtopology, SIZE, obj_dst->nodeset, HWLOC_MEMBIND_BIND, 0);
- memset(h_buffer, 0, SIZE);
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- memcpy(d_buffer, h_buffer, SIZE);
- }
- end = starpu_timing_now();
- timing = end - start;
- numa_timing[numa_src][numa_dst] = timing/NITER/SIZE;
- start = starpu_timing_now();
- for (iter = 0; iter < NITER; iter++)
- {
- memcpy(d_buffer, h_buffer, 1);
- }
- end = starpu_timing_now();
- timing = end - start;
- numa_latency[numa_src][numa_dst] = timing/NITER;
- hwloc_free(hwtopology, h_buffer, SIZE);
- hwloc_free(hwtopology, d_buffer, SIZE);
- }
- else
- #endif
- {
- /* Cannot make a real calibration */
- numa_timing[numa_src][numa_dst] = 0.01;
- numa_latency[numa_src][numa_dst] = 0;
- }
- }
- static void benchmark_all_gpu_devices(void)
- {
- #ifdef STARPU_SIMGRID
- _STARPU_DISP("Can not measure bus in simgrid mode, please run starpu_calibrate_bus in non-simgrid mode to make sure the bus performance model was calibrated\n");
- STARPU_ABORT();
- #else /* !SIMGRID */
- unsigned i, j;
- _STARPU_DEBUG("Benchmarking the speed of the bus\n");
- #ifdef STARPU_HAVE_HWLOC
- hwloc_topology_init(&hwtopology);
- hwloc_topology_load(hwtopology);
- #endif
- #ifdef STARPU_HAVE_HWLOC
- hwloc_bitmap_t former_cpuset = hwloc_bitmap_alloc();
- hwloc_get_cpubind(hwtopology, former_cpuset, HWLOC_CPUBIND_THREAD);
- #elif __linux__
- /* Save the current cpu binding */
- cpu_set_t former_process_affinity;
- int ret;
- ret = sched_getaffinity(0, sizeof(former_process_affinity), &former_process_affinity);
- if (ret)
- {
- perror("sched_getaffinity");
- STARPU_ABORT();
- }
- #else
- #warning Missing binding support, StarPU will not be able to properly benchmark NUMA topology
- #endif
- struct _starpu_machine_config *config = _starpu_get_machine_config();
- ncpus = _starpu_topology_get_nhwcpu(config);
- nnumas = _starpu_topology_get_nnumanodes(config);
- for (i = 0; i < nnumas; i++)
- for (j = 0; j < nnumas; j++)
- if (i != j)
- {
- _STARPU_DISP("NUMA %d -> %d...\n", i, j);
- measure_bandwidth_latency_between_numa(i, j);
- }
- #ifdef STARPU_USE_CUDA
- ncuda = _starpu_get_cuda_device_count();
- for (i = 0; i < ncuda; i++)
- {
- _STARPU_DISP("CUDA %u...\n", i);
- /* measure bandwidth between Host and Device i */
- measure_bandwidth_between_host_and_dev(i, cudadev_timing_per_numa, "CUDA");
- }
- #ifdef HAVE_CUDA_MEMCPY_PEER
- for (i = 0; i < ncuda; i++)
- {
- unsigned j;
- for (j = 0; j < ncuda; j++)
- if (i != j)
- {
- _STARPU_DISP("CUDA %u -> %u...\n", i, j);
- /* measure bandwidth between Host and Device i */
- measure_bandwidth_between_dev_and_dev_cuda(i, j);
- }
- }
- #endif
- #endif
- #ifdef STARPU_USE_OPENCL
- nopencl = _starpu_opencl_get_device_count();
- for (i = 0; i < nopencl; i++)
- {
- _STARPU_DISP("OpenCL %u...\n", i);
- /* measure bandwith between Host and Device i */
- measure_bandwidth_between_host_and_dev(i, opencldev_timing_per_numa, "OpenCL");
- }
- #endif
- #ifdef STARPU_USE_MIC
- /* TODO: implement real calibration ! For now we only put an arbitrary
- * value for each device during at the declaration as a bug fix, else
- * we get problems on heft scheduler */
- nmic = _starpu_mic_src_get_device_count();
- for (i = 0; i < STARPU_MAXNODES; i++)
- {
- mic_time_host_to_device[i] = 0.1;
- mic_time_device_to_host[i] = 0.1;
- }
- #endif /* STARPU_USE_MIC */
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- _starpu_mpi_common_measure_bandwidth_latency(mpi_time_device_to_device, mpi_latency_device_to_device);
- #endif /* STARPU_USE_MPI_MASTER_SLAVE */
- #ifdef STARPU_HAVE_HWLOC
- hwloc_set_cpubind(hwtopology, former_cpuset, HWLOC_CPUBIND_THREAD);
- hwloc_bitmap_free(former_cpuset);
- #elif __linux__
- /* Restore the former affinity */
- ret = sched_setaffinity(0, sizeof(former_process_affinity), &former_process_affinity);
- if (ret)
- {
- perror("sched_setaffinity");
- STARPU_ABORT();
- }
- #endif
- #ifdef STARPU_HAVE_HWLOC
- hwloc_topology_destroy(hwtopology);
- #endif
- _STARPU_DEBUG("Benchmarking the speed of the bus is done.\n");
- was_benchmarked = 1;
- #endif /* !SIMGRID */
- }
- static void get_bus_path(const char *type, char *path, size_t maxlen)
- {
- char hostname[65];
- _starpu_gethostname(hostname, sizeof(hostname));
- snprintf(path, maxlen, "%s%s.%s", _starpu_get_perf_model_dir_bus(), hostname, type);
- }
- /*
- * Affinity
- */
- static void get_affinity_path(char *path, size_t maxlen)
- {
- get_bus_path("affinity", path, maxlen);
- }
- #ifndef STARPU_SIMGRID
- static void load_bus_affinity_file_content(void)
- {
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- FILE *f;
- int locked;
- char path[256];
- get_affinity_path(path, sizeof(path));
- _STARPU_DEBUG("loading affinities from %s\n", path);
- f = fopen(path, "r");
- STARPU_ASSERT(f);
- locked = _starpu_frdlock(f) == 0;
- unsigned gpu;
- #ifdef STARPU_USE_CUDA
- ncuda = _starpu_get_cuda_device_count();
- for (gpu = 0; gpu < ncuda; gpu++)
- {
- int ret;
- unsigned dummy;
- _starpu_drop_comments(f);
- ret = fscanf(f, "%u\t", &dummy);
- STARPU_ASSERT(ret == 1);
- STARPU_ASSERT(dummy == gpu);
- unsigned numa;
- for (numa = 0; numa < nnumas; numa++)
- {
- ret = fscanf(f, "%d\t", &cuda_affinity_matrix[gpu][numa]);
- STARPU_ASSERT(ret == 1);
- }
- ret = fscanf(f, "\n");
- STARPU_ASSERT(ret == 0);
- }
- #endif /* !STARPU_USE_CUDA */
- #ifdef STARPU_USE_OPENCL
- nopencl = _starpu_opencl_get_device_count();
- for (gpu = 0; gpu < nopencl; gpu++)
- {
- int ret;
- unsigned dummy;
- _starpu_drop_comments(f);
- ret = fscanf(f, "%u\t", &dummy);
- STARPU_ASSERT(ret == 1);
- STARPU_ASSERT(dummy == gpu);
- unsigned numa;
- for (numa = 0; numa < nnumas; numa++)
- {
- ret = fscanf(f, "%d\t", &opencl_affinity_matrix[gpu][numa]);
- STARPU_ASSERT(ret == 1);
- }
- ret = fscanf(f, "\n");
- STARPU_ASSERT(ret == 0);
- }
- #endif /* !STARPU_USE_OPENCL */
- if (locked)
- _starpu_frdunlock(f);
- fclose(f);
- #endif /* !(STARPU_USE_CUDA_ || STARPU_USE_OPENCL */
- }
- #ifndef STARPU_SIMGRID
- static void write_bus_affinity_file_content(void)
- {
- STARPU_ASSERT(was_benchmarked);
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- FILE *f;
- char path[256];
- int locked;
- get_affinity_path(path, sizeof(path));
- _STARPU_DEBUG("writing affinities to %s\n", path);
- f = fopen(path, "w+");
- if (!f)
- {
- perror("fopen write_buf_affinity_file_content");
- _STARPU_DISP("path '%s'\n", path);
- fflush(stderr);
- STARPU_ABORT();
- }
- locked = _starpu_frdlock(f) == 0;
- unsigned numa;
- unsigned gpu;
- fprintf(f, "# GPU\t");
- for (numa = 0; numa < nnumas; numa++)
- fprintf(f, "NUMA%u\t", numa);
- fprintf(f, "\n");
- #ifdef STARPU_USE_CUDA
- {
- /* Use an other array to sort bandwidth */
- struct dev_timing cudadev_timing_per_numa_sorted[STARPU_MAXCUDADEVS*STARPU_MAXNUMANODES];
- memcpy(cudadev_timing_per_numa_sorted, cudadev_timing_per_numa, STARPU_MAXCUDADEVS*STARPU_MAXNUMANODES*sizeof(struct dev_timing));
- for (gpu = 0; gpu < ncuda; gpu++)
- {
- fprintf(f, "%u\t", gpu);
- qsort(&(cudadev_timing_per_numa_sorted[gpu*STARPU_MAXNUMANODES]), nnumas, sizeof(struct dev_timing), compar_dev_timing);
- for (numa = 0; numa < nnumas; numa++)
- {
- fprintf(f, "%d\t", cudadev_timing_per_numa_sorted[gpu*STARPU_MAXNUMANODES+numa].numa_id);
- }
- fprintf(f, "\n");
- }
- }
- #endif
- #ifdef STARPU_USE_OPENCL
- {
- /* Use an other array to sort bandwidth */
- struct dev_timing opencldev_timing_per_numa_sorted[STARPU_MAXOPENCLDEVS*STARPU_MAXNUMANODES];
- memcpy(opencldev_timing_per_numa_sorted, opencldev_timing_per_numa, STARPU_MAXOPENCLDEVS*STARPU_MAXNUMANODES*sizeof(struct dev_timing));
- for (gpu = 0; gpu < nopencl; gpu++)
- {
- fprintf(f, "%u\t", gpu);
- qsort(&(opencldev_timing_per_numa_sorted[gpu*STARPU_MAXNUMANODES]), nnumas, sizeof(struct dev_timing), compar_dev_timing);
- for (numa = 0; numa < nnumas; numa++)
- {
- fprintf(f, "%d\t", opencldev_timing_per_numa_sorted[gpu*STARPU_MAXNUMANODES+numa].numa_id);
- }
- fprintf(f, "\n");
- }
- }
- #endif
- if (locked)
- _starpu_frdunlock(f);
- fclose(f);
- #endif
- }
- #endif /* STARPU_SIMGRID */
- static void generate_bus_affinity_file(void)
- {
- if (!was_benchmarked)
- benchmark_all_gpu_devices();
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- /* Slaves don't write files */
- if (!_starpu_mpi_common_is_src_node())
- return;
- #endif
- write_bus_affinity_file_content();
- }
- static int check_bus_affinity_file(void)
- {
- int ret = 1;
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- FILE *f;
- int locked;
- unsigned dummy;
- char path[256];
- get_affinity_path(path, sizeof(path));
- _STARPU_DEBUG("loading affinities from %s\n", path);
- f = fopen(path, "r");
- STARPU_ASSERT(f);
- locked = _starpu_frdlock(f) == 0;
- ret = fscanf(f, "# GPU\t");
- STARPU_ASSERT(ret == 0);
-
- ret = fscanf(f, "NUMA%u\t", &dummy);
- if (locked)
- _starpu_frdunlock(f);
- fclose(f);
- #endif
- return ret == 1;
- }
- static void load_bus_affinity_file(void)
- {
- int exist, check = 1;
- char path[256];
- get_affinity_path(path, sizeof(path));
- /* access return 0 if file exists */
- exist = access(path, F_OK);
- if (exist == 0)
- /* return 0 if it's not good */
- check = check_bus_affinity_file();
- if (check == 0)
- _STARPU_DISP("Affinity File is too old for this version of StarPU ! Rebuilding it...\n");
- if (check == 0 || exist != 0)
- {
- /* File does not exist yet */
- generate_bus_affinity_file();
- }
- load_bus_affinity_file_content();
- }
- #ifdef STARPU_USE_CUDA
- int *_starpu_get_cuda_affinity_vector(unsigned gpuid)
- {
- return cuda_affinity_matrix[gpuid];
- }
- #endif /* STARPU_USE_CUDA */
- #ifdef STARPU_USE_OPENCL
- int *_starpu_get_opencl_affinity_vector(unsigned gpuid)
- {
- return opencl_affinity_matrix[gpuid];
- }
- #endif /* STARPU_USE_OPENCL */
- void starpu_bus_print_affinity(FILE *f)
- {
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- unsigned numa;
- unsigned gpu;
- #endif
- fprintf(f, "# GPU\tNUMA in preference order (logical index)\n");
- #ifdef STARPU_USE_CUDA
- fprintf(f, "# CUDA\n");
- for(gpu = 0 ; gpu<ncuda ; gpu++)
- {
- fprintf(f, "%u\t", gpu);
- for (numa = 0; numa < nnumas; numa++)
- {
- fprintf(f, "%d\t", cuda_affinity_matrix[gpu][numa]);
- }
- fprintf(f, "\n");
- }
- #endif
- #ifdef STARPU_USE_OPENCL
- fprintf(f, "# OpenCL\n");
- for(gpu = 0 ; gpu<nopencl ; gpu++)
- {
- fprintf(f, "%u\t", gpu);
- for (numa = 0; numa < nnumas; numa++)
- {
- fprintf(f, "%d\t", opencl_affinity_matrix[gpu][numa]);
- }
- fprintf(f, "\n");
- }
- #endif
- }
- #endif /* STARPU_SIMGRID */
- /*
- * Latency
- */
- static void get_latency_path(char *path, size_t maxlen)
- {
- get_bus_path("latency", path, maxlen);
- }
- static int load_bus_latency_file_content(void)
- {
- int n;
- unsigned src, dst;
- FILE *f;
- double latency;
- int locked;
- char path[256];
- get_latency_path(path, sizeof(path));
- _STARPU_DEBUG("loading latencies from %s\n", path);
- f = fopen(path, "r");
- if (!f)
- {
- perror("fopen load_bus_latency_file_content");
- _STARPU_DISP("path '%s'\n", path);
- fflush(stderr);
- STARPU_ABORT();
- }
- locked = _starpu_frdlock(f) == 0;
- for (src = 0; src < STARPU_MAXNODES; src++)
- {
- _starpu_drop_comments(f);
- for (dst = 0; dst < STARPU_MAXNODES; dst++)
- {
- n = _starpu_read_double(f, "%le", &latency);
- if (n != 1)
- {
- _STARPU_DISP("Error while reading latency file <%s>. Expected a number. Did you change the maximum number of GPUs at ./configure time?\n", path);
- fclose(f);
- return 0;
- }
- n = getc(f);
- if (n == '\n')
- break;
- if (n != '\t')
- {
- _STARPU_DISP("bogus character '%c' (%d) in latency file %s\n", n, n, path);
- fclose(f);
- return 0;
- }
- latency_matrix[src][dst] = latency;
- /* Look out for \t\n */
- n = getc(f);
- if (n == '\n')
- break;
- ungetc(n, f);
- n = '\t';
- }
- /* No more values, take NAN */
- for ( ; dst < STARPU_MAXNODES; dst++)
- latency_matrix[src][dst] = NAN;
- while (n == '\t')
- {
- /* Look out for \t\n */
- n = getc(f);
- if (n == '\n')
- break;
- ungetc(n, f);
- n = _starpu_read_double(f, "%le", &latency);
- if (n && !isnan(latency))
- {
- _STARPU_DISP("Too many nodes in latency file %s for this configuration (%d). Did you change the maximum number of GPUs at ./configure time?\n", path, STARPU_MAXNODES);
- fclose(f);
- return 0;
- }
- n = getc(f);
- }
- if (n != '\n')
- {
- _STARPU_DISP("Bogus character '%c' (%d) in latency file %s\n", n, n, path);
- fclose(f);
- return 0;
- }
- /* Look out for EOF */
- n = getc(f);
- if (n == EOF)
- break;
- ungetc(n, f);
- }
- if (locked)
- _starpu_frdunlock(f);
- fclose(f);
- /* No more values, take NAN */
- for ( ; src < STARPU_MAXNODES; src++)
- for (dst = 0; dst < STARPU_MAXNODES; dst++)
- latency_matrix[src][dst] = NAN;
- return 1;
- }
- #ifndef STARPU_SIMGRID
- static double search_bus_best_latency(int src, char * type, int htod)
- {
- /* Search the best latency for this node */
- double best = 0.0;
- double actual = 0.0;
- unsigned check = 0;
- unsigned numa;
- for (numa = 0; numa < nnumas; numa++)
- {
- #ifdef STARPU_USE_CUDA
- if (strncmp(type, "CUDA", 4) == 0)
- {
- if (htod)
- actual = cudadev_timing_per_numa[src*STARPU_MAXNUMANODES+numa].latency_htod;
- else
- actual = cudadev_timing_per_numa[src*STARPU_MAXNUMANODES+numa].latency_dtoh;
- }
- #endif
- #ifdef STARPU_USE_OPENCL
- if (strncmp(type, "OpenCL", 6) == 0)
- {
- if (htod)
- actual = opencldev_timing_per_numa[src*STARPU_MAXNUMANODES+numa].latency_htod;
- else
- actual = opencldev_timing_per_numa[src*STARPU_MAXNUMANODES+numa].latency_dtoh;
- }
- #endif
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- if (!check || actual < best)
- {
- best = actual;
- check = 1;
- }
- #endif
- }
- return best;
- }
- static void write_bus_latency_file_content(void)
- {
- unsigned src, dst, maxnode;
- /* Boundaries to check if src or dst are inside the interval */
- unsigned b_low, b_up;
- FILE *f;
- int locked;
- STARPU_ASSERT(was_benchmarked);
- char path[256];
- get_latency_path(path, sizeof(path));
- _STARPU_DEBUG("writing latencies to %s\n", path);
- f = fopen(path, "w+");
- if (!f)
- {
- perror("fopen write_bus_latency_file_content");
- _STARPU_DISP("path '%s'\n", path);
- fflush(stderr);
- STARPU_ABORT();
- }
- locked = _starpu_fwrlock(f) == 0;
- _starpu_fftruncate(f, 0);
- fprintf(f, "# ");
- for (dst = 0; dst < STARPU_MAXNODES; dst++)
- fprintf(f, "to %u\t\t", dst);
- fprintf(f, "\n");
- maxnode = nnumas;
- #ifdef STARPU_USE_CUDA
- maxnode += ncuda;
- #endif
- #ifdef STARPU_USE_OPENCL
- maxnode += nopencl;
- #endif
- #ifdef STARPU_USE_MIC
- maxnode += nmic;
- #endif
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- maxnode += nmpi_ms;
- #endif
- for (src = 0; src < STARPU_MAXNODES; src++)
- {
- for (dst = 0; dst < STARPU_MAXNODES; dst++)
- {
- /* µs */
- double latency = 0.0;
- if ((src >= maxnode) || (dst >= maxnode))
- {
- /* convention */
- latency = NAN;
- }
- else if (src == dst)
- {
- latency = 0.0;
- }
- else
- {
- b_low = b_up = 0;
- /* ---- Begin NUMA ---- */
- b_up += nnumas;
- if (src >= b_low && src < b_up && dst >= b_low && dst < b_up)
- latency += numa_latency[src-b_low][dst-b_low];
- /* copy interval to check numa index later */
- unsigned numa_low = b_low;
- unsigned numa_up = b_up;
-
- b_low += nnumas;
- /* ---- End NUMA ---- */
- #ifdef STARPU_USE_CUDA
- b_up += ncuda;
- #ifdef HAVE_CUDA_MEMCPY_PEER
- if (src >= b_low && src < b_up && dst >= b_low && dst < b_up)
- latency += cudadev_latency_dtod[src-b_low][dst-b_low];
- else
- #endif
- {
- /* Check if it's CUDA <-> NUMA link */
- if (src >=b_low && src < b_up && dst >= numa_low && dst < numa_up)
- latency += cudadev_timing_per_numa[(src-b_low)*STARPU_MAXNUMANODES+dst-numa_low].latency_dtoh;
- if (dst >= b_low && dst < b_up && src >= numa_low && dst < numa_up)
- latency += cudadev_timing_per_numa[(dst-b_low)*STARPU_MAXNUMANODES+src-numa_low].latency_htod;
- /* To other devices, take the best latency */
- if (src >= b_low && src < b_up && !(dst >= numa_low && dst < numa_up))
- latency += search_bus_best_latency(src-b_low, "CUDA", 0);
- if (dst >= b_low && dst < b_up && !(src >= numa_low && dst < numa_up))
- latency += search_bus_best_latency(dst-b_low, "CUDA", 1);
- }
- b_low += ncuda;
- #endif
- #ifdef STARPU_USE_OPENCL
- b_up += nopencl;
- /* Check if it's OpenCL <-> NUMA link */
- if (src >= b_low && src < b_up && dst >= numa_low && dst < numa_up)
- latency += opencldev_timing_per_numa[(src-b_low)*STARPU_MAXNUMANODES+dst-numa_low].latency_dtoh;
- if (dst >= b_low && dst < b_up && src >= numa_low && dst < numa_up)
- latency += opencldev_timing_per_numa[(dst-b_low)*STARPU_MAXNUMANODES+src-numa_low].latency_htod;
- /* To other devices, take the best latency */
- if (src >= b_low && src < b_up && !(dst >= numa_low && dst < numa_up))
- latency += search_bus_best_latency(src-b_low, "OpenCL", 0);
- if (dst >= b_low && dst < b_up && !(src >= numa_low && dst < numa_up))
- latency += search_bus_best_latency(dst-b_low, "OpenCL", 1);
- b_low += nopencl;
- #endif
- #ifdef STARPU_USE_MIC
- b_up += nmic;
- /* TODO Latency MIC */
- b_low += nmic;
- #endif
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- b_up += nmpi_ms;
- /* Modify MPI src and MPI dst if they contain the master node or not
- * Because, we only take care about slaves */
- int mpi_master = _starpu_mpi_common_get_src_node();
- int mpi_src = src - b_low;
- mpi_src = (mpi_master <= mpi_src) ? mpi_src+1 : mpi_src;
- int mpi_dst = dst - b_low;
- mpi_dst = (mpi_master <= mpi_dst) ? mpi_dst+1 : mpi_dst;
- if (src >= b_low && src < b_up && dst >= b_low && dst < b_up)
- latency += mpi_latency_device_to_device[mpi_src][mpi_dst];
- else
- {
- if (src >= b_low && src < b_up)
- latency += mpi_latency_device_to_device[mpi_src][mpi_master];
- if (dst >= b_low && dst < b_up)
- latency += mpi_latency_device_to_device[mpi_master][mpi_dst];
- }
- b_low += nmpi_ms;
- #endif
- }
- if (dst > 0)
- fputc('\t', f);
- _starpu_write_double(f, "%e", latency);
- }
- fprintf(f, "\n");
- }
- if (locked)
- _starpu_fwrunlock(f);
- fclose(f);
- }
- #endif
- static void generate_bus_latency_file(void)
- {
- if (!was_benchmarked)
- benchmark_all_gpu_devices();
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- /* Slaves don't write files */
- if (!_starpu_mpi_common_is_src_node())
- return;
- #endif
- #ifndef STARPU_SIMGRID
- write_bus_latency_file_content();
- #endif
- }
- static void load_bus_latency_file(void)
- {
- int res;
- char path[256];
- get_latency_path(path, sizeof(path));
- res = access(path, F_OK);
- if (res || !load_bus_latency_file_content())
- {
- /* File does not exist yet or is bogus */
- generate_bus_latency_file();
- }
- }
- /*
- * Bandwidth
- */
- static void get_bandwidth_path(char *path, size_t maxlen)
- {
- get_bus_path("bandwidth", path, maxlen);
- }
- static int load_bus_bandwidth_file_content(void)
- {
- int n;
- unsigned src, dst;
- FILE *f;
- double bandwidth;
- int locked;
- char path[256];
- get_bandwidth_path(path, sizeof(path));
- _STARPU_DEBUG("loading bandwidth from %s\n", path);
- f = fopen(path, "r");
- if (!f)
- {
- perror("fopen load_bus_bandwidth_file_content");
- _STARPU_DISP("path '%s'\n", path);
- fflush(stderr);
- STARPU_ABORT();
- }
- locked = _starpu_frdlock(f) == 0;
- for (src = 0; src < STARPU_MAXNODES; src++)
- {
- _starpu_drop_comments(f);
- for (dst = 0; dst < STARPU_MAXNODES; dst++)
- {
- n = _starpu_read_double(f, "%le", &bandwidth);
- if (n != 1)
- {
- _STARPU_DISP("Error while reading bandwidth file <%s>. Expected a number\n", path);
- fclose(f);
- return 0;
- }
- n = getc(f);
- if (n == '\n')
- break;
- if (n != '\t')
- {
- _STARPU_DISP("bogus character '%c' (%d) in bandwidth file %s\n", n, n, path);
- fclose(f);
- return 0;
- }
- bandwidth_matrix[src][dst] = bandwidth;
- /* Look out for \t\n */
- n = getc(f);
- if (n == '\n')
- break;
- ungetc(n, f);
- n = '\t';
- }
- /* No more values, take NAN */
- for ( ; dst < STARPU_MAXNODES; dst++)
- bandwidth_matrix[src][dst] = NAN;
- while (n == '\t')
- {
- /* Look out for \t\n */
- n = getc(f);
- if (n == '\n')
- break;
- ungetc(n, f);
- n = _starpu_read_double(f, "%le", &bandwidth);
- if (n && !isnan(bandwidth))
- {
- _STARPU_DISP("Too many nodes in bandwidth file %s for this configuration (%d)\n", path, STARPU_MAXNODES);
- fclose(f);
- return 0;
- }
- n = getc(f);
- }
- if (n != '\n')
- {
- _STARPU_DISP("Bogus character '%c' (%d) in bandwidth file %s\n", n, n, path);
- fclose(f);
- return 0;
- }
- /* Look out for EOF */
- n = getc(f);
- if (n == EOF)
- break;
- ungetc(n, f);
- }
- if (locked)
- _starpu_frdunlock(f);
- fclose(f);
- /* No more values, take NAN */
- for ( ; src < STARPU_MAXNODES; src++)
- for (dst = 0; dst < STARPU_MAXNODES; dst++)
- latency_matrix[src][dst] = NAN;
- return 1;
- }
- #ifndef STARPU_SIMGRID
- static double search_bus_best_timing(int src, char * type, int htod)
- {
- /* Search the best latency for this node */
- double best = 0.0;
- double actual = 0.0;
- unsigned check = 0;
- unsigned numa;
- for (numa = 0; numa < nnumas; numa++)
- {
- #ifdef STARPU_USE_CUDA
- if (strncmp(type, "CUDA", 4) == 0)
- {
- if (htod)
- actual = cudadev_timing_per_numa[src*STARPU_MAXNUMANODES+numa].timing_htod;
- else
- actual = opencldev_timing_per_numa[src*STARPU_MAXNUMANODES+numa].timing_dtoh;
- }
- #endif
- #ifdef STARPU_USE_OPENCL
- if (strncmp(type, "OpenCL", 6) == 0)
- {
- if (htod)
- actual = opencldev_timing_per_numa[src*STARPU_MAXNUMANODES+numa].timing_htod;
- else
- actual = opencldev_timing_per_numa[src*STARPU_MAXNUMANODES+numa].timing_dtoh;
- }
- #endif
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- if (!check || actual < best)
- {
- best = actual;
- check = 1;
- }
- #endif
- }
- return best;
- }
- static void write_bus_bandwidth_file_content(void)
- {
- unsigned src, dst, maxnode;
- unsigned b_low, b_up;
- FILE *f;
- int locked;
- STARPU_ASSERT(was_benchmarked);
- char path[256];
- get_bandwidth_path(path, sizeof(path));
- _STARPU_DEBUG("writing bandwidth to %s\n", path);
- f = fopen(path, "w+");
- STARPU_ASSERT(f);
- locked = _starpu_fwrlock(f) == 0;
- _starpu_fftruncate(f, 0);
- fprintf(f, "# ");
- for (dst = 0; dst < STARPU_MAXNODES; dst++)
- fprintf(f, "to %u\t\t", dst);
- fprintf(f, "\n");
- maxnode = nnumas;
- #ifdef STARPU_USE_CUDA
- maxnode += ncuda;
- #endif
- #ifdef STARPU_USE_OPENCL
- maxnode += nopencl;
- #endif
- #ifdef STARPU_USE_MIC
- maxnode += nmic;
- #endif
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- maxnode += nmpi_ms;
- #endif
- for (src = 0; src < STARPU_MAXNODES; src++)
- {
- for (dst = 0; dst < STARPU_MAXNODES; dst++)
- {
- double bandwidth;
- if ((src >= maxnode) || (dst >= maxnode))
- {
- bandwidth = NAN;
- }
- else if (src != dst)
- {
- double slowness = 0.0;
- /* Total bandwidth is the harmonic mean of bandwidths */
- b_low = b_up = 0;
- /* Begin NUMA */
- b_up += nnumas;
- if (src >= b_low && src < b_up && dst >= b_low && dst < b_up)
- slowness += numa_timing[src-b_low][dst-b_low];
- /* copy interval to check numa index later */
- unsigned numa_low = b_low;
- unsigned numa_up = b_up;
- b_low += nnumas;
- /* End NUMA */
- #ifdef STARPU_USE_CUDA
- b_up += ncuda;
- #ifdef HAVE_CUDA_MEMCPY_PEER
- if (src >= b_low && src < b_up && dst >= b_low && dst < b_up)
- /* Direct GPU-GPU transfert */
- slowness += cudadev_timing_dtod[src-b_low][dst-b_low];
- else
- #endif
- {
- /* Check if it's CUDA <-> NUMA link */
- if (src >= b_low && src < b_up && dst >= numa_low && dst < numa_up)
- slowness += cudadev_timing_per_numa[(src-b_low)*STARPU_MAXNUMANODES+dst-numa_low].timing_dtoh;
- if (dst >= b_low && dst < b_up && src >= numa_low && dst < numa_up)
- slowness += cudadev_timing_per_numa[(dst-b_low)*STARPU_MAXNUMANODES+src-numa_low].timing_htod;
- /* To other devices, take the best slowness */
- if (src >= b_low && src < b_up && !(dst >= numa_low && dst < numa_up))
- slowness += search_bus_best_timing(src-b_low, "CUDA", 0);
- if (dst >= b_low && dst < b_up && !(src >= numa_low && dst < numa_up))
- slowness += search_bus_best_timing(dst-b_low, "CUDA", 1);
- }
- b_low += ncuda;
- #endif
- #ifdef STARPU_USE_OPENCL
- b_up += nopencl;
- /* Check if it's OpenCL <-> NUMA link */
- if (src >= b_low && src < b_up && dst >= numa_low && dst < numa_up)
- slowness += opencldev_timing_per_numa[(src-b_low)*STARPU_MAXNUMANODES+dst-numa_low].timing_dtoh;
- if (dst >= b_low && dst < b_up && src >= numa_low && dst < numa_up)
- slowness += opencldev_timing_per_numa[(dst-b_low)*STARPU_MAXNUMANODES+src-numa_low].timing_htod;
- /* To other devices, take the best slowness */
- if (src >= b_low && src < b_up && !(dst >= numa_low && dst < numa_up))
- slowness += search_bus_best_timing(src-b_low, "OpenCL", 0);
- if (dst >= b_low && dst < b_up && !(src >= numa_low && dst < numa_up))
- slowness += search_bus_best_timing(dst-b_low, "OpenCL", 1);
- b_low += nopencl;
- #endif
- #ifdef STARPU_USE_MIC
- b_up += nmic;
- if (src >= b_low && src < b_up)
- slowness += mic_time_device_to_host[src-b_low];
- if (dst >= b_low && dst < b_up)
- slowness += mic_time_host_to_device[dst-b_low];
- b_low += nmic;
- #endif
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- b_up += nmpi_ms;
- /* Modify MPI src and MPI dst if they contain the master node or not
- * Because, we only take care about slaves */
- int mpi_master = _starpu_mpi_common_get_src_node();
- int mpi_src = src - b_low;
- mpi_src = (mpi_master <= mpi_src) ? mpi_src+1 : mpi_src;
- int mpi_dst = dst - b_low;
- mpi_dst = (mpi_master <= mpi_dst) ? mpi_dst+1 : mpi_dst;
- if (src >= b_low && src < b_up && dst >= b_low && dst < b_up)
- slowness += mpi_time_device_to_device[mpi_src][mpi_dst];
- else
- {
- if (src >= b_low && src < b_up)
- slowness += mpi_time_device_to_device[mpi_src][mpi_master];
- if (dst >= b_low && dst < b_up)
- slowness += mpi_time_device_to_device[mpi_master][mpi_dst];
- }
- b_low += nmpi_ms;
- #endif
- bandwidth = 1.0/slowness;
- }
- else
- {
- /* convention */
- bandwidth = 0.0;
- }
- if (dst)
- fputc('\t', f);
- _starpu_write_double(f, "%e", bandwidth);
- }
- fprintf(f, "\n");
- }
- if (locked)
- _starpu_fwrunlock(f);
- fclose(f);
- }
- #endif /* STARPU_SIMGRID */
- void starpu_bus_print_filenames(FILE *output)
- {
- char bandwidth_path[256];
- char affinity_path[256];
- char latency_path[256];
- get_bandwidth_path(bandwidth_path, sizeof(bandwidth_path));
- get_affinity_path(affinity_path, sizeof(affinity_path));
- get_latency_path(latency_path, sizeof(latency_path));
- fprintf(output, "bandwidth: <%s>\n", bandwidth_path);
- fprintf(output, " affinity: <%s>\n", affinity_path);
- fprintf(output, " latency: <%s>\n", latency_path);
- }
- void starpu_bus_print_bandwidth(FILE *f)
- {
- unsigned src, dst, maxnode;
- maxnode = nnumas;
- #ifdef STARPU_USE_CUDA
- maxnode += ncuda;
- #endif
- #ifdef STARPU_USE_OPENCL
- maxnode += nopencl;
- #endif
- #ifdef STARPU_USE_MIC
- maxnode += nmic;
- #endif
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- maxnode += nmpi_ms;
- #endif
- fprintf(f, "from/to\t");
- for (dst = 0; dst < nnumas; dst++)
- fprintf(f, "NUMA_%u\t", dst);
- for (dst = 0; dst < ncuda; dst++)
- fprintf(f, "CUDA_%u\t", dst);
- for (dst = 0; dst < nopencl; dst++)
- fprintf(f, "OpenCL%u\t", dst);
- for (dst = 0; dst < nmic; dst++)
- fprintf(f, "MIC_%u\t", dst);
- for (dst = 0; dst < nmpi_ms; dst++)
- fprintf(f, "MPI_MS%u\t", dst);
- fprintf(f, "\n");
- for (src = 0; src < maxnode; src++)
- {
- if (src < nnumas)
- fprintf(f, "RAM_%u\t", src);
- else if (src < nnumas + ncuda)
- fprintf(f, "CUDA_%u\t", src-nnumas);
- else if (src < nnumas + ncuda + nopencl)
- fprintf(f, "OpenCL%u\t", src-nnumas-ncuda);
- else if (src < nnumas + ncuda + nopencl + nmic)
- fprintf(f, "MIC_%u\t", src-nnumas-ncuda-nopencl);
- else
- fprintf(f, "MPI_MS%u\t", src-nnumas-ncuda-nopencl-nmic);
- for (dst = 0; dst < maxnode; dst++)
- fprintf(f, "%.0f\t", bandwidth_matrix[src][dst]);
- fprintf(f, "\n");
- }
- fprintf(f, "\n");
- for (src = 0; src < maxnode; src++)
- {
- if (src < nnumas)
- fprintf(f, "NUMA_%u\t", src);
- else if (src < nnumas + ncuda)
- fprintf(f, "CUDA_%u\t", src-nnumas);
- else if (src < nnumas + ncuda + nopencl)
- fprintf(f, "OpenCL%u\t", src-nnumas-ncuda);
- else if (src < nnumas + ncuda + nopencl + nmic)
- fprintf(f, "MIC_%u\t", src-nnumas-ncuda-nopencl);
- else
- fprintf(f, "MPI_MS%u\t", src-nnumas-ncuda-nopencl-nmic);
- for (dst = 0; dst < maxnode; dst++)
- fprintf(f, "%.0f\t", latency_matrix[src][dst]);
- fprintf(f, "\n");
- }
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- if (ncuda != 0 || nopencl != 0)
- fprintf(f, "\nGPU\tNUMA in preference order (logical index), host-to-device, device-to-host\n");
- for (src = 0; src < ncuda + nopencl; src++)
- {
- struct dev_timing *timing;
- struct _starpu_machine_config * config = _starpu_get_machine_config();
- unsigned config_nnumas = _starpu_topology_get_nnumanodes(config);
- unsigned numa;
- #ifdef STARPU_USE_CUDA
- if (src < ncuda)
- {
- fprintf(f, "CUDA_%u\t", src);
- for (numa = 0; numa < config_nnumas; numa++)
- {
- timing = &cudadev_timing_per_numa[src*STARPU_MAXNUMANODES+numa];
- if (timing->timing_htod)
- fprintf(f, "%2d %.0f %.0f\t", timing->numa_id, 1/timing->timing_htod, 1/timing->timing_dtoh);
- else
- fprintf(f, "%2d\t", cuda_affinity_matrix[src][numa]);
- }
- }
- #ifdef STARPU_USE_OPENCL
- else
- #endif
- #endif
- #ifdef STARPU_USE_OPENCL
- {
- fprintf(f, "OpenCL%u\t", src-ncuda);
- for (numa = 0; numa < config_nnumas; numa++)
- {
- timing = &opencldev_timing_per_numa[(src-ncuda)*STARPU_MAXNUMANODES+numa];
- if (timing->timing_htod)
- fprintf(f, "%2d %.0f %.0f\t", timing->numa_id, 1/timing->timing_htod, 1/timing->timing_dtoh);
- else
- fprintf(f, "%2d\t", opencl_affinity_matrix[src][numa]);
- }
- }
- #endif
- fprintf(f, "\n");
- }
- #endif
- }
- static void generate_bus_bandwidth_file(void)
- {
- if (!was_benchmarked)
- benchmark_all_gpu_devices();
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- /* Slaves don't write files */
- if (!_starpu_mpi_common_is_src_node())
- return;
- #endif
- #ifndef STARPU_SIMGRID
- write_bus_bandwidth_file_content();
- #endif
- }
- static void load_bus_bandwidth_file(void)
- {
- int res;
- char path[256];
- get_bandwidth_path(path, sizeof(path));
- res = access(path, F_OK);
- if (res || !load_bus_bandwidth_file_content())
- {
- /* File does not exist yet or is bogus */
- generate_bus_bandwidth_file();
- }
- }
- #ifndef STARPU_SIMGRID
- /*
- * Config
- */
- static void get_config_path(char *path, size_t maxlen)
- {
- get_bus_path("config", path, maxlen);
- }
- #if defined(STARPU_USE_MPI_MASTER_SLAVE)
- /* check if the master or one slave has to recalibrate */
- static int mpi_check_recalibrate(int my_recalibrate)
- {
- int nb_mpi = _starpu_mpi_src_get_device_count() + 1;
- int mpi_recalibrate[nb_mpi];
- int i;
- MPI_Allgather(&my_recalibrate, 1, MPI_INT, mpi_recalibrate, 1, MPI_INT, MPI_COMM_WORLD);
- for (i = 0; i < nb_mpi; i++)
- {
- if (mpi_recalibrate[i])
- {
- return 1;
- }
- }
- return 0;
- }
- #endif
- static void compare_value_and_recalibrate(char * msg, unsigned val_file, unsigned val_detected)
- {
- int recalibrate = 0;
- if (val_file != val_detected)
- recalibrate = 1;
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- //Send to each other to know if we had to recalibrate because someone cannot have the correct value in the config file
- recalibrate = mpi_check_recalibrate(recalibrate);
- #endif
- if (recalibrate)
- {
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- /* Only the master prints the message */
- if (_starpu_mpi_common_is_src_node())
- #endif
- _STARPU_DISP("Current configuration does not match the bus performance model (%s: (stored) %d != (current) %d), recalibrating...\n", msg, val_file, val_detected);
- _starpu_bus_force_sampling();
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- if (_starpu_mpi_common_is_src_node())
- #endif
- _STARPU_DISP("... done\n");
- }
- }
- static void check_bus_config_file(void)
- {
- int res;
- char path[256];
- struct _starpu_machine_config *config = _starpu_get_machine_config();
- int recalibrate = 0;
- get_config_path(path, sizeof(path));
- res = access(path, F_OK);
- if (res || config->conf.bus_calibrate > 0)
- recalibrate = 1;
- #if defined(STARPU_USE_MPI_MASTER_SLAVE)
- //Send to each other to know if we had to recalibrate because someone cannot have the config file
- recalibrate = mpi_check_recalibrate(recalibrate);
- #endif
- if (recalibrate)
- {
- if (res)
- _STARPU_DISP("No performance model for the bus, calibrating...\n");
- _starpu_bus_force_sampling();
- if (res)
- _STARPU_DISP("... done\n");
- }
- else
- {
- FILE *f;
- int ret;
- unsigned read_cuda = -1, read_opencl = -1, read_mic = -1, read_mpi_ms = -1;
- unsigned read_cpus = -1, read_numa = -1;
- int locked;
- // Loading configuration from file
- f = fopen(path, "r");
- STARPU_ASSERT(f);
- locked = _starpu_frdlock(f) == 0;
- _starpu_drop_comments(f);
- ret = fscanf(f, "%u\t", &read_cpus);
- STARPU_ASSERT(ret == 1);
- _starpu_drop_comments(f);
- ret = fscanf(f, "%u\t", &read_numa);
- STARPU_ASSERT(ret == 1);
- _starpu_drop_comments(f);
- ret = fscanf(f, "%u\t", &read_cuda);
- STARPU_ASSERT(ret == 1);
- _starpu_drop_comments(f);
- ret = fscanf(f, "%u\t", &read_opencl);
- STARPU_ASSERT(ret == 1);
- _starpu_drop_comments(f);
- ret = fscanf(f, "%u\t", &read_mic);
- if (ret == 0)
- read_mic = 0;
- _starpu_drop_comments(f);
- ret = fscanf(f, "%u\t", &read_mpi_ms);
- if (ret == 0)
- read_mpi_ms = 0;
- _starpu_drop_comments(f);
- if (locked)
- _starpu_frdunlock(f);
- fclose(f);
- // Loading current configuration
- ncpus = _starpu_topology_get_nhwcpu(config);
- nnumas = _starpu_topology_get_nnumanodes(config);
- #ifdef STARPU_USE_CUDA
- ncuda = _starpu_get_cuda_device_count();
- #endif
- #ifdef STARPU_USE_OPENCL
- nopencl = _starpu_opencl_get_device_count();
- #endif
- #ifdef STARPU_USE_MIC
- nmic = _starpu_mic_src_get_device_count();
- #endif /* STARPU_USE_MIC */
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- nmpi_ms = _starpu_mpi_src_get_device_count();
- #endif /* STARPU_USE_MPI_MASTER_SLAVE */
- // Checking if both configurations match
- compare_value_and_recalibrate("CPUS", read_cpus, ncpus);
- compare_value_and_recalibrate("NUMA", read_numa, nnumas);
- compare_value_and_recalibrate("CUDA", read_cuda, ncuda);
- compare_value_and_recalibrate("OpenCL", read_opencl, nopencl);
- compare_value_and_recalibrate("MIC", read_mic, nmic);
- compare_value_and_recalibrate("MPI Master-Slave", read_mpi_ms, nmpi_ms);
- }
- }
- static void write_bus_config_file_content(void)
- {
- FILE *f;
- char path[256];
- int locked;
- STARPU_ASSERT(was_benchmarked);
- get_config_path(path, sizeof(path));
- _STARPU_DEBUG("writing config to %s\n", path);
- f = fopen(path, "w+");
- STARPU_ASSERT(f);
- locked = _starpu_fwrlock(f) == 0;
- _starpu_fftruncate(f, 0);
- fprintf(f, "# Current configuration\n");
- fprintf(f, "%u # Number of CPUs\n", ncpus);
- fprintf(f, "%u # Number of NUMA nodes\n", nnumas);
- fprintf(f, "%u # Number of CUDA devices\n", ncuda);
- fprintf(f, "%u # Number of OpenCL devices\n", nopencl);
- fprintf(f, "%u # Number of MIC devices\n", nmic);
- fprintf(f, "%u # Number of MPI devices\n", nmpi_ms);
- if (locked)
- _starpu_fwrunlock(f);
- fclose(f);
- }
- static void generate_bus_config_file(void)
- {
- if (!was_benchmarked)
- benchmark_all_gpu_devices();
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- /* Slaves don't write files */
- if (!_starpu_mpi_common_is_src_node())
- return;
- #endif
- write_bus_config_file_content();
- }
- #endif /* !SIMGRID */
- void _starpu_simgrid_get_platform_path(int version, char *path, size_t maxlen)
- {
- if (version == 3)
- get_bus_path("platform.xml", path, maxlen);
- else
- get_bus_path("platform.v4.xml", path, maxlen);
- }
- #ifndef STARPU_SIMGRID
- /*
- * Compute the precise PCI tree bandwidth and link shares
- *
- * We only have measurements from one leaf to another. We assume that the
- * available bandwidth is greater at lower levels, and thus measurements from
- * increasingly far GPUs provide the PCI bridges bandwidths at each level.
- *
- * The bandwidth of a PCI bridge is thus computed as the maximum of the speed
- * of the various transfers that we have achieved through it. We thus browse
- * the PCI tree three times:
- *
- * - first through all CUDA-CUDA possible transfers to compute the maximum
- * measured bandwidth on each PCI link and hub used for that.
- * - then through the whole tree to emit links for each PCI link and hub.
- * - then through all CUDA-CUDA possible transfers again to emit routes.
- */
- #if defined(STARPU_USE_CUDA) && defined(HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX) && HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX && defined(HAVE_CUDA_MEMCPY_PEER)
- /* Records, for each PCI link and hub, the maximum bandwidth seen through it */
- struct pci_userdata
- {
- /* Uplink max measurement */
- double bw_up;
- double bw_down;
- /* Hub max measurement */
- double bw;
- };
- /* Allocate a pci_userdata structure for the given object */
- static void allocate_userdata(hwloc_obj_t obj)
- {
- struct pci_userdata *data;
- if (obj->userdata)
- return;
- _STARPU_MALLOC(obj->userdata, sizeof(*data));
- data = obj->userdata;
- data->bw_up = 0.0;
- data->bw_down = 0.0;
- data->bw = 0.0;
- }
- /* Update the maximum bandwidth seen going to upstream */
- static void update_bandwidth_up(hwloc_obj_t obj, double bandwidth)
- {
- struct pci_userdata *data;
- if (obj->type != HWLOC_OBJ_BRIDGE && obj->type != HWLOC_OBJ_PCI_DEVICE)
- return;
- allocate_userdata(obj);
- data = obj->userdata;
- if (data->bw_up < bandwidth)
- data->bw_up = bandwidth;
- }
- /* Update the maximum bandwidth seen going from upstream */
- static void update_bandwidth_down(hwloc_obj_t obj, double bandwidth)
- {
- struct pci_userdata *data;
- if (obj->type != HWLOC_OBJ_BRIDGE && obj->type != HWLOC_OBJ_PCI_DEVICE)
- return;
- allocate_userdata(obj);
- data = obj->userdata;
- if (data->bw_down < bandwidth)
- data->bw_down = bandwidth;
- }
- /* Update the maximum bandwidth seen going through this Hub */
- static void update_bandwidth_through(hwloc_obj_t obj, double bandwidth)
- {
- struct pci_userdata *data;
- allocate_userdata(obj);
- data = obj->userdata;
- if (data->bw < bandwidth)
- data->bw = bandwidth;
- }
- /* find_* functions perform the first step: computing maximum bandwidths */
- /* Our trafic had to go through the host, go back from target up to the host,
- * updating uplink downstream bandwidth along the way */
- static void find_platform_backward_path(hwloc_obj_t obj, double bandwidth)
- {
- if (!obj)
- /* Oops, we should have seen a host bridge. Well, too bad. */
- return;
- /* Update uplink bandwidth of PCI Hub */
- update_bandwidth_down(obj, bandwidth);
- /* Update internal bandwidth of PCI Hub */
- update_bandwidth_through(obj, bandwidth);
- if (obj->type == HWLOC_OBJ_BRIDGE && obj->attr->bridge.upstream_type == HWLOC_OBJ_BRIDGE_HOST)
- /* Finished */
- return;
- /* Continue up */
- find_platform_backward_path(obj->parent, bandwidth);
- }
- /* Same, but update uplink upstream bandwidth */
- static void find_platform_forward_path(hwloc_obj_t obj, double bandwidth)
- {
- if (!obj)
- /* Oops, we should have seen a host bridge. Well, too bad. */
- return;
- /* Update uplink bandwidth of PCI Hub */
- update_bandwidth_up(obj, bandwidth);
- /* Update internal bandwidth of PCI Hub */
- update_bandwidth_through(obj, bandwidth);
- if (obj->type == HWLOC_OBJ_BRIDGE && obj->attr->bridge.upstream_type == HWLOC_OBJ_BRIDGE_HOST)
- /* Finished */
- return;
- /* Continue up */
- find_platform_forward_path(obj->parent, bandwidth);
- }
- /* Find the path from obj1 through parent down to obj2 (without ever going up),
- * and update the maximum bandwidth along the path */
- static int find_platform_path_down(hwloc_obj_t parent, hwloc_obj_t obj1, hwloc_obj_t obj2, double bandwidth)
- {
- unsigned i;
- /* Base case, path is empty */
- if (parent == obj2)
- return 1;
- /* Try to go down from parent */
- for (i = 0; i < parent->arity; i++)
- if (parent->children[i] != obj1 && find_platform_path_down(parent->children[i], NULL, obj2, bandwidth))
- {
- /* Found it down there, update bandwidth of parent */
- update_bandwidth_down(parent->children[i], bandwidth);
- update_bandwidth_through(parent, bandwidth);
- return 1;
- }
- return 0;
- }
- /* Find the path from obj1 to obj2, and update the maximum bandwidth along the
- * path */
- static int find_platform_path_up(hwloc_obj_t obj1, hwloc_obj_t obj2, double bandwidth)
- {
- int ret;
- hwloc_obj_t parent = obj1->parent;
- if (!parent)
- {
- /* Oops, we should have seen a host bridge. Act as if we had seen it. */
- find_platform_backward_path(obj2, bandwidth);
- return 1;
- }
- if (find_platform_path_down(parent, obj1, obj2, bandwidth))
- /* obj2 was a mere (sub)child of our parent */
- return 1;
- /* obj2 is not a (sub)child of our parent, we have to go up through the parent */
- if (parent->type == HWLOC_OBJ_BRIDGE && parent->attr->bridge.upstream_type == HWLOC_OBJ_BRIDGE_HOST)
- {
- /* We have to go up to the Host, so obj2 is not in the same PCI
- * tree, so we're for for obj1 to Host, and just find the path
- * from obj2 to Host too.
- */
- find_platform_backward_path(obj2, bandwidth);
- update_bandwidth_up(parent, bandwidth);
- update_bandwidth_through(parent, bandwidth);
- return 1;
- }
- /* Not at host yet, just go up */
- ret = find_platform_path_up(parent, obj2, bandwidth);
- update_bandwidth_up(parent, bandwidth);
- update_bandwidth_through(parent, bandwidth);
- return ret;
- }
- /* find the path between cuda i and cuda j, and update the maximum bandwidth along the path */
- static int find_platform_cuda_path(hwloc_topology_t topology, unsigned i, unsigned j, double bandwidth)
- {
- hwloc_obj_t cudai, cudaj;
- cudai = hwloc_cuda_get_device_osdev_by_index(topology, i);
- cudaj = hwloc_cuda_get_device_osdev_by_index(topology, j);
- if (!cudai || !cudaj)
- return 0;
- return find_platform_path_up(cudai, cudaj, bandwidth);
- }
- /* emit_topology_bandwidths performs the second step: emitting link names */
- /* Emit the link name of the object */
- static void emit_pci_hub(FILE *f, hwloc_obj_t obj)
- {
- STARPU_ASSERT(obj->type == HWLOC_OBJ_BRIDGE);
- fprintf(f, "PCI:%04x:[%02x-%02x]", obj->attr->bridge.downstream.pci.domain, obj->attr->bridge.downstream.pci.secondary_bus, obj->attr->bridge.downstream.pci.subordinate_bus);
- }
- static void emit_pci_dev(FILE *f, struct hwloc_pcidev_attr_s *pcidev)
- {
- fprintf(f, "PCI:%04x:%02x:%02x.%1x", pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
- }
- /* Emit the links of the object */
- static void emit_topology_bandwidths(FILE *f, hwloc_obj_t obj, const char *Bps, const char *s)
- {
- unsigned i;
- if (obj->userdata)
- {
- struct pci_userdata *data = obj->userdata;
- if (obj->type == HWLOC_OBJ_BRIDGE)
- {
- /* Uplink */
- fprintf(f, " <link id=\"");
- emit_pci_hub(f, obj);
- fprintf(f, " up\" bandwidth=\"%f%s\" latency=\"0.000000%s\"/>\n", data->bw_up, Bps, s);
- fprintf(f, " <link id=\"");
- emit_pci_hub(f, obj);
- fprintf(f, " down\" bandwidth=\"%f%s\" latency=\"0.000000%s\"/>\n", data->bw_down, Bps, s);
- /* PCI Switches are assumed to have infinite internal bandwidth */
- if (!obj->name || !strstr(obj->name, "Switch"))
- {
- /* We assume that PCI Hubs have double bandwidth in
- * order to support full duplex but not more */
- fprintf(f, " <link id=\"");
- emit_pci_hub(f, obj);
- fprintf(f, " through\" bandwidth=\"%f%s\" latency=\"0.000000%s\"/>\n", data->bw * 2, Bps, s);
- }
- }
- else if (obj->type == HWLOC_OBJ_PCI_DEVICE)
- {
- fprintf(f, " <link id=\"");
- emit_pci_dev(f, &obj->attr->pcidev);
- fprintf(f, " up\" bandwidth=\"%f%s\" latency=\"0.000000%s\"/>\n", data->bw_up, Bps, s);
- fprintf(f, " <link id=\"");
- emit_pci_dev(f, &obj->attr->pcidev);
- fprintf(f, " down\" bandwidth=\"%f%s\" latency=\"0.000000%s\"/>\n", data->bw_down, Bps, s);
- }
- }
- for (i = 0; i < obj->arity; i++)
- emit_topology_bandwidths(f, obj->children[i], Bps, s);
- }
- /* emit_pci_link_* functions perform the third step: emitting the routes */
- static void emit_pci_link(FILE *f, hwloc_obj_t obj, const char *suffix)
- {
- if (obj->type == HWLOC_OBJ_BRIDGE)
- {
- fprintf(f, " <link_ctn id=\"");
- emit_pci_hub(f, obj);
- fprintf(f, " %s\"/>\n", suffix);
- }
- else if (obj->type == HWLOC_OBJ_PCI_DEVICE)
- {
- fprintf(f, " <link_ctn id=\"");
- emit_pci_dev(f, &obj->attr->pcidev);
- fprintf(f, " %s\"/>\n", suffix);
- }
- }
- /* Go to upstream */
- static void emit_pci_link_up(FILE *f, hwloc_obj_t obj)
- {
- emit_pci_link(f, obj, "up");
- }
- /* Go from upstream */
- static void emit_pci_link_down(FILE *f, hwloc_obj_t obj)
- {
- emit_pci_link(f, obj, "down");
- }
- /* Go through PCI hub */
- static void emit_pci_link_through(FILE *f, hwloc_obj_t obj)
- {
- /* We don't care about trafic going through PCI switches */
- if (obj->type == HWLOC_OBJ_BRIDGE)
- {
- if (!obj->name || !strstr(obj->name, "Switch"))
- emit_pci_link(f, obj, "through");
- else
- {
- fprintf(f, " <!-- Switch ");
- emit_pci_hub(f, obj);
- fprintf(f, " through -->\n");
- }
- }
- }
- /* Our trafic has to go through the host, go back from target up to the host,
- * using uplink downstream along the way */
- static void emit_platform_backward_path(FILE *f, hwloc_obj_t obj)
- {
- if (!obj)
- /* Oops, we should have seen a host bridge. Well, too bad. */
- return;
- /* Go through PCI Hub */
- emit_pci_link_through(f, obj);
- /* Go through uplink */
- emit_pci_link_down(f, obj);
- if (obj->type == HWLOC_OBJ_BRIDGE && obj->attr->bridge.upstream_type == HWLOC_OBJ_BRIDGE_HOST)
- {
- /* Finished, go through host */
- fprintf(f, " <link_ctn id=\"Host\"/>\n");
- return;
- }
- /* Continue up */
- emit_platform_backward_path(f, obj->parent);
- }
- /* Same, but use upstream link */
- static void emit_platform_forward_path(FILE *f, hwloc_obj_t obj)
- {
- if (!obj)
- /* Oops, we should have seen a host bridge. Well, too bad. */
- return;
- /* Go through PCI Hub */
- emit_pci_link_through(f, obj);
- /* Go through uplink */
- emit_pci_link_up(f, obj);
- if (obj->type == HWLOC_OBJ_BRIDGE && obj->attr->bridge.upstream_type == HWLOC_OBJ_BRIDGE_HOST)
- {
- /* Finished, go through host */
- fprintf(f, " <link_ctn id=\"Host\"/>\n");
- return;
- }
- /* Continue up */
- emit_platform_forward_path(f, obj->parent);
- }
- /* Find the path from obj1 through parent down to obj2 (without ever going up),
- * and use the links along the path */
- static int emit_platform_path_down(FILE *f, hwloc_obj_t parent, hwloc_obj_t obj1, hwloc_obj_t obj2)
- {
- unsigned i;
- /* Base case, path is empty */
- if (parent == obj2)
- return 1;
- /* Try to go down from parent */
- for (i = 0; i < parent->arity; i++)
- if (parent->children[i] != obj1 && emit_platform_path_down(f, parent->children[i], NULL, obj2))
- {
- /* Found it down there, path goes through this hub */
- emit_pci_link_down(f, parent->children[i]);
- emit_pci_link_through(f, parent);
- return 1;
- }
- return 0;
- }
- /* Find the path from obj1 to obj2, and use the links along the path */
- static int emit_platform_path_up(FILE *f, hwloc_obj_t obj1, hwloc_obj_t obj2)
- {
- int ret;
- hwloc_obj_t parent = obj1->parent;
- if (!parent)
- {
- /* Oops, we should have seen a host bridge. Act as if we had seen it. */
- emit_platform_backward_path(f, obj2);
- return 1;
- }
- if (emit_platform_path_down(f, parent, obj1, obj2))
- /* obj2 was a mere (sub)child of our parent */
- return 1;
- /* obj2 is not a (sub)child of our parent, we have to go up through the parent */
- if (parent->type == HWLOC_OBJ_BRIDGE && parent->attr->bridge.upstream_type == HWLOC_OBJ_BRIDGE_HOST)
- {
- /* We have to go up to the Host, so obj2 is not in the same PCI
- * tree, so we're for for obj1 to Host, and just find the path
- * from obj2 to Host too.
- */
- emit_platform_backward_path(f, obj2);
- fprintf(f, " <link_ctn id=\"Host\"/>\n");
- emit_pci_link_up(f, parent);
- emit_pci_link_through(f, parent);
- return 1;
- }
- /* Not at host yet, just go up */
- ret = emit_platform_path_up(f, parent, obj2);
- emit_pci_link_up(f, parent);
- emit_pci_link_through(f, parent);
- return ret;
- }
- /* Clean our mess in the topology before destroying it */
- static void clean_topology(hwloc_obj_t obj)
- {
- unsigned i;
- if (obj->userdata)
- free(obj->userdata);
- for (i = 0; i < obj->arity; i++)
- clean_topology(obj->children[i]);
- }
- #endif
- static void write_bus_platform_file_content(int version)
- {
- FILE *f;
- char path[256];
- unsigned i;
- const char *speed, *flops, *Bps, *s;
- char dash;
- int locked;
- if (version == 3)
- {
- speed = "power";
- flops = "";
- Bps = "";
- s = "";
- dash = '_';
- }
- else
- {
- speed = "speed";
- flops = "f";
- Bps = "Bps";
- s = "s";
- dash = '-';
- }
- STARPU_ASSERT(was_benchmarked);
- _starpu_simgrid_get_platform_path(version, path, sizeof(path));
- _STARPU_DEBUG("writing platform to %s\n", path);
- f = fopen(path, "w+");
- if (!f)
- {
- perror("fopen write_bus_platform_file_content");
- _STARPU_DISP("path '%s'\n", path);
- fflush(stderr);
- STARPU_ABORT();
- }
- locked = _starpu_fwrlock(f) == 0;
- _starpu_fftruncate(f, 0);
- fprintf(f,
- "<?xml version='1.0'?>\n"
- "<!DOCTYPE platform SYSTEM '%s'>\n"
- " <platform version=\"%d\">\n"
- " <config id=\"General\">\n"
- " <prop id=\"network/TCP%cgamma\" value=\"-1\"></prop>\n"
- " <prop id=\"network/latency%cfactor\" value=\"1\"></prop>\n"
- " <prop id=\"network/bandwidth%cfactor\" value=\"1\"></prop>\n"
- " </config>\n"
- " <AS id=\"AS0\" routing=\"Full\">\n"
- " <host id=\"MAIN\" %s=\"1%s\"/>\n",
- version == 3
- ? "http://simgrid.gforge.inria.fr/simgrid.dtd"
- : "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd",
- version, dash, dash, dash, speed, flops);
- for (i = 0; i < ncpus; i++)
- /* TODO: host memory for out-of-core simulation */
- fprintf(f, " <host id=\"CPU%u\" %s=\"2000000000%s\"/>\n", i, speed, flops);
- for (i = 0; i < ncuda; i++)
- {
- fprintf(f, " <host id=\"CUDA%u\" %s=\"2000000000%s\">\n", i, speed, flops);
- fprintf(f, " <prop id=\"memsize\" value=\"%llu\"/>\n", (unsigned long long) cuda_size[i]);
- #ifdef HAVE_CUDA_MEMCPY_PEER
- fprintf(f, " <prop id=\"memcpy_peer\" value=\"1\"/>\n");
- #endif
- /* TODO: record cudadev_direct instead of assuming it's NUMA nodes */
- fprintf(f, " </host>\n");
- }
- for (i = 0; i < nopencl; i++)
- {
- fprintf(f, " <host id=\"OpenCL%u\" %s=\"2000000000%s\">\n", i, speed, flops);
- fprintf(f, " <prop id=\"memsize\" value=\"%llu\"/>\n", (unsigned long long) opencl_size[i]);
- fprintf(f, " </host>\n");
- }
- fprintf(f, "\n <host id=\"RAM\" %s=\"1%s\"/>\n", speed, flops);
- /*
- * Compute maximum bandwidth, taken as host bandwidth
- */
- double max_bandwidth = 0;
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- unsigned numa;
- #endif
- #ifdef STARPU_USE_CUDA
- for (i = 0; i < ncuda; i++)
- {
- for (numa = 0; numa < nnumas; numa++)
- {
- double down_bw = 1.0 / cudadev_timing_per_numa[i*STARPU_MAXNUMANODES+numa].timing_dtoh;
- double up_bw = 1.0 / cudadev_timing_per_numa[i*STARPU_MAXNUMANODES+numa].timing_htod;
- if (max_bandwidth < down_bw)
- max_bandwidth = down_bw;
- if (max_bandwidth < up_bw)
- max_bandwidth = up_bw;
- }
- }
- #endif
- #ifdef STARPU_USE_OPENCL
- for (i = 0; i < nopencl; i++)
- {
- for (numa = 0; numa < nnumas; numa++)
- {
- double down_bw = 1.0 / opencldev_timing_per_numa[i*STARPU_MAXNUMANODES+numa].timing_dtoh;
- double up_bw = 1.0 / opencldev_timing_per_numa[i*STARPU_MAXNUMANODES+numa].timing_htod;
- if (max_bandwidth < down_bw)
- max_bandwidth = down_bw;
- if (max_bandwidth < up_bw)
- max_bandwidth = up_bw;
- }
- }
- #endif
- fprintf(f, "\n <link id=\"Host\" bandwidth=\"%f%s\" latency=\"0.000000%s\"/>\n\n", max_bandwidth*1000000, Bps, s);
- /*
- * OpenCL links
- */
- #ifdef STARPU_USE_OPENCL
- for (i = 0; i < nopencl; i++)
- {
- char i_name[16];
- snprintf(i_name, sizeof(i_name), "OpenCL%u", i);
- fprintf(f, " <link id=\"RAM-%s\" bandwidth=\"%f%s\" latency=\"%f%s\"/>\n",
- i_name,
- 1000000 / search_bus_best_timing(i, "OpenCL", 1), Bps,
- search_bus_best_latency(i, "OpenCL", 1)/1000000., s);
- fprintf(f, " <link id=\"%s-RAM\" bandwidth=\"%f%s\" latency=\"%f%s\"/>\n",
- i_name,
- 1000000 / search_bus_best_timing(i, "OpenCL", 0), Bps,
- search_bus_best_latency(i, "OpenCL", 0)/1000000., s);
- }
- fprintf(f, "\n");
- #endif
- /*
- * CUDA links and routes
- */
- #ifdef STARPU_USE_CUDA
- /* Write RAM/CUDA bandwidths and latencies */
- for (i = 0; i < ncuda; i++)
- {
- char i_name[16];
- snprintf(i_name, sizeof(i_name), "CUDA%u", i);
- fprintf(f, " <link id=\"RAM-%s\" bandwidth=\"%f%s\" latency=\"%f%s\"/>\n",
- i_name,
- 1000000. / search_bus_best_timing(i, "CUDA", 1), Bps,
- search_bus_best_latency(i, "CUDA", 1)/1000000., s);
- fprintf(f, " <link id=\"%s-RAM\" bandwidth=\"%f%s\" latency=\"%f%s\"/>\n",
- i_name,
- 1000000. / search_bus_best_timing(i, "CUDA", 0), Bps,
- search_bus_best_latency(i, "CUDA", 0)/1000000., s);
- }
- fprintf(f, "\n");
- #ifdef HAVE_CUDA_MEMCPY_PEER
- /* Write CUDA/CUDA bandwidths and latencies */
- for (i = 0; i < ncuda; i++)
- {
- unsigned j;
- char i_name[16];
- snprintf(i_name, sizeof(i_name), "CUDA%u", i);
- for (j = 0; j < ncuda; j++)
- {
- char j_name[16];
- if (j == i)
- continue;
- snprintf(j_name, sizeof(j_name), "CUDA%u", j);
- fprintf(f, " <link id=\"%s-%s\" bandwidth=\"%f%s\" latency=\"%f%s\"/>\n",
- i_name, j_name,
- 1000000. / cudadev_timing_dtod[i][j], Bps,
- cudadev_latency_dtod[i][j]/1000000., s);
- }
- }
- #endif
- #if defined(HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX) && HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX && defined(HAVE_CUDA_MEMCPY_PEER)
- /* If we have enough hwloc information, write PCI bandwidths and routes */
- if (!starpu_get_env_number_default("STARPU_PCI_FLAT", 0))
- {
- hwloc_topology_t topology;
- hwloc_topology_init(&topology);
- _starpu_topology_filter(topology);
- hwloc_topology_load(topology);
- /* First find paths and record measured bandwidth along the path */
- for (i = 0; i < ncuda; i++)
- {
- unsigned j;
- for (j = 0; j < ncuda; j++)
- if (i != j)
- if (!find_platform_cuda_path(topology, i, j, 1000000. / cudadev_timing_dtod[i][j]))
- {
- clean_topology(hwloc_get_root_obj(topology));
- hwloc_topology_destroy(topology);
- goto flat_cuda;
- }
- /* Record RAM/CUDA bandwidths */
- find_platform_forward_path(hwloc_cuda_get_device_osdev_by_index(topology, i), 1000000. / search_bus_best_timing(i, "CUDA", 0));
- find_platform_backward_path(hwloc_cuda_get_device_osdev_by_index(topology, i), 1000000. / search_bus_best_timing(i, "CUDA", 1));
- }
- /* Ok, found path in all cases, can emit advanced platform routes */
- fprintf(f, "\n");
- emit_topology_bandwidths(f, hwloc_get_root_obj(topology), Bps, s);
- fprintf(f, "\n");
- for (i = 0; i < ncuda; i++)
- {
- unsigned j;
- for (j = 0; j < ncuda; j++)
- if (i != j)
- {
- fprintf(f, " <route src=\"CUDA%u\" dst=\"CUDA%u\" symmetrical=\"NO\">\n", i, j);
- fprintf(f, " <link_ctn id=\"CUDA%u-CUDA%u\"/>\n", i, j);
- emit_platform_path_up(f,
- hwloc_cuda_get_device_osdev_by_index(topology, i),
- hwloc_cuda_get_device_osdev_by_index(topology, j));
- fprintf(f, " </route>\n");
- }
- fprintf(f, " <route src=\"CUDA%u\" dst=\"RAM\" symmetrical=\"NO\">\n", i);
- fprintf(f, " <link_ctn id=\"CUDA%u-RAM\"/>\n", i);
- emit_platform_forward_path(f, hwloc_cuda_get_device_osdev_by_index(topology, i));
- fprintf(f, " </route>\n");
- fprintf(f, " <route src=\"RAM\" dst=\"CUDA%u\" symmetrical=\"NO\">\n", i);
- fprintf(f, " <link_ctn id=\"RAM-CUDA%u\"/>\n", i);
- emit_platform_backward_path(f, hwloc_cuda_get_device_osdev_by_index(topology, i));
- fprintf(f, " </route>\n");
- }
- clean_topology(hwloc_get_root_obj(topology));
- hwloc_topology_destroy(topology);
- }
- else
- {
- flat_cuda:
- #else
- {
- #endif
- /* If we don't have enough hwloc information, write trivial routes always through host */
- for (i = 0; i < ncuda; i++)
- {
- char i_name[16];
- snprintf(i_name, sizeof(i_name), "CUDA%u", i);
- fprintf(f, " <route src=\"RAM\" dst=\"%s\" symmetrical=\"NO\"><link_ctn id=\"RAM-%s\"/><link_ctn id=\"Host\"/></route>\n", i_name, i_name);
- fprintf(f, " <route src=\"%s\" dst=\"RAM\" symmetrical=\"NO\"><link_ctn id=\"%s-RAM\"/><link_ctn id=\"Host\"/></route>\n", i_name, i_name);
- }
- #ifdef HAVE_CUDA_MEMCPY_PEER
- for (i = 0; i < ncuda; i++)
- {
- unsigned j;
- char i_name[16];
- snprintf(i_name, sizeof(i_name), "CUDA%u", i);
- for (j = 0; j < ncuda; j++)
- {
- char j_name[16];
- if (j == i)
- continue;
- snprintf(j_name, sizeof(j_name), "CUDA%u", j);
- fprintf(f, " <route src=\"%s\" dst=\"%s\" symmetrical=\"NO\"><link_ctn id=\"%s-%s\"/><link_ctn id=\"Host\"/></route>\n", i_name, j_name, i_name, j_name);
- }
- }
- #endif
- } /* defined(STARPU_HAVE_HWLOC) && defined(HAVE_CUDA_MEMCPY_PEER) */
- fprintf(f, "\n");
- #endif /* STARPU_USE_CUDA */
- /*
- * OpenCL routes
- */
- #ifdef STARPU_USE_OPENCL
- for (i = 0; i < nopencl; i++)
- {
- char i_name[16];
- snprintf(i_name, sizeof(i_name), "OpenCL%u", i);
- fprintf(f, " <route src=\"RAM\" dst=\"%s\" symmetrical=\"NO\"><link_ctn id=\"RAM-%s\"/><link_ctn id=\"Host\"/></route>\n", i_name, i_name);
- fprintf(f, " <route src=\"%s\" dst=\"RAM\" symmetrical=\"NO\"><link_ctn id=\"%s-RAM\"/><link_ctn id=\"Host\"/></route>\n", i_name, i_name);
- }
- #endif
- fprintf(f,
- " </AS>\n"
- " </platform>\n"
- );
- if (locked)
- _starpu_fwrunlock(f);
- fclose(f);
-
- }
- static void generate_bus_platform_file(void)
- {
- if (!was_benchmarked)
- benchmark_all_gpu_devices();
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- /* Slaves don't write files */
- if (!_starpu_mpi_common_is_src_node())
- return;
- #endif
- write_bus_platform_file_content(3);
- write_bus_platform_file_content(4);
- }
- static void check_bus_platform_file(void)
- {
- int res;
- char path[256];
- _starpu_simgrid_get_platform_path(4, path, sizeof(path));
- res = access(path, F_OK);
- if (!res)
- {
- _starpu_simgrid_get_platform_path(3, path, sizeof(path));
- res = access(path, F_OK);
- }
- if (res)
- {
- /* File does not exist yet */
- generate_bus_platform_file();
- }
- }
- /*
- * Generic
- */
- static void _starpu_bus_force_sampling(void)
- {
- _STARPU_DEBUG("Force bus sampling ...\n");
- _starpu_create_sampling_directory_if_needed();
- generate_bus_affinity_file();
- generate_bus_latency_file();
- generate_bus_bandwidth_file();
- generate_bus_config_file();
- generate_bus_platform_file();
- }
- #endif /* !SIMGRID */
- void _starpu_load_bus_performance_files(void)
- {
- _starpu_create_sampling_directory_if_needed();
- struct _starpu_machine_config * config = _starpu_get_machine_config();
- nnumas = _starpu_topology_get_nnumanodes(config);
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_SIMGRID)
- ncuda = _starpu_get_cuda_device_count();
- #endif
- #if defined(STARPU_USE_OPENCL) || defined(STARPU_USE_SIMGRID)
- nopencl = _starpu_opencl_get_device_count();
- #endif
- #if defined(STARPU_USE_MPI_MASTER_SLAVE) || defined(STARPU_USE_SIMGRID)
- nmpi_ms = _starpu_mpi_src_get_device_count();
- #endif
- #if defined(STARPU_USE_MIC) || defined(STARPU_USE_SIMGRID)
- nmic = _starpu_mic_src_get_device_count();
- #endif
- #ifndef STARPU_SIMGRID
- check_bus_config_file();
- #endif
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- /* be sure that master wrote the perf files */
- _starpu_mpi_common_barrier();
- #endif
- #ifndef STARPU_SIMGRID
- load_bus_affinity_file();
- #endif
- load_bus_latency_file();
- load_bus_bandwidth_file();
- #ifndef STARPU_SIMGRID
- check_bus_platform_file();
- #endif
- }
- /* (in MB/s) */
- double starpu_transfer_bandwidth(unsigned src_node, unsigned dst_node)
- {
- return bandwidth_matrix[src_node][dst_node];
- }
- /* (in µs) */
- double starpu_transfer_latency(unsigned src_node, unsigned dst_node)
- {
- return latency_matrix[src_node][dst_node];
- }
- /* (in µs) */
- double starpu_transfer_predict(unsigned src_node, unsigned dst_node, size_t size)
- {
- double bandwidth = bandwidth_matrix[src_node][dst_node];
- double latency = latency_matrix[src_node][dst_node];
- struct _starpu_machine_topology *topology = &_starpu_get_machine_config()->topology;
- #if 0
- int busid = starpu_bus_get_id(src_node, dst_node);
- int direct = starpu_bus_get_direct(busid);
- #endif
- float ngpus = topology->ncudagpus+topology->nopenclgpus;
- #if 0
- /* Ideally we should take into account that some GPUs are directly
- * connected through a PCI switch, which has less contention that the
- * Host bridge, but doing that seems to *decrease* performance... */
- if (direct)
- {
- float neighbours = starpu_bus_get_ngpus(busid);
- /* Count transfers of these GPUs, and count transfers between
- * other GPUs and these GPUs */
- ngpus = neighbours + (ngpus - neighbours) * neighbours / ngpus;
- }
- #endif
- return latency + (size/bandwidth)*2*ngpus;
- }
- /* calculate save bandwidth and latency */
- /* bandwidth in MB/s - latency in µs */
- void _starpu_save_bandwidth_and_latency_disk(double bandwidth_write, double bandwidth_read, double latency_write, double latency_read, unsigned node)
- {
- unsigned int i, j;
- double slowness_disk_between_main_ram, slowness_main_ram_between_node;
- /* save bandwith */
- for(i = 0; i < STARPU_MAXNODES; ++i)
- {
- for(j = 0; j < STARPU_MAXNODES; ++j)
- {
- if (i == j && j == node) /* source == destination == node */
- {
- bandwidth_matrix[i][j] = 0;
- }
- else if (i == node) /* source == disk */
- {
- /* convert in slowness */
- if(bandwidth_read != 0)
- slowness_disk_between_main_ram = 1/bandwidth_read;
- else
- slowness_disk_between_main_ram = 0;
- if(bandwidth_matrix[STARPU_MAIN_RAM][j] != 0)
- slowness_main_ram_between_node = 1/bandwidth_matrix[STARPU_MAIN_RAM][j];
- else
- slowness_main_ram_between_node = 0;
- bandwidth_matrix[i][j] = 1/(slowness_disk_between_main_ram+slowness_main_ram_between_node);
- }
- else if (j == node) /* destination == disk */
- {
- /* convert in slowness */
- if(bandwidth_write != 0)
- slowness_disk_between_main_ram = 1/bandwidth_write;
- else
- slowness_disk_between_main_ram = 0;
- if(bandwidth_matrix[i][STARPU_MAIN_RAM] != 0)
- slowness_main_ram_between_node = 1/bandwidth_matrix[i][STARPU_MAIN_RAM];
- else
- slowness_main_ram_between_node = 0;
- bandwidth_matrix[i][j] = 1/(slowness_disk_between_main_ram+slowness_main_ram_between_node);
- }
- else if (j > node || i > node) /* not affected by the node */
- {
- bandwidth_matrix[i][j] = NAN;
- }
- }
- }
- /* save latency */
- for(i = 0; i < STARPU_MAXNODES; ++i)
- {
- for(j = 0; j < STARPU_MAXNODES; ++j)
- {
- if (i == j && j == node) /* source == destination == node */
- {
- latency_matrix[i][j] = 0;
- }
- else if (i == node) /* source == disk */
- {
- latency_matrix[i][j] = (latency_write+latency_matrix[STARPU_MAIN_RAM][j]);
- }
- else if (j == node) /* destination == disk */
- {
- latency_matrix[i][j] = (latency_read+latency_matrix[i][STARPU_MAIN_RAM]);
- }
- else if (j > node || i > node) /* not affected by the node */
- {
- latency_matrix[i][j] = NAN;
- }
- }
- }
- }
|