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
fd6a7449
Commit
fd6a7449
authored
Dec 26, 2013
by
Andrey Pavlenko
Committed by
OpenCV Buildbot
Dec 26, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2066 from ilya-lavrenov:tapi_ocl
parents
a9812955
5b3520fa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
matmul.cpp
modules/core/src/matmul.cpp
+1
-1
fft.cpp
modules/ocl/src/fft.cpp
+1
-1
No files found.
modules/core/src/matmul.cpp
View file @
fd6a7449
...
@@ -724,7 +724,7 @@ static bool ocl_gemm( InputArray matA, InputArray matB, double alpha,
...
@@ -724,7 +724,7 @@ static bool ocl_gemm( InputArray matA, InputArray matB, double alpha,
UMat
A
=
matA
.
getUMat
(),
B
=
matB
.
getUMat
(),
D
=
matD
.
getUMat
();
UMat
A
=
matA
.
getUMat
(),
B
=
matB
.
getUMat
(),
D
=
matD
.
getUMat
();
if
(
haveC
)
if
(
haveC
)
ctrans
?
transpose
(
matC
,
D
)
:
matC
.
getMat
().
copyTo
(
D
);
// TODO fix it as soon as .copyTo works as expected
ctrans
?
transpose
(
matC
,
D
)
:
matC
.
copyTo
(
D
);
else
else
D
.
setTo
(
Scalar
::
all
(
0
));
D
.
setTo
(
Scalar
::
all
(
0
));
...
...
modules/ocl/src/fft.cpp
View file @
fd6a7449
...
@@ -169,7 +169,7 @@ void cv::ocl::fft_teardown()
...
@@ -169,7 +169,7 @@ void cv::ocl::fft_teardown()
// bake a new plan
// bake a new plan
cv
::
ocl
::
FftPlan
::
FftPlan
(
Size
_dft_size
,
int
_src_step
,
int
_dst_step
,
int
_depth
,
int
_flags
,
FftType
_type
)
cv
::
ocl
::
FftPlan
::
FftPlan
(
Size
_dft_size
,
int
_src_step
,
int
_dst_step
,
int
_depth
,
int
_flags
,
FftType
_type
)
:
plHandle
(
0
),
dft_size
(
_dft_size
),
src_step
(
_src_step
),
d
epth
(
_depth
),
dst_step
(
_dst_step
),
flags
(
_flags
),
type
(
_type
)
:
plHandle
(
0
),
dft_size
(
_dft_size
),
src_step
(
_src_step
),
d
st_step
(
_dst_step
),
depth
(
_depth
),
flags
(
_flags
),
type
(
_type
)
{
{
fft_setup
();
fft_setup
();
...
...
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