-
Notifications
You must be signed in to change notification settings - Fork 300
Absolute include path #281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 67 commits
18d2bb1
8a913c2
b548c0b
4769425
5208c62
7279e12
b238662
f99f614
a0eb2c0
b9d3d27
09ec28b
52ce27b
30109f6
83511d7
512666f
ea3feee
c7d5941
8a60a32
25e35b5
ff4f8ba
f9b92b1
5727181
e09f6e0
7fd5e9f
97ec23b
2488d0b
ad11d2a
5816a64
578ffb6
67fcb0b
c4f1208
9551101
3d00581
b58b98f
e5f731c
5d87cb7
82837d1
35a67b9
af81e9d
dc3f0c7
b64ffee
d20d1df
586792f
fa40d2a
fe090b9
8074c85
bfeb09b
996ff99
bddda29
dd2c9e0
d685ba2
174b1ba
294b27b
2e181fb
9228f8f
4cdf46a
9a9cd97
3ae04c7
0dab8c8
54442e1
c102dc1
f3e542a
35d2263
47bb0e6
460c3c4
2e5cd79
c7ce4cc
f214a8f
7d1698e
01c777e
ea819f3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,18 +3,18 @@ | |
| #include <initializer_list> | ||
| #include <cstdlib> | ||
| #include <stdlib.h> | ||
| #include <half.hpp> | ||
|
|
||
| #include "check_err.hpp" | ||
| #include "config.hpp" | ||
| #include "device.hpp" | ||
| #include "host_tensor.hpp" | ||
| #include "host_tensor_generator.hpp" | ||
| #include "device_tensor.hpp" | ||
| #include "device_gemm_dl.hpp" | ||
| #include "element_wise_operation.hpp" | ||
| #include "reference_gemm.hpp" | ||
| #include "gemm_specialization.hpp" | ||
|
|
||
| #include "ck/ck.hpp" | ||
| #include "ck/tensor_operation/gpu/device/gemm_specialization.hpp" | ||
| #include "ck/tensor_operation/gpu/device/device_gemm_dl.hpp" | ||
| #include "ck/tensor_operation/gpu/element/element_wise_operation.hpp" | ||
|
|
||
| #include "ck/library/utility/check_err.hpp" | ||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
| #include "ck/library/host_tensor/host_tensor.hpp" | ||
| #include "ck/library/host_tensor/host_tensor_generator.hpp" | ||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also duplicated |
||
| #include "ck/library/reference_tensor_operation/cpu/reference_gemm.hpp" | ||
|
|
||
| template <ck::index_t... Is> | ||
| using S = ck::Sequence<Is...>; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,18 +3,18 @@ | |
| #include <initializer_list> | ||
| #include <cstdlib> | ||
| #include <stdlib.h> | ||
| #include <half.hpp> | ||
| #include "check_err.hpp" | ||
| #include "config.hpp" | ||
| #include "device.hpp" | ||
| #include "host_tensor.hpp" | ||
| #include "host_tensor_generator.hpp" | ||
| #include "device_tensor.hpp" | ||
| #include "device_gemm_xdl.hpp" | ||
| #include "device_gemm_xdl_cshuffle.hpp" | ||
| #include "element_wise_operation.hpp" | ||
| #include "reference_gemm.hpp" | ||
| #include "gemm_specialization.hpp" | ||
|
|
||
| #include "ck/ck.hpp" | ||
| #include "ck/tensor_operation/gpu/device/gemm_specialization.hpp" | ||
| #include "ck/tensor_operation/gpu/device/device_gemm_xdl_cshuffle.hpp" | ||
| #include "ck/tensor_operation/gpu/element/element_wise_operation.hpp" | ||
|
|
||
| #include "ck/library/utility/check_err.hpp" | ||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
| #include "ck/library/host_tensor/host_tensor.hpp" | ||
| #include "ck/library/host_tensor/host_tensor_generator.hpp" | ||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. duplicated |
||
| #include "ck/library/reference_tensor_operation/cpu/reference_gemm.hpp" | ||
|
|
||
| template <ck::index_t... Is> | ||
| using S = ck::Sequence<Is...>; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,20 +3,18 @@ | |
| #include <initializer_list> | ||
| #include <cstdlib> | ||
| #include <stdlib.h> | ||
| #include <half.hpp> | ||
|
|
||
| #include "check_err.hpp" | ||
| #include "config.hpp" | ||
| #include "print.hpp" | ||
| #include "device.hpp" | ||
| #include "host_tensor.hpp" | ||
| #include "host_tensor_generator.hpp" | ||
| #include "host_gemm.hpp" | ||
| #include "device_tensor.hpp" | ||
| #include "device_base.hpp" | ||
| #include "device_gemm_xdl_c_shuffle_bias_2d.hpp" | ||
| #include "element_wise_operation.hpp" | ||
| #include "reference_gemm_bias_2d.hpp" | ||
|
|
||
| #include "ck/ck.hpp" | ||
| #include "ck/tensor_operation/gpu/device/gemm_specialization.hpp" | ||
| #include "ck/tensor_operation/gpu/device/device_gemm_xdl_c_shuffle_bias_2d.hpp" | ||
| #include "ck/tensor_operation/gpu/element/element_wise_operation.hpp" | ||
|
|
||
| #include "ck/library/utility/check_err.hpp" | ||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
| #include "ck/library/host_tensor/host_tensor.hpp" | ||
| #include "ck/library/host_tensor/host_tensor_generator.hpp" | ||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. duplicated |
||
| #include "ck/library/reference_tensor_operation/cpu/reference_gemm_bias_2d.hpp" | ||
|
|
||
| template <ck::index_t... Is> | ||
| using S = ck::Sequence<Is...>; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,16 +4,17 @@ | |
| #include <cstdlib> | ||
| #include <stdlib.h> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
|
||
| #include "check_err.hpp" | ||
| #include "config.hpp" | ||
| #include "device.hpp" | ||
| #include "host_tensor.hpp" | ||
| #include "host_tensor_generator.hpp" | ||
| #include "device_tensor.hpp" | ||
| #include "element_wise_operation.hpp" | ||
| #include "reference_gemm.hpp" | ||
| #include "gemm_specialization.hpp" | ||
| #include "device_gemm_multiple_d_xdl_cshuffle.hpp" | ||
| #include "ck/ck.hpp" | ||
| #include "ck/tensor_operation/gpu/device/tensor_layout.hpp" | ||
| #include "ck/tensor_operation/gpu/device/gemm_specialization.hpp" | ||
| #include "ck/tensor_operation/gpu/device/device_gemm_multiple_d_xdl_cshuffle.hpp" | ||
| #include "ck/tensor_operation/gpu/element/element_wise_operation.hpp" | ||
|
|
||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
| #include "ck/library/host_tensor/host_tensor.hpp" | ||
| #include "ck/library/host_tensor/host_tensor_generator.hpp" | ||
| #include "ck/library/reference_tensor_operation/cpu/reference_gemm.hpp" | ||
| #include "ck/library/utility/check_err.hpp" | ||
|
|
||
| template <ck::index_t... Is> | ||
| using S = ck::Sequence<Is...>; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,16 +4,17 @@ | |
| #include <cstdlib> | ||
| #include <stdlib.h> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
|
||
| #include "check_err.hpp" | ||
| #include "config.hpp" | ||
| #include "device.hpp" | ||
| #include "host_tensor.hpp" | ||
| #include "host_tensor_generator.hpp" | ||
| #include "device_tensor.hpp" | ||
| #include "element_wise_operation.hpp" | ||
| #include "reference_gemm.hpp" | ||
| #include "gemm_specialization.hpp" | ||
| #include "device_gemm_multiple_d_xdl_cshuffle.hpp" | ||
| #include "ck/ck.hpp" | ||
| #include "ck/tensor_operation/gpu/device/tensor_layout.hpp" | ||
| #include "ck/tensor_operation/gpu/device/gemm_specialization.hpp" | ||
| #include "ck/tensor_operation/gpu/device/device_gemm_multiple_d_xdl_cshuffle.hpp" | ||
| #include "ck/tensor_operation/gpu/element/element_wise_operation.hpp" | ||
|
|
||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
| #include "ck/library/host_tensor/host_tensor.hpp" | ||
| #include "ck/library/host_tensor/host_tensor_generator.hpp" | ||
| #include "ck/library/reference_tensor_operation/cpu/reference_gemm.hpp" | ||
| #include "ck/library/utility/check_err.hpp" | ||
|
|
||
| template <ck::index_t... Is> | ||
| using S = ck::Sequence<Is...>; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,19 +3,18 @@ | |
| #include <initializer_list> | ||
| #include <cstdlib> | ||
| #include <stdlib.h> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| #include <half.hpp> | ||
|
|
||
| #include "check_err.hpp" | ||
| #include "config.hpp" | ||
| #include "conv_util.hpp" | ||
| #include "device.hpp" | ||
| #include "device_conv2d_fwd_xdl_c_shuffle_bias_activation_nhwc_kyxc_nhwk.hpp" | ||
| #include "device_tensor.hpp" | ||
| #include "element_wise_operation.hpp" | ||
| #include "host_tensor.hpp" | ||
| #include "host_tensor_generator.hpp" | ||
| #include "reference_conv_fwd_bias_activation.hpp" | ||
| #include "tensor_layout.hpp" | ||
|
|
||
| #include "ck/ck.hpp" | ||
| #include "ck/tensor_operation/gpu/device/tensor_layout.hpp" | ||
| #include "ck/tensor_operation/gpu/device/device_conv2d_fwd_xdl_c_shuffle_bias_activation_nhwc_kyxc_nhwk.hpp" | ||
| #include "ck/tensor_operation/gpu/element/element_wise_operation.hpp" | ||
|
|
||
| #include "ck/library/utility/check_err.hpp" | ||
| #include "ck/library/utility/conv_util.hpp" | ||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
| #include "ck/library/host_tensor/host_tensor.hpp" | ||
| #include "ck/library/host_tensor/host_tensor_generator.hpp" | ||
| #include "ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation.hpp" | ||
|
|
||
| namespace { | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,19 +3,18 @@ | |
| #include <initializer_list> | ||
| #include <cstdlib> | ||
| #include <stdlib.h> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| #include <half.hpp> | ||
|
|
||
| #include "check_err.hpp" | ||
| #include "config.hpp" | ||
| #include "conv_util.hpp" | ||
| #include "device.hpp" | ||
| #include "device_conv2d_fwd_xdl_c_shuffle_bias_activation_add_nhwc_kyxc_nhwk.hpp" | ||
| #include "device_tensor.hpp" | ||
| #include "element_wise_operation.hpp" | ||
| #include "host_tensor.hpp" | ||
| #include "host_tensor_generator.hpp" | ||
| #include "reference_conv_fwd_bias_activation_add.hpp" | ||
| #include "tensor_layout.hpp" | ||
|
|
||
| #include "ck/ck.hpp" | ||
| #include "ck/tensor_operation/gpu/device/tensor_layout.hpp" | ||
| #include "ck/tensor_operation/gpu/device/device_conv2d_fwd_xdl_c_shuffle_bias_activation_add_nhwc_kyxc_nhwk.hpp" | ||
| #include "ck/tensor_operation/gpu/element/element_wise_operation.hpp" | ||
|
|
||
| #include "ck/library/utility/check_err.hpp" | ||
| #include "ck/library/utility/conv_util.hpp" | ||
| #include "ck/library/host_tensor/device_memory.hpp" | ||
| #include "ck/library/host_tensor/host_tensor.hpp" | ||
| #include "ck/library/host_tensor/host_tensor_generator.hpp" | ||
| #include "ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation_add.hpp" | ||
|
|
||
| namespace { | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicate
device_memory.hpphere