Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
a1f86d01
Commit
a1f86d01
authored
Mar 16, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3831 from Dmitry-Me:reduceVariableScope7
parents
930808c2
8ed4bae4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lapack.cpp
modules/core/src/lapack.cpp
+2
-2
No files found.
modules/core/src/lapack.cpp
View file @
a1f86d01
...
@@ -725,11 +725,11 @@ template<typename T1, typename T2, typename T3> static void
...
@@ -725,11 +725,11 @@ template<typename T1, typename T2, typename T3> static void
MatrAXPY
(
int
m
,
int
n
,
const
T1
*
x
,
int
dx
,
MatrAXPY
(
int
m
,
int
n
,
const
T1
*
x
,
int
dx
,
const
T2
*
a
,
int
inca
,
T3
*
y
,
int
dy
)
const
T2
*
a
,
int
inca
,
T3
*
y
,
int
dy
)
{
{
int
i
,
j
;
int
i
;
for
(
i
=
0
;
i
<
m
;
i
++
,
x
+=
dx
,
y
+=
dy
)
for
(
i
=
0
;
i
<
m
;
i
++
,
x
+=
dx
,
y
+=
dy
)
{
{
T2
s
=
a
[
i
*
inca
];
T2
s
=
a
[
i
*
inca
];
j
=
0
;
int
j
=
0
;
#if CV_ENABLE_UNROLLED
#if CV_ENABLE_UNROLLED
for
(;
j
<=
n
-
4
;
j
+=
4
)
for
(;
j
<=
n
-
4
;
j
+=
4
)
{
{
...
...
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