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
79c9c44d
Commit
79c9c44d
authored
Jan 17, 2022
by
Shucai Xiao
Browse files
add missing files for get_tuple_elem
parent
c57b18ea
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
src/targets/gpu/get_tuple_elem.cpp
src/targets/gpu/get_tuple_elem.cpp
+24
-0
src/targets/gpu/include/migraphx/gpu/get_tuple_elem.hpp
src/targets/gpu/include/migraphx/gpu/get_tuple_elem.hpp
+39
-0
No files found.
src/targets/gpu/get_tuple_elem.cpp
0 → 100644
View file @
79c9c44d
#include <migraphx/gpu/get_tuple_elem.hpp>
#include <migraphx/gpu/context.hpp>
#include <migraphx/gpu/device/contiguous.hpp>
namespace
migraphx
{
inline
namespace
MIGRAPHX_INLINE_NS
{
namespace
gpu
{
shape
hip_get_tuple_elem
::
compute_shape
(
std
::
vector
<
shape
>
inputs
)
const
{
inputs
.
pop_back
();
return
op
.
compute_shape
(
inputs
);
}
argument
hip_get_tuple_elem
::
compute
(
context
&
ctx
,
const
shape
&
,
const
std
::
vector
<
argument
>&
args
)
const
{
auto
sub_args
=
args
.
front
().
get_sub_objects
();
device
::
contiguous
(
ctx
.
get_stream
().
get
(),
args
.
back
(),
sub_args
[
op
.
index
]);
return
args
.
back
();
}
}
// namespace gpu
}
// namespace MIGRAPHX_INLINE_NS
}
// namespace migraphx
src/targets/gpu/include/migraphx/gpu/get_tuple_elem.hpp
0 → 100644
View file @
79c9c44d
#ifndef MIGRAPHX_GUARD_RTGLIB_GET_TUPLE_ELEM_HPP
#define MIGRAPHX_GUARD_RTGLIB_GET_TUPLE_ELEM_HPP
#include <migraphx/argument.hpp>
#include <migraphx/reflect.hpp>
#include <migraphx/op/get_tuple_elem.hpp>
#include <migraphx/gpu/miopen.hpp>
namespace
migraphx
{
inline
namespace
MIGRAPHX_INLINE_NS
{
namespace
gpu
{
struct
context
;
struct
hip_get_tuple_elem
{
op
::
get_tuple_elem
op
;
template
<
class
Self
,
class
F
>
static
auto
reflect
(
Self
&
self
,
F
f
)
{
return
migraphx
::
reflect
(
self
.
op
,
f
);
}
std
::
string
name
()
const
{
return
"gpu::get_tuple_elem"
;
}
shape
compute_shape
(
std
::
vector
<
shape
>
inputs
)
const
;
argument
compute
(
context
&
ctx
,
const
shape
&
output_shape
,
const
std
::
vector
<
argument
>&
args
)
const
;
std
::
ptrdiff_t
output_alias
(
const
std
::
vector
<
shape
>&
shapes
)
const
{
return
shapes
.
size
()
-
1
;
}
};
}
// namespace gpu
}
// namespace MIGRAPHX_INLINE_NS
}
// namespace migraphx
#endif
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