Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Xin Wang
codes-dev
Commits
72accf06
Commit
72accf06
authored
Nov 20, 2013
by
Shane Snyder
Browse files
Merge branch 'master' of git.mcs.anl.gov:radix/codes-base
parents
2d6a1673
a5c689f1
Changes
4
Hide whitespace changes
Inline
Side-by-side
codes/CodesKernelHelpers.h
View file @
72accf06
...
...
@@ -29,6 +29,7 @@ enum cl_event_t
CL_GETSIZE
=
1
,
CL_GETRANK
,
CL_WRITEAT
,
CL_READAT
,
CL_OPEN
,
CL_CLOSE
,
CL_SYNC
,
...
...
src/iokernellang/CodesKernelHelpers.c
View file @
72accf06
...
...
@@ -22,6 +22,8 @@ char * code_kernel_helpers_kinstToStr(int inst)
{
case
WRITEAT
:
return
"WRITEAT"
;
case
READAT
:
return
"READAT"
;
case
GETGROUPRANK
:
return
"GETGROUPRANK"
;
case
GETGROUPSIZE
:
...
...
@@ -51,6 +53,8 @@ char * code_kernel_helpers_cleventToStr(int inst)
{
case
CL_WRITEAT
:
return
"CL_WRITEAT"
;
case
CL_READAT
:
return
"CL_READAT"
;
case
CL_GETRANK
:
return
"CL_GETRANK"
;
case
CL_GETSIZE
:
...
...
@@ -80,6 +84,8 @@ static int convertKLInstToEvent(int inst)
{
case
WRITEAT
:
return
CL_WRITEAT
;
case
READAT
:
return
CL_READAT
;
case
GETGROUPRANK
:
return
CL_GETRANK
;
case
GETGROUPSIZE
:
...
...
@@ -214,6 +220,7 @@ int codes_kernel_helper_parse_input(CodesIOKernel_pstate * ps, CodesIOKernelCont
{
/* for each instrunction that triggers a simulator event */
case
WRITEAT
:
case
READAT
:
case
GETGROUPRANK
:
case
GETGROUPSIZE
:
case
CLOSE
:
...
...
@@ -247,6 +254,7 @@ int codes_kernel_helper_parse_input(CodesIOKernel_pstate * ps, CodesIOKernelCont
case
CL_GETRANK
:
case
CL_GETSIZE
:
case
CL_WRITEAT
:
case
CL_READAT
:
case
CL_OPEN
:
case
CL_CLOSE
:
case
CL_SYNC
:
...
...
src/util/README.codes-mapping.txt
0 → 100644
View file @
72accf06
- The codes-mapping.h header file contains the function definitions for the codes LP mapping.
Step 1: Specifying the LP types in the config file:
- Here is an example of a config file that specifies the codes LP mapping
-------------------------------example-test.conf-----------------------------
LPGROUPS
{
MODELNET_GRP
{
repetitions="16";
server="1";
example_net="1";
}
}
------------------------------------------------------------------------------
In this config file, there are multiple LP types defined in a single LP group (As we will see in a later
example, there can be multiple LP groups in a config file too). There is 1 server LP and 1 example_net
LP type in a group and this combination is repeated 16 time (repetitions="16"). ROSS will assign the
LPs to the PEs (PEs is an abstraction for MPI rank in ROSS) by placing 1 server LP then 1 example_net
LP a total of 16 times. This configuration is useful if there is some form of communication involved
between the server and example_net LP types, in which case ROSS will place them on the same PE and
communication between server and example_net LPs will not involve remote messages.
The number of server and example_net LPs can be more than 1. Lets assume if we have two example_net
LPs for each server then the config file will have the following format:
-------------------------------example-test2.conf-----------------------------
LPGROUPS
{
MODELNET_GRP
{
repetitions="16";
server="1";
example_net="2";
}
}
------------------------------------------------------------------------------
Step 2: Loading the config file in the model:
After the initialization function calls of ROSS (tw_init), the configuration file can be loaded in the
example program using:
configuration_load(example-test.conf, MPI_COMM_WORLD, &config);
Step 3: Each LP type must register itself with the lp_type_register before setting up the codes-mapping.
Following is an example function that registers 'server' lp type.
static void svr_add_lp_type()
{
lp_type_register("server", svr_get_lp_type());
}
Step 4: Call to codes_mapping_setup that sets up the LPs of each registered LP type as specified in the config
file.
codes_mapping_setup();
Step 5: Querying number of LPs in a repetition
int codes_mapping_get_lp_count(group_name, lp_type_name);
For example, to query the number of server LPs in example-test2.conf file, calling
num_servers = codes_mapping_get_lp_count("MODELNET_GRP", "server");
will return 2.
Step 6: Querying number of repetitions in a particular group, use
int codes_mapping_get_group_reps(group_name);
For example, to query the number of repetitions in example-test2.conf file, calling
num_repetitions = codes_mapping_get_group_reps("MODELNET_GRP");
will return 16.
src/workload/codes-bgp-io-wrkld.c
View file @
72accf06
...
...
@@ -90,61 +90,31 @@ int bgp_io_workload_load(const char* params, int rank)
/* Maps the enum types from I/O language to the CODES workload API */
static
int
convertTypes
(
int
inst
)
{
int
op_type
=
-
1
;
switch
(
inst
)
{
case
CL_WRITEAT
:
/* write to file */
{
op_type
=
CODES_WK_WRITE
;
}
break
;
return
CODES_WK_WRITE
;
case
CL_READAT
:
return
CODES_WK_READ
;
case
CL_CLOSE
:
{
op_type
=
CODES_WK_CLOSE
;
/* close the file */
}
break
;
return
CODES_WK_CLOSE
;
/* close the file */
case
CL_OPEN
:
{
op_type
=
CODES_WK_OPEN
;
/* open file */
}
break
;
return
CODES_WK_OPEN
;
/* open file */
case
CL_SYNC
:
{
op_type
=
CODES_WK_BARRIER
;
/* barrier in CODES workload is similar to sync in I/O lang? */
}
break
;
return
CODES_WK_BARRIER
;
/* barrier in CODES workload is similar to sync in I/O lang? */
case
CL_SLEEP
:
{
op_type
=
CODES_WK_DELAY
;
/* sleep or delay */
}
break
;
return
CODES_WK_DELAY
;
/* sleep or delay */
case
CL_EXIT
:
{
op_type
=
CODES_WK_END
;
/* end of the operations/ no more operations in file */
}
break
;
return
CODES_WK_END
;
/* end of the operations/ no more operations in file */
case
CL_DELETE
:
{
op_type
=
-
2
;
}
break
;
return
-
2
;
case
CL_GETRANK
:
{
op_type
=
-
3
;
/* defined in I/O lang but not in workloads API*/
}
break
;
return
-
3
;
/* defined in I/O lang but not in workloads API*/
case
CL_GETSIZE
:
{
op_type
=
-
4
;
/* defined in I/O lang but not in workload API */
}
break
;
return
-
4
;
/* defined in I/O lang but not in workload API */
default:
{
//printf("\n convert type undefined %d ", inst);
op_type
=
-
1
;
}
}
return
op_type
;
return
-
1
;
}
}
/* Gets the next operation specified in the workload file for the simulated MPI rank
...
...
@@ -196,7 +166,9 @@ void bgp_io_workload_get_next(int rank, struct codes_workload_op *op)
break
;
case
CODES_WK_READ
:
{
/* to be added (the BG/P model does not supports read operations right now) */
op
->
u
.
read
.
file_id
=
(
wrkld_arr
[
local_rank
].
next_event
).
var
[
0
];
op
->
u
.
read
.
offset
=
(
wrkld_arr
[
local_rank
].
next_event
).
var
[
2
];
op
->
u
.
read
.
size
=
(
wrkld_arr
[
local_rank
].
next_event
).
var
[
1
];
}
break
;
default:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment