Skip to content

Commit

Permalink
Enable LeakyRelu
Browse files Browse the repository at this point in the history
  • Loading branch information
skottmckay committed Jul 22, 2024
1 parent 4d754f8 commit bb00eae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ bool ActivationOpBuilder::IsOpSupportedImpl(const Node& node, const OpBuilderInp

#if defined(COREML_ENABLE_MLPROGRAM)
if (input_params.create_mlprogram) {
if (op_type == "PRelu" || op_type == "LeakyRelu") {
if (op_type == "PRelu") { // TODO
return false;
}
} else
Expand Down

0 comments on commit bb00eae

Please sign in to comment.