You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, nomp_init() has the following signature:
intnomp_init(intargc, constchar**argv);
This should be change similar to MPI_Init() as follows:
intnomp_init(int*argc, constchar***argv);
This way we can filter out and process --nomp-<arg> arguments and
their values and return the modified argc and argv variables without --nomp-<arg> back to the user.
The text was updated successfully, but these errors were encountered:
Currently,
nomp_init()
has the following signature:This should be change similar to MPI_Init() as follows:
This way we can filter out and process
--nomp-<arg>
arguments andtheir values and return the modified
argc
andargv
variables without--nomp-<arg>
back to the user.The text was updated successfully, but these errors were encountered: