-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtest_initial_design.py
51 lines (49 loc) · 1.58 KB
/
test_initial_design.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Author : qichun tang
# @Date : 2020-12-20
# @Contact : qichun.tang@bupt.edu.cn
import pandas as pd
import unittest
from ultraopt.hdl import HDL2CS
from ultraopt.utils.config_space import get_array_from_configs
from ultraopt.utils.config_space import initial_design_2
class TestInitialDesign(unittest.TestCase):
def test(self):
cs = HDL2CS().recursion({
"A(choice)": {
"A1": {
"A1_h1": {
"_type": "choice",
"_value": ["1", "2", "3"]
},
"A1_h2": {
"_type": "uniform",
"_value": [-999, 666]
}
},
"A2": {
"A2_h1": {
"_type": "choice",
"_value": ["1", "2", "3"]
},
"A2_h2": {
"_type": "uniform",
"_value": [-999, 666]
}
},
"A3": {
"A3_h1": {
"_type": "choice",
"_value": ["1", "2", "3"]
},
"A3_h2": {
"_type": "uniform",
"_value": [-999, 666]
}
},
}
})
configs = initial_design_2(cs, 1, 1)
arr = get_array_from_configs(configs)
print(pd.Series(arr[:, 0]).nunique() == 3)