- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuperopdef.java
More file actions
Latest commit
28 lines (26 loc) · 524 Bytes
/
Copy pathsuperopdef.java
File metadata and controls
28 lines (26 loc) · 524 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
packagetensordef;
importjava.util.*;
publicclasssuperopdef
{
publictensorarrayforward()
{
System.out.println("wrong datatype\n");
System.exit(1);
returnnull;
}
publictensorarray3dforwardconv()
{
System.out.println("wrong datatype\n");
System.exit(1);
returnnull;
}
publicvoidbackward(tensorarraybackflow)
{
System.out.println("not implemented\n");
System.exit(1);
}
publicvoidbackwardconv(tensorarray3dbackflow)
{
System.out.println("not implemented\n");
System.exit(1);
}}