Skip to content

Commit 5d1f3fb

Browse files
committed
Add CumulativeDoubleLayers to Scala 2.12 built-in layers
1 parent e108f4f commit 5d1f3fb

File tree

1 file changed

+6
-1
lines changed
  • plugins-Builtins/src/main/scala-2.12/com/thoughtworks/deeplearning/plugins

1 file changed

+6
-1
lines changed

plugins-Builtins/src/main/scala-2.12/com/thoughtworks/deeplearning/plugins/Builtins.scala

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,24 @@ trait Builtins
1414
with FloatTraining
1515
with FloatLiterals
1616
with FloatWeights
17+
with FloatLayers
1718
with CumulativeFloatLayers
1819
with DoubleTraining
1920
with DoubleLiterals
20-
with DoubleWeights {
21+
with DoubleWeights
22+
with DoubleLayers
23+
with CumulativeDoubleLayers {
2124

2225
trait ImplicitsApi
2326
extends super[Layers].ImplicitsApi
2427
with super[Weights].ImplicitsApi
2528
with super[Operators].ImplicitsApi
2629
with super[FloatTraining].ImplicitsApi
2730
with super[FloatLiterals].ImplicitsApi
31+
with super[FloatLayers].ImplicitsApi
2832
with super[DoubleTraining].ImplicitsApi
2933
with super[DoubleLiterals].ImplicitsApi
34+
with super[DoubleLayers].ImplicitsApi
3035

3136
type Implicits <: ImplicitsApi
3237

0 commit comments

Comments
 (0)