Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sds-tests
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
sds-tests
Commits
ff616d5e
Commit
ff616d5e
authored
Jan 27, 2019
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change arg to match margo bench instead
parent
aa6fe6ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
perf-regression/pmdk-bw.c
perf-regression/pmdk-bw.c
+3
-3
No files found.
perf-regression/pmdk-bw.c
View file @
ff616d5e
...
...
@@ -89,7 +89,7 @@ static int parse_args(int argc, char **argv, struct options *opts)
opts
->
xfer_size
=
DEF_BW_XFER_SIZE
;
opts
->
xstreams
=
-
1
;
while
((
opt
=
getopt
(
argc
,
argv
,
"x:c:p:m:
r
:"
))
!=
-
1
)
while
((
opt
=
getopt
(
argc
,
argv
,
"x:c:p:m:
T
:"
))
!=
-
1
)
{
switch
(
opt
)
{
...
...
@@ -111,7 +111,7 @@ static int parse_args(int argc, char **argv, struct options *opts)
if
(
ret
!=
1
)
return
(
-
1
);
break
;
case
'
r
'
:
case
'
T
'
:
ret
=
sscanf
(
optarg
,
"%d"
,
&
opts
->
xstreams
);
if
(
ret
!=
1
)
return
(
-
1
);
...
...
@@ -143,7 +143,7 @@ static void usage(void)
"
\t
-m <total_mem_size> - total amount of data to write from each client process
\n
"
"
\t
-p <pmdk pool> - existing pool created with pmempool create obj
\n
"
"
\t
[-c concurrency] - number of concurrent operations to issue with ULTs
\n
"
"
\t
[-
r execution_streams] - number of ESs to use
\n
"
"
\t
[-
T <os threads] - number of dedicated operating system threads to run ULTs on
\n
"
"
\t\t
example: ./pmdk-bw -x 4096 -p /dev/shm/test.dat
\n
"
);
return
;
...
...
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