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
68161431
Unverified
Commit
68161431
authored
Oct 14, 2023
by
Artur Wojcik
Committed by
GitHub
Oct 13, 2023
Browse files
fix missing exports on Windows (#2327)
parent
1587c533
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
8 deletions
+5
-8
src/targets/cpu/include/migraphx/cpu/fuse_ops.hpp
src/targets/cpu/include/migraphx/cpu/fuse_ops.hpp
+2
-4
src/targets/gpu/include/migraphx/gpu/fuse_ops.hpp
src/targets/gpu/include/migraphx/gpu/fuse_ops.hpp
+1
-2
src/targets/gpu/include/migraphx/gpu/prefuse_ops.hpp
src/targets/gpu/include/migraphx/gpu/prefuse_ops.hpp
+2
-2
No files found.
src/targets/cpu/include/migraphx/cpu/fuse_ops.hpp
View file @
68161431
...
...
@@ -24,7 +24,7 @@
#ifndef MIGRAPHX_GUARD_CPU_FUSE_OPS_HPP
#define MIGRAPHX_GUARD_CPU_FUSE_OPS_HPP
#include <migraphx/c
onfig
.hpp>
#include <migraphx/c
pu/context
.hpp>
#include <string>
namespace
migraphx
{
...
...
@@ -34,9 +34,7 @@ struct module;
namespace
cpu
{
struct
context
;
struct
fuse_ops
struct
MIGRAPHX_CPU_EXPORT
fuse_ops
{
context
*
ctx
=
nullptr
;
std
::
string
name
()
const
{
return
"cpu::fuse_ops"
;
}
...
...
src/targets/gpu/include/migraphx/gpu/fuse_ops.hpp
View file @
68161431
...
...
@@ -24,7 +24,6 @@
#ifndef MIGRAPHX_GUARD_RTGLIB_FUSE_OPS_HPP
#define MIGRAPHX_GUARD_RTGLIB_FUSE_OPS_HPP
#include <migraphx/config.hpp>
#include <migraphx/gpu/context.hpp>
namespace
migraphx
{
...
...
@@ -34,7 +33,7 @@ struct module;
namespace
gpu
{
struct
fuse_ops
struct
MIGRAPHX_GPU_EXPORT
fuse_ops
{
context
*
ctx
=
nullptr
;
bool
fast_math
=
true
;
...
...
src/targets/gpu/include/migraphx/gpu/prefuse_ops.hpp
View file @
68161431
...
...
@@ -24,7 +24,7 @@
#ifndef MIGRAPHX_GUARD_GPU_PREFUSE_OPS_HPP
#define MIGRAPHX_GUARD_GPU_PREFUSE_OPS_HPP
#include <migraphx/config.hpp>
#include <migraphx/
gpu/
config.hpp>
#include <string>
namespace
migraphx
{
...
...
@@ -34,7 +34,7 @@ struct module_pass_manager;
namespace
gpu
{
struct
prefuse_ops
struct
MIGRAPHX_GPU_EXPORT
prefuse_ops
{
std
::
string
name
()
const
{
return
"gpu::prefuse_ops"
;
}
void
apply
(
module_pass_manager
&
mpm
)
const
;
...
...
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