diff --git a/src/nnfdm.cpp b/src/nnfdm.cpp index e92c1f2..1b9f07f 100644 --- a/src/nnfdm.cpp +++ b/src/nnfdm.cpp @@ -179,6 +179,7 @@ int nnfdm_start(int id) , true // If true, store stdout in DataMovementStatusResponse.Message when the command is successful. Failure output is always contained in the message. , -1 // The number of slots specified in the MPI hostfile. A value of 0 disables the use of slots in the hostfile. -1 will defer to the server side configuration. , -1 // The number of max_slots specified in the MPI hostfile. A value of 0 disables the use of max_slots in the hostfile. -1 will defer to the server side configuration. + , "" // Data movement profile. Empty will default to the default profile. ); nnfdm::CreateResponse create_response; nnfdm::RPCStatus rpc_status = nnfdm_client->Create( *nnfdm_workflow diff --git a/test/axl_test_nnfdm.cpp b/test/axl_test_nnfdm.cpp index 14364bb..5635d42 100644 --- a/test/axl_test_nnfdm.cpp +++ b/test/axl_test_nnfdm.cpp @@ -56,6 +56,7 @@ int main(int argc, char** argv) , true // If true, store stdout in DataMovementStatusResponse.Message when the command is successful. Failure output is always contained in the message. , -1 // The number of slots specified in the MPI hostfile. A value of 0 disables the use of slots in the hostfile. -1 will defer to the server side configuration. , -1 // The number of max_slots specified in the MPI hostfile. A value of 0 disables the use of max_slots in the hostfile. -1 will defer to the server side configuration. + , "" // Data movement profile. Empty will default to the default profile. ); CreateResponse create_response;