Skip to content

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
eddy16112 committed Oct 23, 2017
1 parent 77c2207 commit 8205071
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions runtime/legion/legion_c.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3912,17 +3912,7 @@ legion_runtime_start(int argc,
char **argv,
bool background /* = false */)
{
/* int argc_tmp = 3;
char *argv1 = "/home/wwu/legion-up/tutorial-c/00_hello_world/./hello_world";
char *argv2 = "-ll:cpu";
char *argv3 = "7";
char **argv_tmp = (char**)malloc(sizeof(char*));
argv_tmp[0] = argv1;
argv_tmp[1] = argv2;
argv_tmp[2] = argv3;
return Runtime::start(argc_tmp, argv_tmp, background);
*/
return Runtime::start(argc, argv, background);
return Runtime::start(argc, argv, background);
}

void
Expand Down Expand Up @@ -5077,7 +5067,6 @@ legion_mapper_runtime_find_physical_instance_layout_constraint_id(
return ret;
}

<<<<<<< ee52a4e921fec38a9b540a0443422fceeb7905c7
bool
legion_mapper_runtime_acquire_instance(
legion_mapper_runtime_t runtime_,
Expand Down Expand Up @@ -5139,4 +5128,4 @@ legion_convert_1d_to_2d_column_major(
for (i = 0; i < num_columns; i++) {
dst[i] = (void*)((unsigned char*)src + offset.offset * i);
}
}
}

0 comments on commit 8205071

Please sign in to comment.