Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
generators
CNNArch2Caffe2
Commits
1c2df21e
Commit
1c2df21e
authored
Jan 24, 2019
by
Carlos Alfredo Yeverino Rodriguez
Browse files
Added text for currently unsupported layers
parent
df0df33a
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/main/resources/templates/caffe2/elements/Add.ftl
View file @
1c2df21e
$
{
element
.name
}
= $
{
tc
.join
(
element
.inputs
,
" + "
)}
<#
include
"OutputShape.ftl">
\ No newline at end of file
<#--
This layer is currently not supported -->
src/main/resources/templates/caffe2/elements/BatchNorm.ftl
View file @
1c2df21e
$
{
element
.name
}
= mx.symbol.BatchNorm(data=$
{
element
.inputs
[
0
]}
,
fix_gamma=$
{
element
.fixGamma
?
string
(
"True"
,
"False"
)}
,
name="$
{
element
.name
}
")
<#--
This layer is currently not supported -->
src/main/resources/templates/caffe2/elements/Concatenate.ftl
View file @
1c2df21e
$
{
element
.name
}
= mx.symbol.concat($
{
tc
.join
(
element
.inputs
,
", "
)}
,
dim=1,
name="$
{
element
.name
}
")
<#
include
"OutputShape.ftl">
\ No newline at end of file
<#--
This layer is currently not supported -->
src/main/resources/templates/caffe2/elements/Get.ftl
View file @
1c2df21e
$
{
element
.name
}
= $
{
element
.inputs
[
element
.index
]
}
<#--
This layer is currently not supported -->
src/main/resources/templates/caffe2/elements/Split.ftl
View file @
1c2df21e
$
{
element
.name
}
= mx.symbol.split(data=$
{
element
.inputs
[
0
]}
,
num_outputs=$
{
element
.numOutputs
?
c
}
,
axis=1,
name="$
{
element
.name
}
")
<#
include
"OutputShape.ftl">
\ No newline at end of file
<#--
This layer is currently not supported -->
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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