Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
benchmark
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
benchmark
Commits
e5cf020d
Commit
e5cf020d
authored
May 24, 2016
by
Ismael
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed warning
parent
36a9ae19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
benchmark.cc
src/benchmark.cc
+2
-2
No files found.
src/benchmark.cc
View file @
e5cf020d
...
@@ -850,10 +850,10 @@ State::State(size_t max_iters, bool has_x, int x, bool has_y, int y,
...
@@ -850,10 +850,10 @@ State::State(size_t max_iters, bool has_x, int x, bool has_y, int y,
has_range_x_
(
has_x
),
range_x_
(
x
),
has_range_x_
(
has_x
),
range_x_
(
x
),
has_range_y_
(
has_y
),
range_y_
(
y
),
has_range_y_
(
has_y
),
range_y_
(
y
),
bytes_processed_
(
0
),
items_processed_
(
0
),
bytes_processed_
(
0
),
items_processed_
(
0
),
complexity_n_
(
0
),
thread_index
(
thread_i
),
thread_index
(
thread_i
),
threads
(
n_threads
),
threads
(
n_threads
),
max_iterations
(
max_iters
),
max_iterations
(
max_iters
)
complexity_n_
(
0
)
{
{
CHECK
(
max_iterations
!=
0
)
<<
"At least one iteration must be run"
;
CHECK
(
max_iterations
!=
0
)
<<
"At least one iteration must be run"
;
CHECK_LT
(
thread_index
,
threads
)
<<
"thread_index must be less than threads"
;
CHECK_LT
(
thread_index
,
threads
)
<<
"thread_index must be less than threads"
;
...
...
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