neureka.backend.main.implementations.elementwise.CLBiElementwiseAddition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neureka Show documentation
Show all versions of neureka Show documentation
A platform independent tensor library written in Java.
The newest version!
package neureka.backend.main.implementations.elementwise;
public class CLBiElementwiseAddition extends CLBiElementwise
{
public CLBiElementwiseAddition(String postfix) {
super(
postfix,
"output = input1 + input2;\n",
"output = 1;\n"
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy