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
composable_kernel
Commits
76ff19e2
"vscode:/vscode.git/clone" did not exist on "41c76a17c7a191752eada5346dc88ecfe690dcae"
Commit
76ff19e2
authored
Nov 17, 2022
by
Po-Yen, Chen
Browse files
Re-structure ckProfiler source files
parent
4c4c7328
Changes
51
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
14 additions
and
14 deletions
+14
-14
profiler/src/profile_gemm_bias_add_reduce.cpp
profiler/src/profile_gemm_bias_add_reduce.cpp
+1
-1
profiler/src/profile_gemm_bilinear.cpp
profiler/src/profile_gemm_bilinear.cpp
+1
-1
profiler/src/profile_gemm_reduce.cpp
profiler/src/profile_gemm_reduce.cpp
+1
-1
profiler/src/profile_gemm_splitk.cpp
profiler/src/profile_gemm_splitk.cpp
+1
-1
profiler/src/profile_grouped_conv_bwd_weight.cpp
profiler/src/profile_grouped_conv_bwd_weight.cpp
+1
-1
profiler/src/profile_grouped_conv_fwd.cpp
profiler/src/profile_grouped_conv_fwd.cpp
+1
-1
profiler/src/profile_grouped_gemm.cpp
profiler/src/profile_grouped_gemm.cpp
+1
-1
profiler/src/profile_groupnorm.cpp
profiler/src/profile_groupnorm.cpp
+2
-2
profiler/src/profile_layernorm.cpp
profiler/src/profile_layernorm.cpp
+2
-2
profiler/src/profile_reduce.cpp
profiler/src/profile_reduce.cpp
+2
-2
profiler/src/profile_softmax.cpp
profiler/src/profile_softmax.cpp
+1
-1
No files found.
profiler/src/profile_gemm_bias_add_reduce.cpp
View file @
76ff19e2
...
...
@@ -6,7 +6,7 @@
#include <initializer_list>
#include <cstdlib>
#include "profiler/
include/
profile_gemm_bias_add_reduce_impl.hpp"
#include "profiler/profile_gemm_bias_add_reduce_impl.hpp"
int
profile_gemm_bias_add_reduce
(
int
argc
,
char
*
argv
[])
{
...
...
profiler/src/profile_gemm_bilinear.cpp
View file @
76ff19e2
...
...
@@ -6,7 +6,7 @@
#include <initializer_list>
#include <cstdlib>
#include "profiler/
include/
profile_gemm_bilinear_impl.hpp"
#include "profiler/profile_gemm_bilinear_impl.hpp"
int
profile_gemm_bilinear
(
int
argc
,
char
*
argv
[])
{
...
...
profiler/src/profile_gemm_reduce.cpp
View file @
76ff19e2
...
...
@@ -6,7 +6,7 @@
#include <initializer_list>
#include <cstdlib>
#include "profiler/
include/
profile_gemm_reduce_impl.hpp"
#include "profiler/profile_gemm_reduce_impl.hpp"
int
profile_gemm_reduce
(
int
argc
,
char
*
argv
[])
{
...
...
profiler/src/profile_gemm_splitk.cpp
View file @
76ff19e2
...
...
@@ -6,7 +6,7 @@
#include <initializer_list>
#include <cstdlib>
#include "profiler/
include/
profile_gemm_splitk_impl.hpp"
#include "profiler/profile_gemm_splitk_impl.hpp"
enum
struct
GemmMatrixLayout
{
...
...
profiler/src/profile_grouped_conv_bwd_weight.cpp
View file @
76ff19e2
...
...
@@ -6,7 +6,7 @@
#include <iostream>
#include <numeric>
#include "profiler/
include/
profile_grouped_conv_bwd_weight_impl.hpp"
#include "profiler/profile_grouped_conv_bwd_weight_impl.hpp"
namespace
{
...
...
profiler/src/profile_grouped_conv_fwd.cpp
View file @
76ff19e2
...
...
@@ -6,7 +6,7 @@
#include <initializer_list>
#include <cstdlib>
#include "profiler/
include/
profile_grouped_conv_fwd_impl.hpp"
#include "profiler/profile_grouped_conv_fwd_impl.hpp"
namespace
{
...
...
profiler/src/profile_grouped_gemm.cpp
View file @
76ff19e2
...
...
@@ -6,7 +6,7 @@
#include <initializer_list>
#include <cstdlib>
#include "profiler/
include/
profile_grouped_gemm_impl.hpp"
#include "profiler/profile_grouped_gemm_impl.hpp"
enum
struct
GemmMatrixLayout
{
...
...
profiler/src/profile_groupnorm.cpp
View file @
76ff19e2
...
...
@@ -5,8 +5,8 @@
#include <vector>
#include <unordered_map>
#include "profiler/
include/
data_type_enum.hpp"
#include "profiler/
include/
profile_groupnorm_impl.hpp"
#include "profiler/data_type_enum.hpp"
#include "profiler/profile_groupnorm_impl.hpp"
using
ck
::
index_t
;
...
...
profiler/src/profile_layernorm.cpp
View file @
76ff19e2
...
...
@@ -5,8 +5,8 @@
#include <vector>
#include <unordered_map>
#include "profiler/
include/
data_type_enum.hpp"
#include "profiler/
include/
profile_layernorm_impl.hpp"
#include "profiler/data_type_enum.hpp"
#include "profiler/profile_layernorm_impl.hpp"
using
ck
::
index_t
;
...
...
profiler/src/profile_reduce.cpp
View file @
76ff19e2
...
...
@@ -13,8 +13,8 @@
#include "ck/library/utility/host_common_util.hpp"
#include "profiler/
include/
profile_reduce_impl.hpp"
#include "profiler/
include/
data_type_enum.hpp"
#include "profiler/profile_reduce_impl.hpp"
#include "profiler/data_type_enum.hpp"
using
namespace
std
;
...
...
profiler/src/profile_softmax.cpp
View file @
76ff19e2
...
...
@@ -5,7 +5,7 @@
#include <vector>
#include <unordered_map>
#include "profiler/
include/
profile_softmax_impl.hpp"
#include "profiler/profile_softmax_impl.hpp"
using
ck
::
index_t
;
using
ck
::
profiler
::
SoftmaxDataType
;
...
...
Prev
1
2
3
Next
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