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
fa10971d
Commit
fa10971d
authored
Oct 18, 2023
by
Bartlomiej Kocot
Browse files
Update CMakeFile and dir name
parent
bec0399a
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
9 additions
and
27 deletions
+9
-27
example/62_conv_fwd_activ/CMakeLists.txt
example/62_conv_fwd_activ/CMakeLists.txt
+9
-27
example/62_conv_fwd_activ/convnd_fwd_activ_common.hpp
example/62_conv_fwd_activ/convnd_fwd_activ_common.hpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_abs_fp16.cpp
example/62_conv_fwd_activ/convnd_fwd_xdl_abs_fp16.cpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_clippedrelu_fp16.cpp
...ple/62_conv_fwd_activ/convnd_fwd_xdl_clippedrelu_fp16.cpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_elu_fp16.cpp
example/62_conv_fwd_activ/convnd_fwd_xdl_elu_fp16.cpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_leakyrelu_fp16.cpp
example/62_conv_fwd_activ/convnd_fwd_xdl_leakyrelu_fp16.cpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_pow_fp16.cpp
example/62_conv_fwd_activ/convnd_fwd_xdl_pow_fp16.cpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_relu_fp16.cpp
example/62_conv_fwd_activ/convnd_fwd_xdl_relu_fp16.cpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_sigmoid_fp16.cpp
example/62_conv_fwd_activ/convnd_fwd_xdl_sigmoid_fp16.cpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_softrelu_fp16.cpp
example/62_conv_fwd_activ/convnd_fwd_xdl_softrelu_fp16.cpp
+0
-0
example/62_conv_fwd_activ/convnd_fwd_xdl_tanh_fp16.cpp
example/62_conv_fwd_activ/convnd_fwd_xdl_tanh_fp16.cpp
+0
-0
example/62_conv_fwd_activ/run_convnd_fwd_activ_example.inc
example/62_conv_fwd_activ/run_convnd_fwd_activ_example.inc
+0
-0
No files found.
example/6
1
_conv_fwd_activ/CMakeLists.txt
→
example/6
2
_conv_fwd_activ/CMakeLists.txt
View file @
fa10971d
...
@@ -5,49 +5,31 @@ foreach(gpu IN LISTS GPU_TARGETS)
...
@@ -5,49 +5,31 @@ foreach(gpu IN LISTS GPU_TARGETS)
add_custom_target
(
example_convnd_fwd_activ_xdl
)
add_custom_target
(
example_convnd_fwd_activ_xdl
)
# Sigmoid
# Sigmoid
add_example_executable
(
example_convnd_fwd_xdl_sigmoid_fp16 convnd_fwd_xdl_sigmoid_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_sigmoid_fp16 convnd_fwd_xdl_sigmoid_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_sigmoid_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_sigmoid_fp16
)
endif
()
# Tanh
# Tanh
add_example_executable
(
example_convnd_fwd_xdl_tanh_fp16 convnd_fwd_xdl_tanh_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_tanh_fp16 convnd_fwd_xdl_tanh_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_tanh_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_tanh_fp16
)
endif
()
# Relu
# Relu
add_example_executable
(
example_convnd_fwd_xdl_relu_fp16 convnd_fwd_xdl_relu_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_relu_fp16 convnd_fwd_xdl_relu_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_relu_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_relu_fp16
)
endif
()
# SoftRelu
# SoftRelu
add_example_executable
(
example_convnd_fwd_xdl_softrelu_fp16 convnd_fwd_xdl_softrelu_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_softrelu_fp16 convnd_fwd_xdl_softrelu_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_softrelu_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_softrelu_fp16
)
endif
()
# Abs
# Abs
add_example_executable
(
example_convnd_fwd_xdl_abs_fp16 convnd_fwd_xdl_abs_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_abs_fp16 convnd_fwd_xdl_abs_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_abs_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_abs_fp16
)
endif
()
# Pow
# Pow
add_example_executable
(
example_convnd_fwd_xdl_pow_fp16 convnd_fwd_xdl_pow_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_pow_fp16 convnd_fwd_xdl_pow_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_pow_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_pow_fp16
)
endif
()
# Clipped Relu
# Clipped Relu
add_example_executable
(
example_convnd_fwd_xdl_clippedrelu_fp16 convnd_fwd_xdl_clippedrelu_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_clippedrelu_fp16 convnd_fwd_xdl_clippedrelu_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_clippedrelu_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_clippedrelu_fp16
)
endif
()
# Leaky Relu
# Leaky Relu
add_example_executable
(
example_convnd_fwd_xdl_leakyrelu_fp16 convnd_fwd_xdl_leakyrelu_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_leakyrelu_fp16 convnd_fwd_xdl_leakyrelu_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_leakyrelu_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_leakyrelu_fp16
)
endif
()
# Elu
# Elu
add_example_executable
(
example_convnd_fwd_xdl_elu_fp16 convnd_fwd_xdl_elu_fp16.cpp
)
add_example_executable
(
example_convnd_fwd_xdl_elu_fp16 convnd_fwd_xdl_elu_fp16.cpp
)
if
(
result EQUAL 0
)
add_example_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_elu_fp16
)
add_dependencies
(
example_convnd_fwd_activ_xdl example_convnd_fwd_xdl_elu_fp16
)
endif
()
set
(
target 1
)
set
(
target 1
)
endif
()
endif
()
endforeach
()
endforeach
()
example/6
1
_conv_fwd_activ/convnd_fwd_activ_common.hpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_activ_common.hpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_abs_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_abs_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_clippedrelu_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_clippedrelu_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_elu_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_elu_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_leakyrelu_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_leakyrelu_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_pow_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_pow_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_relu_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_relu_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_sigmoid_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_sigmoid_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_softrelu_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_softrelu_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/convnd_fwd_xdl_tanh_fp16.cpp
→
example/6
2
_conv_fwd_activ/convnd_fwd_xdl_tanh_fp16.cpp
View file @
fa10971d
File moved
example/6
1
_conv_fwd_activ/run_convnd_fwd_activ_example.inc
→
example/6
2
_conv_fwd_activ/run_convnd_fwd_activ_example.inc
View file @
fa10971d
File moved
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