Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
80e61fe2
"driver/conv_driver.cpp" did not exist on "8a4b59785b4f5ba48468d53618ca270c5da599a7"
Commit
80e61fe2
authored
Nov 05, 2022
by
umangyadav
Browse files
fix CI
parent
b07243b4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
6 deletions
+1
-6
src/targets/gpu/include/migraphx/gpu/context.hpp
src/targets/gpu/include/migraphx/gpu/context.hpp
+0
-2
src/targets/gpu/include/migraphx/gpu/convolution.hpp
src/targets/gpu/include/migraphx/gpu/convolution.hpp
+1
-1
src/version.h.in
src/version.h.in
+0
-3
No files found.
src/targets/gpu/include/migraphx/gpu/context.hpp
View file @
80e61fe2
...
@@ -282,8 +282,6 @@ struct context
...
@@ -282,8 +282,6 @@ struct context
auto
v_cu_count
=
v
.
at
(
"cu_count"
);
auto
v_cu_count
=
v
.
at
(
"cu_count"
);
std
::
size_t
n_cu_count
=
v_cu_count
.
without_key
().
to
<
std
::
size_t
>
();
std
::
size_t
n_cu_count
=
v_cu_count
.
without_key
().
to
<
std
::
size_t
>
();
std
::
string
v_miopen_version
=
v
.
at
(
"miopen_version"
).
to
<
std
::
string
>
();
std
::
string
current_gfx_arch
=
this
->
current_device
->
get_device_name
();
std
::
string
current_gfx_arch
=
this
->
current_device
->
get_device_name
();
std
::
size_t
current_cu_count
=
this
->
current_device
->
get_cu_count
();
std
::
size_t
current_cu_count
=
this
->
current_device
->
get_cu_count
();
if
(
n_cu_count
!=
current_cu_count
or
v_gfx_arch
!=
current_gfx_arch
)
if
(
n_cu_count
!=
current_cu_count
or
v_gfx_arch
!=
current_gfx_arch
)
...
...
src/targets/gpu/include/migraphx/gpu/convolution.hpp
View file @
80e61fe2
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
#ifndef MIGRAPHX_GUARD_RTGLIB_CONVOLUTION_HPP
#ifndef MIGRAPHX_GUARD_RTGLIB_CONVOLUTION_HPP
#define MIGRAPHX_GUARD_RTGLIB_CONVOLUTION_HPP
#define MIGRAPHX_GUARD_RTGLIB_CONVOLUTION_HPP
#include
"
migraphx/program.hpp
"
#include
<
migraphx/program.hpp
>
#include <migraphx/shape.hpp>
#include <migraphx/shape.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/operation.hpp>
#include <migraphx/operation.hpp>
...
...
src/version.h.in
View file @
80e61fe2
...
@@ -22,9 +22,6 @@
...
@@ -22,9 +22,6 @@
* THE SOFTWARE.
* THE SOFTWARE.
*/
*/
// clang-format off
// clang-format off
#include <string>
#define MIGRAPHX_VERSION_MAJOR @PROJECT_VERSION_MAJOR@
#define MIGRAPHX_VERSION_MAJOR @PROJECT_VERSION_MAJOR@
#define MIGRAPHX_VERSION_MINOR @PROJECT_VERSION_MINOR@
#define MIGRAPHX_VERSION_MINOR @PROJECT_VERSION_MINOR@
// clang-format on
// clang-format on
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