forked from yuemingl/SymJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestCloudFunc.java
More file actions
82 lines (70 loc) · 2.31 KB
/
TestCloudFunc.java
File metadata and controls
82 lines (70 loc) · 2.31 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package lambdacloud.test;
import static symjava.symbolic.Symbol.*;
import static lambdacloud.test.TestUtils.*;
import lambdacloud.core.CloudConfig;
import lambdacloud.core.CloudFunc;
import lambdacloud.core.CloudSD;
import lambdacloud.core.lang.LCVar;
public class TestCloudFunc {
public static void main(String[] args) {
CloudConfig.setGlobalConfig("job_local.conf");
testConstructors1();
testConstructors2();
testConstructors3();
testConstructors4();
testLocalVar1();
testLocalVar2();
}
public static void testConstructors1() {
CloudFunc func = new CloudFunc(x + y);
CloudSD output = new CloudSD();
CloudSD input = new CloudSD().init(new double[]{1,2});
func.apply(output, input);
output.fetch();
assertEqual(new double[]{3}, output.getData());
}
public static void testConstructors2() {
CloudFunc func = new CloudFunc(x + y, x, y);
CloudSD output = new CloudSD();
CloudSD input = new CloudSD().init(new double[]{1,2});
func.apply(output, input);
output.fetch();
assertEqual(new double[]{3}, output.getData());
}
public static void testConstructors3() {
CloudFunc func = new CloudFunc("func_test1",x + y, x, y);
CloudSD output = new CloudSD();
CloudSD input = new CloudSD().init(new double[]{1,2});
func.apply(output, input);
output.fetch();
assertEqual(new double[]{3}, output.getData());
}
public static void testConstructors4() {
CloudFunc func = new CloudFunc("func_test2",x + y, x, y);
CloudSD output = new CloudSD();
CloudSD input = new CloudSD().init(new double[]{1,2});
func.apply(output, input);
output.fetch();
assertEqual(new double[]{3}, output.getData());
}
public static void testLocalVar1() {
LCVar x = LCVar.getDouble("x");
LCVar y = LCVar.getDouble("y");
CloudFunc func = new CloudFunc(x + y);
CloudSD output = new CloudSD();
CloudSD input = new CloudSD().init(new double[]{1,2});
func.apply(output, input);
output.fetch();
assertEqual(new double[]{0}, output.getData());
}
public static void testLocalVar2() {
LCVar x = LCVar.getDouble("x");
LCVar y = LCVar.getDouble("y");
CloudFunc func = new CloudFunc(x + y, new LCVar[]{x,y});
CloudSD output = new CloudSD();
CloudSD input = new CloudSD().init(new double[]{1,2});
func.apply(output, input);
output.fetch();
assertEqual(new double[]{3}, output.getData());
}
}