Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
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
ngraph
Commits
d38aba91
Commit
d38aba91
authored
Oct 01, 2018
by
Fenglei
Committed by
Robert Kimball
Oct 01, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add find algorithm for convolution without extra padding (#1710)
parent
2aa7899c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
cudnn_emitter.cpp
src/ngraph/runtime/gpu/cudnn_emitter.cpp
+0
-0
cudnn_emitter.hpp
src/ngraph/runtime/gpu/cudnn_emitter.hpp
+6
-3
No files found.
src/ngraph/runtime/gpu/cudnn_emitter.cpp
View file @
d38aba91
This diff is collapsed.
Click to expand it.
src/ngraph/runtime/gpu/cudnn_emitter.hpp
View file @
d38aba91
...
...
@@ -76,7 +76,8 @@ namespace ngraph
const
Shape
&
output_tensor_shape
,
const
Strides
&
window_movement_strides
,
const
Strides
&
window_dilation_strides
,
const
Shape
&
padding_below
);
const
Shape
&
padding_below
,
const
bool
find_algo
=
false
);
size_t
build_convolution_backward_data
(
const
std
::
string
&
dtype
,
const
Shape
&
input_filter_shape
,
...
...
@@ -84,7 +85,8 @@ namespace ngraph
const
Shape
&
output_tensor_shape
,
const
Strides
&
window_movement_strides
,
const
Strides
&
window_dilation_strides
,
const
Shape
&
padding_below
);
const
Shape
&
padding_below
,
const
bool
find_algo
=
false
);
size_t
build_convolution_backward_filter
(
const
std
::
string
&
dtype
,
const
Shape
&
input_tensor_shape_0
,
...
...
@@ -92,7 +94,8 @@ namespace ngraph
const
Shape
&
output_filter_shape
,
const
Strides
&
window_movement_strides
,
const
Strides
&
window_dilation_strides
,
const
Shape
&
padding_below
);
const
Shape
&
padding_below
,
const
bool
find_algo
=
false
);
size_t
build_reduce_forward
(
const
cudnnReduceTensorOp_t
&
reduce_op
,
const
std
::
string
&
dtype
,
...
...
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