compiled-knowledge 4.0.0a24__cp312-cp312-macosx_11_0_arm64.whl → 4.0.0a25__cp312-cp312-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of compiled-knowledge might be problematic. Click here for more details.
- ck/circuit/_circuit_cy.c +1 -1
- ck/circuit/_circuit_cy.cpython-312-darwin.so +0 -0
- ck/circuit/tmp_const.py +5 -4
- ck/circuit_compiler/cython_vm_compiler/_compiler.c +152 -152
- ck/circuit_compiler/cython_vm_compiler/_compiler.cpython-312-darwin.so +0 -0
- ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.c +1 -1
- ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.cpython-312-darwin.so +0 -0
- ck/circuit_compiler/support/llvm_ir_function.py +4 -4
- ck/example/diamond_square.py +3 -1
- ck/example/triangle_square.py +3 -1
- ck/example/truss.py +3 -1
- ck/in_out/parse_net.py +21 -19
- ck/in_out/parser_utils.py +7 -3
- ck/pgm.py +67 -58
- ck/pgm_circuit/mpe_program.py +3 -4
- ck/pgm_circuit/pgm_circuit.py +27 -18
- ck/pgm_circuit/program_with_slotmap.py +4 -1
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy.c +1 -1
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy.cpython-312-darwin.so +0 -0
- ck/probability/probability_space.py +10 -11
- ck/program/raw_program.py +23 -16
- ck/sampling/sampler_support.py +5 -6
- ck/utils/iter_extras.py +3 -2
- ck/utils/local_config.py +16 -8
- {compiled_knowledge-4.0.0a24.dist-info → compiled_knowledge-4.0.0a25.dist-info}/METADATA +1 -1
- {compiled_knowledge-4.0.0a24.dist-info → compiled_knowledge-4.0.0a25.dist-info}/RECORD +29 -29
- {compiled_knowledge-4.0.0a24.dist-info → compiled_knowledge-4.0.0a25.dist-info}/WHEEL +0 -0
- {compiled_knowledge-4.0.0a24.dist-info → compiled_knowledge-4.0.0a25.dist-info}/licenses/LICENSE.txt +0 -0
- {compiled_knowledge-4.0.0a24.dist-info → compiled_knowledge-4.0.0a25.dist-info}/top_level.txt +0 -0
ck/program/raw_program.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from dataclasses import dataclass
|
|
2
|
-
from typing import Callable, Sequence
|
|
2
|
+
from typing import Callable, Sequence, TypeAlias
|
|
3
3
|
|
|
4
4
|
import numpy as np
|
|
5
5
|
import ctypes as ct
|
|
@@ -7,12 +7,14 @@ import ctypes as ct
|
|
|
7
7
|
|
|
8
8
|
from ck.utils.np_extras import NDArrayNumeric, DTypeNumeric
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
RawProgramFunction: TypeAlias = Callable[[ct.POINTER, ct.POINTER, ct.POINTER], None]
|
|
11
|
+
"""
|
|
12
|
+
RawProgramFunction is a function of three ctypes arrays, returning nothing.
|
|
13
|
+
Args:
|
|
14
|
+
[0]: input values,
|
|
15
|
+
[1]: temporary working memory,
|
|
16
|
+
[2]: output values.
|
|
17
|
+
"""
|
|
16
18
|
|
|
17
19
|
|
|
18
20
|
@dataclass
|
|
@@ -26,23 +28,28 @@ class RawProgram:
|
|
|
26
28
|
an efficient method for executing a program as buffers are reallocated for
|
|
27
29
|
each call. Alternatively, a `RawProgram` can be wrapped in a `ProgramBuffer`
|
|
28
30
|
for computationally efficient memory buffer reuse.
|
|
29
|
-
|
|
30
|
-
Fields:
|
|
31
|
-
function: is a function of three ctypes arrays, returning nothing.
|
|
32
|
-
dtype: the numpy data type of the array values.
|
|
33
|
-
number_of_vars: the number of input values (first function argument).
|
|
34
|
-
number_of_tmps: the number of working memory values (second function argument).
|
|
35
|
-
number_of_results: the number of result values (third function argument).
|
|
36
|
-
var_indices: maps the index of inputs (from 0 to self.number_of_vars - 1) to the index
|
|
37
|
-
of the corresponding circuit var.
|
|
38
31
|
"""
|
|
39
32
|
|
|
40
33
|
function: RawProgramFunction
|
|
34
|
+
"""a function of three ctypes arrays, returning nothing."""
|
|
35
|
+
|
|
41
36
|
dtype: DTypeNumeric
|
|
37
|
+
"""the numpy data type of the array values."""
|
|
38
|
+
|
|
42
39
|
number_of_vars: int
|
|
40
|
+
"""the number of input values (first function argument)."""
|
|
41
|
+
|
|
43
42
|
number_of_tmps: int
|
|
43
|
+
"""the number of working memory values (second function argument)."""
|
|
44
|
+
|
|
44
45
|
number_of_results: int
|
|
46
|
+
"""the number of result values (third function argument)."""
|
|
47
|
+
|
|
45
48
|
var_indices: Sequence[int]
|
|
49
|
+
"""
|
|
50
|
+
a map from the index of inputs (from 0 to self.number_of_vars - 1) to the index
|
|
51
|
+
of the corresponding circuit var.
|
|
52
|
+
"""
|
|
46
53
|
|
|
47
54
|
def __call__(self, var_values: NDArrayNumeric | Sequence[int | float] | int | float) -> NDArrayNumeric:
|
|
48
55
|
"""
|
ck/sampling/sampler_support.py
CHANGED
|
@@ -11,12 +11,11 @@ from ck.utils.np_extras import NDArrayStates, NDArrayNumeric
|
|
|
11
11
|
from ck.utils.random_extras import Random
|
|
12
12
|
|
|
13
13
|
YieldF: TypeAlias = Callable[[NDArrayStates], int] | Callable[[NDArrayStates], Instance]
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"""
|
|
14
|
+
"""
|
|
15
|
+
Type of a yield function. Support for a sampler.
|
|
16
|
+
A yield function may be used to implement a sampler's iterator, thus
|
|
17
|
+
it provides an Instance or single state index.
|
|
18
|
+
"""
|
|
20
19
|
|
|
21
20
|
|
|
22
21
|
@dataclass
|
ck/utils/iter_extras.py
CHANGED
|
@@ -33,11 +33,12 @@ def combos(list_of_lists: Sequence[Sequence[_T]], flip=False) -> Iterable[Tuple[
|
|
|
33
33
|
Iterate over all combinations of taking one element from each of the lists.
|
|
34
34
|
|
|
35
35
|
The order of results has the first element changing most rapidly.
|
|
36
|
-
For example, given [[1,2,3],[4,5],[6,7]], combos yields the following
|
|
36
|
+
For example, given [[1,2,3],[4,5],[6,7]], combos yields the following::
|
|
37
|
+
|
|
37
38
|
(1,4,6), (2,4,6), (3,4,6), (1,5,6), (2,5,6), (3,5,6),
|
|
38
39
|
(1,4,7), (2,4,7), (3,4,7), (1,5,7), (2,5,7), (3,5,7).
|
|
39
40
|
|
|
40
|
-
If flip, then the last changes most rapidly.
|
|
41
|
+
If `flip` is true, then the last changes most rapidly.
|
|
41
42
|
"""
|
|
42
43
|
num = len(list_of_lists)
|
|
43
44
|
if num == 0:
|
ck/utils/local_config.py
CHANGED
|
@@ -12,10 +12,13 @@ other getter methods wrap `get`.
|
|
|
12
12
|
|
|
13
13
|
The `get` method will search for a value for a requested variable
|
|
14
14
|
using the following steps.
|
|
15
|
+
|
|
15
16
|
1) Check the `programmatic config` which is a dictionary that
|
|
16
|
-
|
|
17
|
+
can be directly updated.
|
|
18
|
+
|
|
17
19
|
2) Check the PYTHONPATH for a module called `config` (i.e., a
|
|
18
|
-
|
|
20
|
+
`config.py` file) for global variables defined in that module.
|
|
21
|
+
|
|
19
22
|
3) Check the system environment variables (`os.environ`).
|
|
20
23
|
|
|
21
24
|
Variable names must be a valid Python identifier. Only valid
|
|
@@ -171,8 +174,9 @@ def get_params(
|
|
|
171
174
|
are returned as a single string with `delim` as the delimiter. If
|
|
172
175
|
`delim` is not None then the default value for `sep` is '='.
|
|
173
176
|
|
|
174
|
-
For example, assume config.py contains: ABC = 123 and DEF = 456
|
|
175
|
-
then
|
|
177
|
+
For example, assume `config.py` contains: `ABC = 123` and `DEF = 456`,
|
|
178
|
+
then::
|
|
179
|
+
|
|
176
180
|
get_params('ABC') -> ('ABC', 123)
|
|
177
181
|
get_params('ABC', 'DEF') -> ('ABC', 123), ('DEF', 456)
|
|
178
182
|
get_params('ABC', sep='=') = 'ABC=123'
|
|
@@ -180,10 +184,14 @@ def get_params(
|
|
|
180
184
|
get_params('ABC;DEF', delim=';') = 'ABC=123;DEF=456'
|
|
181
185
|
get_params('ABC;DEF', sep='==', delim=';') = 'ABC==123;DEF==456'
|
|
182
186
|
|
|
183
|
-
:
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
+
Args:
|
|
188
|
+
keys: the names of variables to access.
|
|
189
|
+
sep: the separator character between {variable} and {value}.
|
|
190
|
+
delim: the delimiter character between key-value pairs.
|
|
191
|
+
config: a Config instance to update. Default is the global config.
|
|
192
|
+
|
|
193
|
+
Returns:
|
|
194
|
+
the requested parameter values.
|
|
187
195
|
"""
|
|
188
196
|
if delim is not None:
|
|
189
197
|
keys = flatten(key.split(delim) for key in keys)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: compiled-knowledge
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.0a25
|
|
4
4
|
Summary: A Python package for compiling and querying discrete probabilistic graphical models.
|
|
5
5
|
Author-email: Barry Drake <barry@compiledknowledge.org>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -52,24 +52,24 @@ ck_demos/pgm_inference/demo_inferencing_mpe_cancer.py,sha256=hS9U2kyqjFgJ8jnVBtT
|
|
|
52
52
|
ck_demos/pgm_inference/demo_inferencing_wmc_and_mpe_sprinkler.py,sha256=-q4Z1Fzf7-BuwVFTFXdGRY-zUNrY-SAU7ooaov2o_lM,5128
|
|
53
53
|
ck_demos/getting_started/simple_demo.py,sha256=hiYscNnfkEwHCQ3ymXAswAYO5jAKR7cseb36pjzuus8,650
|
|
54
54
|
ck_demos/getting_started/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
compiled_knowledge-4.0.
|
|
56
|
-
compiled_knowledge-4.0.
|
|
57
|
-
compiled_knowledge-4.0.
|
|
58
|
-
compiled_knowledge-4.0.
|
|
59
|
-
compiled_knowledge-4.0.
|
|
60
|
-
ck/pgm.py,sha256=
|
|
55
|
+
compiled_knowledge-4.0.0a25.dist-info/RECORD,,
|
|
56
|
+
compiled_knowledge-4.0.0a25.dist-info/WHEEL,sha256=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,136
|
|
57
|
+
compiled_knowledge-4.0.0a25.dist-info/top_level.txt,sha256=Cf8DAfd2vcnLiA7HlxoduOzV0Q-8surE3kzX8P9qdks,12
|
|
58
|
+
compiled_knowledge-4.0.0a25.dist-info/METADATA,sha256=3UADMUodWIyLwYZohmV72rNQzjNVc3nOIoD8iqOkZDU,1788
|
|
59
|
+
compiled_knowledge-4.0.0a25.dist-info/licenses/LICENSE.txt,sha256=-LmkmqXKYojmS3zDxXAeTbsA82fnHA0KaRvpfIoEdjA,1068
|
|
60
|
+
ck/pgm.py,sha256=xKDGCG4Qo4slnKB-EsdBk1ob2k8NXYt45Lpjmo9TsO4,117505
|
|
61
61
|
ck/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
ck/pgm_circuit/target_marginals_program.py,sha256=qWz9FkAFzt8YHLZJzPkpRnvDH76BXm-dcEWhoqCkrOw,3665
|
|
63
63
|
ck/pgm_circuit/slot_map.py,sha256=pqN0t5ElmUjR7SzvzldQwnO-jjRIz1rNZHH1PzE-V88,822
|
|
64
|
-
ck/pgm_circuit/mpe_program.py,sha256=
|
|
65
|
-
ck/pgm_circuit/program_with_slotmap.py,sha256=
|
|
64
|
+
ck/pgm_circuit/mpe_program.py,sha256=uDOykbBIbvvDQtxXOgBj6gzoehq1AfaQzZIWW3rMZnY,9990
|
|
65
|
+
ck/pgm_circuit/program_with_slotmap.py,sha256=5ktYdAAEn_dku91D5lSb_MV2I6oPcGbPT8W1ZK-a8FY,8796
|
|
66
66
|
ck/pgm_circuit/__init__.py,sha256=FctIFEYdL1pwxFMMEEu5Rwgq3kjPar-vJTqAmgIqb-I,36
|
|
67
67
|
ck/pgm_circuit/marginals_program.py,sha256=E-L-4Rc2YLs3ndXIfXpTxUYGEFJG1_BkaZVDBs9gcgQ,14434
|
|
68
68
|
ck/pgm_circuit/wmc_program.py,sha256=Btq7jUot-PodWXrgDFaE6zhUtr6GPUNF217CVLTaB70,12376
|
|
69
|
-
ck/pgm_circuit/pgm_circuit.py,sha256=
|
|
69
|
+
ck/pgm_circuit/pgm_circuit.py,sha256=XBXANPREwp5Cl8P0x5XuG9besOJV5DjVxtNkqyt2DK8,3287
|
|
70
70
|
ck/pgm_circuit/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
71
|
ck/pgm_circuit/support/compile_circuit.py,sha256=56KsI01Ww3gSHnqoTt81kzdHgbFTmHwVeB3jEajipHs,3179
|
|
72
|
-
ck/probability/probability_space.py,sha256=
|
|
72
|
+
ck/probability/probability_space.py,sha256=TTNSe6z40hs94kLBR_YHNjjRvBGVI86tza-CU2FKd9M,25482
|
|
73
73
|
ck/probability/pgm_probability_space.py,sha256=9al9sZk2LGvnTITvxS8x_ntabHKhaliUW-6JUeAEEl4,1231
|
|
74
74
|
ck/probability/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
75
|
ck/probability/empirical_probability_space.py,sha256=ojEMLKVy9Qf-Vi803B9KWARCySIWwf4rt23--mpAxD0,1978
|
|
@@ -81,7 +81,7 @@ ck/example/asia.py,sha256=vS81n-qyhHscW8yG__9TQvDHLI-s6y6gaDetfOKMvFw,1267
|
|
|
81
81
|
ck/example/clique.py,sha256=c3bATknqkD3QJztHQffgyL6_WzupWUpLSnI-EIEndqg,1055
|
|
82
82
|
ck/example/mildew.py,sha256=Hfn_nQUhZVK6wFzNgxjD8HgzxgGxU1TWTZcWUrN3tDU,1792796
|
|
83
83
|
ck/example/chain.py,sha256=aPlqMtqWO2BOz1WLXFtVwT3uPKN2E2Z7a7TSPvtloQU,1313
|
|
84
|
-
ck/example/truss.py,sha256=
|
|
84
|
+
ck/example/truss.py,sha256=KgYka1OwoZ_9wRvtCPzI2SkiB22crch_wpZzAYQiRNc,1928
|
|
85
85
|
ck/example/insurance.py,sha256=XRycrk8YBLxv5cQXWd4uIWW5fHhD1_Le9XKdNz_yJA4,31204
|
|
86
86
|
ck/example/sachs.py,sha256=X-2stEbTlnV9hGuo2u6z19jqxJ2mFcIvDQfQnWGuKvc,5678
|
|
87
87
|
ck/example/empty.py,sha256=RU3kjIrWSCBoqK_XZqk82GhI-0blu1dzM32UtGe5Y0Q,172
|
|
@@ -99,21 +99,21 @@ ck/example/munin.py,sha256=IZvZrVXDi2Zeu0M-nWIpIbzQu-U0cv0Be6dz960L5lo,1657227
|
|
|
99
99
|
ck/example/child.py,sha256=qb3cOJms_Bzdfgk0aDrHwfFjjBojCfAYQnorv3p3rQM,7612
|
|
100
100
|
ck/example/hailfinder.py,sha256=7M-J0XqFeNxK-TsdbOYu-GX581oM7wY1INEvTTSwqfs,38866
|
|
101
101
|
ck/example/student.py,sha256=WayCWuMCrE0YSXez-a8TuptS53R6PBG2argyCsas7mc,1290
|
|
102
|
-
ck/example/triangle_square.py,sha256=
|
|
102
|
+
ck/example/triangle_square.py,sha256=mzl04AqaTkLNo0NU0dZYAh-sBMZbNqpOcdi_Dd1ZgMM,2097
|
|
103
103
|
ck/example/sprinkler.py,sha256=t8RIiPorf3QXYyTXbxFkSrK1SsG5ALWmTfTsFUq2C_c,938
|
|
104
|
-
ck/example/diamond_square.py,sha256=
|
|
104
|
+
ck/example/diamond_square.py,sha256=ic8adEomQHMFlGQ3gMYGEja0LxEla8KEQKhET0XpULs,2725
|
|
105
105
|
ck/example/rain.py,sha256=kLTU_9f_-_yy0ymPnS9-cbFVT6fYyCanDgszk3vQOgc,1187
|
|
106
106
|
ck/example/cancer.py,sha256=-FnLbfb9yxriLl97N5BDZ0VrDZ5UnOWlT-Ep_tzO6QI,1698
|
|
107
|
-
ck/circuit/_circuit_cy.c,sha256=
|
|
107
|
+
ck/circuit/_circuit_cy.c,sha256=fvJ3vmBfUEy0qlO5tvNe4BxHNQ39BZa04Na_RThFMoY,1704292
|
|
108
108
|
ck/circuit/_circuit_cy.pyx,sha256=mER1HK5yyf4UAj9ibn7fUQNyXwoxwxp7PClULPhY9B4,26995
|
|
109
109
|
ck/circuit/__init__.py,sha256=B1jwDE_Xb6hOQE8DecjaTVotOnDxJaT7jsvPfGDXqCU,401
|
|
110
110
|
ck/circuit/_circuit_cy.pxd,sha256=ZcW8xjw4oGQqD5gwz73GXc1H8NxpdAswFWzc2CUWWcA,1025
|
|
111
111
|
ck/circuit/_circuit_py.py,sha256=hADjCFDC1LJKUdyiKZzNLFt7ZkUNJ0IYwEYRj594K4g,27495
|
|
112
|
-
ck/circuit/tmp_const.py,sha256=
|
|
113
|
-
ck/circuit/_circuit_cy.cpython-312-darwin.so,sha256=
|
|
112
|
+
ck/circuit/tmp_const.py,sha256=q01bkIvTEg1l-qFcfl2B8NrSzKlqcWU7McNm4HKv7bU,2300
|
|
113
|
+
ck/circuit/_circuit_cy.cpython-312-darwin.so,sha256=g3lVq7Z0zUurgUdyrvRGGCkQfNSXZwlh8uvSz1DpOGk,335296
|
|
114
114
|
ck/sampling/wmc_metropolis_sampler.py,sha256=jfXb-MG0jAoMyepgq9zel2amqK-gmYrCtKuxJStl8VY,6305
|
|
115
115
|
ck/sampling/wmc_direct_sampler.py,sha256=Pkv-u4GjN3npBrcQ92raoTrEIel1vpiDoE8LrlcfYJE,7094
|
|
116
|
-
ck/sampling/sampler_support.py,sha256=
|
|
116
|
+
ck/sampling/sampler_support.py,sha256=AD47QPXlXSTiy7Jm-adD6US3cYeSwBimOY2jB5b2qn4,9534
|
|
117
117
|
ck/sampling/wmc_rejection_sampler.py,sha256=Kk7hDvfnI37CQhFlAW2-UoxtoSbQBoMesghMlwrX6_Y,4782
|
|
118
118
|
ck/sampling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
119
|
ck/sampling/marginals_direct_sampler.py,sha256=S4kfmvgPfh_dyn-D2WumrH6SMvLc6sFF7fRswGOS1gA,4353
|
|
@@ -125,9 +125,9 @@ ck/utils/random_extras.py,sha256=l9CfQM6k-b6KGESJXw9zF--Hqp4yadw2IU9uSoklai0,179
|
|
|
125
125
|
ck/utils/map_set.py,sha256=T5E3j4Lz08vg8eviRBc-4F10xz1-CKIg6KiHVoGhdts,3681
|
|
126
126
|
ck/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
127
|
ck/utils/tmp_dir.py,sha256=Emln4TIyO-cFrhgcpoH10awakJoRgoDCVgwFKmt1-So,2574
|
|
128
|
-
ck/utils/iter_extras.py,sha256=
|
|
128
|
+
ck/utils/iter_extras.py,sha256=61I4xnFfZD9biC8VAqYRCdh4B2q5BRI6xDQ9jjpQv4E,4328
|
|
129
129
|
ck/utils/np_extras.py,sha256=3wqIJ8Lc4CCpcKmzDiIOtzslW_IFw9HYUC2QaYYN-mM,1701
|
|
130
|
-
ck/utils/local_config.py,sha256=
|
|
130
|
+
ck/utils/local_config.py,sha256=9b7KAA1-HIjOORa6Z-L90dCKWg0-ZGBmsjYtr1cBwQU,9322
|
|
131
131
|
ck/utils/map_list.py,sha256=0UkTDg-ZlWkuxiM-1OhaUYh5MRgMz0rAppDtE2RryEY,3719
|
|
132
132
|
ck/pgm_compiler/__init__.py,sha256=Ga0dTOetOovHwNN4WS-o4fyyh7255xL0bUTdK29p2LY,110
|
|
133
133
|
ck/pgm_compiler/recursive_conditioning.py,sha256=vdDSrMO1yPQHNlLQha5ybg3a7l1SiygsmniI_pQhU-Q,7705
|
|
@@ -143,11 +143,11 @@ ck/pgm_compiler/support/named_compiler_maker.py,sha256=Qz8a9gwY46Q3dtRCZEZ2czq5z
|
|
|
143
143
|
ck/pgm_compiler/support/circuit_table/__init__.py,sha256=1kWjAZR5Rj6PYNdbCEbuyE2VtIDQU4Qf-3HPFzBlezs,562
|
|
144
144
|
ck/pgm_compiler/support/circuit_table/_circuit_table_cy.pyx,sha256=Fsjw8P9clKQioqlLyr1JirUK5oYkeotpDMy5sMo7Khk,11683
|
|
145
145
|
ck/pgm_compiler/support/circuit_table/_circuit_table_py.py,sha256=OZJC-JGX3ovCSv7nJtNYq7735KZ2eb4TQOlZdZbhPmk,10983
|
|
146
|
-
ck/pgm_compiler/support/circuit_table/_circuit_table_cy.c,sha256=
|
|
147
|
-
ck/pgm_compiler/support/circuit_table/_circuit_table_cy.cpython-312-darwin.so,sha256=
|
|
146
|
+
ck/pgm_compiler/support/circuit_table/_circuit_table_cy.c,sha256=YQZjLxxViwc3UR7g_b8toemdlrquFx1UZuf1ITSKhk0,714044
|
|
147
|
+
ck/pgm_compiler/support/circuit_table/_circuit_table_cy.cpython-312-darwin.so,sha256=BSjoYXVlCvrOoFihv6nVJ8jQ1ssCtSnRa9M9kD3G1Oc,165096
|
|
148
148
|
ck/pgm_compiler/ace/ace.py,sha256=An83dHxE_gQFcEs6H5qgm0PlNFnJSGGuvLJNC2H3hGU,10098
|
|
149
149
|
ck/pgm_compiler/ace/__init__.py,sha256=5HWep-yL1Mr6z5VWEaIYpLumCdeso85J-l_-hQaVusM,96
|
|
150
|
-
ck/program/raw_program.py,sha256=
|
|
150
|
+
ck/program/raw_program.py,sha256=U7kLBCSLtP1CfG09RrzmGo7E3sZdNr7wr2V1qkTfVGc,4106
|
|
151
151
|
ck/program/program_buffer.py,sha256=IHwAHTKIaUlhcbNFTuSxPWKyExIsOxxX6ffUn4KfheU,5485
|
|
152
152
|
ck/program/__init__.py,sha256=Rifdxk-l6cCjXLpwc6Q0pVXNDsllAwaFlRqRx3cURho,107
|
|
153
153
|
ck/program/program.py,sha256=ohsnE0CEy8O4q8uGB_YEjoJKAPhY1Mz_a08Z7fy7TLw,4047
|
|
@@ -160,20 +160,20 @@ ck/circuit_compiler/llvm_vm_compiler.py,sha256=rM_6F5st3k9X5K1_MwzKJwDhQo1794voo
|
|
|
160
160
|
ck/circuit_compiler/cython_vm_compiler/cython_vm_compiler.py,sha256=GdtBkipud8vylXYArOJvZ-10U9L_PL0oJrkyrnFGH2Q,4345
|
|
161
161
|
ck/circuit_compiler/cython_vm_compiler/__init__.py,sha256=ks0sISOJ-XHIHgHnESyFsheNWvcSJQkbsrj1wVlnzTE,48
|
|
162
162
|
ck/circuit_compiler/cython_vm_compiler/_compiler.pyx,sha256=RssdkoAcB3Ahes8xisqFy0PQyOPmC3GLEC2xR-miQaE,12898
|
|
163
|
-
ck/circuit_compiler/cython_vm_compiler/_compiler.cpython-312-darwin.so,sha256=
|
|
164
|
-
ck/circuit_compiler/cython_vm_compiler/_compiler.c,sha256=
|
|
165
|
-
ck/circuit_compiler/support/llvm_ir_function.py,sha256=
|
|
163
|
+
ck/circuit_compiler/cython_vm_compiler/_compiler.cpython-312-darwin.so,sha256=8WLjKps3LQn1i7rONAlZNmG0aUkimVgNm1iUnX5VbCs,163488
|
|
164
|
+
ck/circuit_compiler/cython_vm_compiler/_compiler.c,sha256=NRPVxlw7Ay-ZQiCg7Pzue-T9Oj837Klt4CjXW7U74nA,857789
|
|
165
|
+
ck/circuit_compiler/support/llvm_ir_function.py,sha256=sMLKfwz90YcsrVyxsuY0Ymo1ibFOcul4Qiwdake-VkI,8321
|
|
166
166
|
ck/circuit_compiler/support/input_vars.py,sha256=EZrvyhD9XVtf5GuDBluFNWhAOVixP7-_ETxAHLTpBcs,4664
|
|
167
167
|
ck/circuit_compiler/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
168
|
ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.pyx,sha256=a0fKmkwRNscJmy6qoO2AOqJYmHYptrQmkRSrDg3G-wg,3233
|
|
169
169
|
ck/circuit_compiler/support/circuit_analyser/__init__.py,sha256=WhNwfg7GHVeI4k_m7owPGWxX0MyZg_wtcp2MA07qbWg,523
|
|
170
|
-
ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.cpython-312-darwin.so,sha256=
|
|
171
|
-
ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.c,sha256=
|
|
170
|
+
ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.cpython-312-darwin.so,sha256=ogFiwfH_pKuVwLas5jfEIMlG_YZ7HU0VtOL1Ox-RtC4,104936
|
|
171
|
+
ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.c,sha256=lwzEGaGx7L5VgoT5H6-1QCWkuI85lkCM7ujYqhwARNc,438223
|
|
172
172
|
ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_py.py,sha256=CMdXV6Rot5CCoK1UsurQdGK0UOx_09B6V7mCc_6-gfI,2993
|
|
173
173
|
ck/in_out/render_net.py,sha256=VePvN6aYWuzEkW-Hv-qGT9QneOvsnrBMmS_KYueuj2I,4970
|
|
174
174
|
ck/in_out/render_bugs.py,sha256=c39KbaD4gEiauFsZq2KUhDEEa-3cuY5kuvz97pEWVpw,3272
|
|
175
|
-
ck/in_out/parse_net.py,sha256=
|
|
176
|
-
ck/in_out/parser_utils.py,sha256=
|
|
175
|
+
ck/in_out/parse_net.py,sha256=ITTI_nG8W8ZR2Y578BkcWYEx4tAQPHd_TaFe6AP8SAQ,13825
|
|
176
|
+
ck/in_out/parser_utils.py,sha256=tWMiytVeKO8_48hzvt9Lq0TnN0yOB2rtRTjXZQAEmi8,5378
|
|
177
177
|
ck/in_out/__init__.py,sha256=3sLg8hHG_AWEJ7Kn06ZziFbVBUybKVTUPZCyqhr2qAw,109
|
|
178
178
|
ck/in_out/parse_ace_lmap.py,sha256=UqZpkW1yNXNpdLEcMeXlve6tataaFuKP7caoKysQ8pE,7675
|
|
179
179
|
ck/in_out/render_pomegranate.py,sha256=tU7iDHkLWTJyFrxPa2LbZnD06qia8mG2FGi0aZAKuk0,5580
|
|
File without changes
|
{compiled_knowledge-4.0.0a24.dist-info → compiled_knowledge-4.0.0a25.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
{compiled_knowledge-4.0.0a24.dist-info → compiled_knowledge-4.0.0a25.dist-info}/top_level.txt
RENAMED
|
File without changes
|