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
d12efcd2
"git@developer.sourcefind.cn:OpenDAS/nni.git" did not exist on "dbe7c21d671a5a1ac42f07dbd866a775c59c4200"
Commit
d12efcd2
authored
Jul 22, 2021
by
Paul
Browse files
Add layout op
parent
eacf042e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
0 deletions
+47
-0
src/CMakeLists.txt
src/CMakeLists.txt
+1
-0
src/include/migraphx/op/layout.hpp
src/include/migraphx/op/layout.hpp
+46
-0
No files found.
src/CMakeLists.txt
View file @
d12efcd2
...
@@ -111,6 +111,7 @@ register_migraphx_ops(
...
@@ -111,6 +111,7 @@ register_migraphx_ops(
identity
identity
if_op
if_op
im2col
im2col
layout
leaky_relu
leaky_relu
less
less
load
load
...
...
src/include/migraphx/op/layout.hpp
0 → 100755
View file @
d12efcd2
#ifndef MIGRAPHX_GUARD_OP_LAYOUT_HPP
#define MIGRAPHX_GUARD_OP_LAYOUT_HPP
#include <migraphx/config.hpp>
#include <array>
#include <migraphx/check_shapes.hpp>
#include <migraphx/stringutils.hpp>
#include <migraphx/streamutils.hpp>
#include <migraphx/literal.hpp>
#include <migraphx/op/unary.hpp>
#include <migraphx/config.hpp>
#include <cmath>
#include <utility>
namespace
migraphx
{
inline
namespace
MIGRAPHX_INLINE_NS
{
namespace
op
{
struct
layout
:
unary
<
layout
>
{
std
::
vector
<
int64_t
>
permutation
;
template
<
class
Self
,
class
F
>
static
auto
reflect
(
Self
&
self
,
F
f
)
{
return
pack
(
f
(
self
.
permutation
,
"permutation"
));
}
shape
compute_shape
(
std
::
vector
<
shape
>
inputs
)
const
{
check_shapes
{
inputs
,
*
this
}.
has
(
1
).
only_dims
(
permutation
.
size
());
auto
lens
=
inputs
.
at
(
0
).
lens
();
auto
t
=
inputs
.
at
(
0
).
type
();
return
shape
::
from_permutation
(
t
,
lens
,
permutation
);
}
auto
apply
()
const
{
return
[](
auto
x
)
{
return
x
;
};
}
};
}
// namespace op
}
// namespace MIGRAPHX_INLINE_NS
}
// namespace migraphx
#endif // MIGRAPHX_GUARD_OP_LAYOUT_HPP
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