femtocrux 0.6.3__py3-none-any.whl → 0.6.5__py3-none-any.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.
- femtocrux/PY_REQUIREMENTS +3 -3
- femtocrux/VERSION +1 -1
- femtocrux/grpc/compiler_service_pb2.py +11 -1
- femtocrux/grpc/compiler_service_pb2_grpc.py +2 -7
- {femtocrux-0.6.3.dist-info → femtocrux-0.6.5.dist-info}/METADATA +2 -2
- {femtocrux-0.6.3.dist-info → femtocrux-0.6.5.dist-info}/RECORD +9 -9
- {femtocrux-0.6.3.dist-info → femtocrux-0.6.5.dist-info}/WHEEL +1 -1
- {femtocrux-0.6.3.dist-info → femtocrux-0.6.5.dist-info}/LICENSE +0 -0
- {femtocrux-0.6.3.dist-info → femtocrux-0.6.5.dist-info}/top_level.txt +0 -0
femtocrux/PY_REQUIREMENTS
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Cython # do not remove
|
|
2
2
|
docker
|
|
3
|
-
fmot>=1.9.2
|
|
3
|
+
fmot>=1.9.2,<3.0.0
|
|
4
4
|
grpcio>= 1.64.1
|
|
5
5
|
grpcio-tools>=1.64.1
|
|
6
6
|
numpy>=1.18.0, <2.0.0
|
|
@@ -8,5 +8,5 @@ protobuf # Newer versions don't work with TF 2.11
|
|
|
8
8
|
passlib
|
|
9
9
|
|
|
10
10
|
# DOCKER BUG WORK-AROUND https://github.com/docker/docker-py/issues/3113
|
|
11
|
-
requests<2.29.0
|
|
12
|
-
urllib3 >= 1.26.0, < 2.0.0
|
|
11
|
+
requests<2.29.0
|
|
12
|
+
urllib3 >= 1.26.0, < 2.0.0
|
femtocrux/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.5
|
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
3
4
|
# source: compiler_service.proto
|
|
4
|
-
# Protobuf Python Version: 5.
|
|
5
|
+
# Protobuf Python Version: 5.27.2
|
|
5
6
|
"""Generated protocol buffer code."""
|
|
6
7
|
from google.protobuf import descriptor as _descriptor
|
|
7
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
8
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
9
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
27,
|
|
16
|
+
2,
|
|
17
|
+
'',
|
|
18
|
+
'compiler_service.proto'
|
|
19
|
+
)
|
|
10
20
|
# @@protoc_insertion_point(imports)
|
|
11
21
|
|
|
12
22
|
_sym_db = _symbol_database.Default()
|
|
@@ -6,10 +6,8 @@ import warnings
|
|
|
6
6
|
import compiler_service_pb2 as compiler__service__pb2
|
|
7
7
|
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
8
8
|
|
|
9
|
-
GRPC_GENERATED_VERSION = '1.
|
|
9
|
+
GRPC_GENERATED_VERSION = '1.66.1'
|
|
10
10
|
GRPC_VERSION = grpc.__version__
|
|
11
|
-
EXPECTED_ERROR_RELEASE = '1.66.0'
|
|
12
|
-
SCHEDULED_RELEASE_DATE = 'August 6, 2024'
|
|
13
11
|
_version_not_supported = False
|
|
14
12
|
|
|
15
13
|
try:
|
|
@@ -19,15 +17,12 @@ except ImportError:
|
|
|
19
17
|
_version_not_supported = True
|
|
20
18
|
|
|
21
19
|
if _version_not_supported:
|
|
22
|
-
|
|
20
|
+
raise RuntimeError(
|
|
23
21
|
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
24
22
|
+ f' but the generated code in compiler_service_pb2_grpc.py depends on'
|
|
25
23
|
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
26
24
|
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
27
25
|
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
28
|
-
+ f' This warning will become an error in {EXPECTED_ERROR_RELEASE},'
|
|
29
|
-
+ f' scheduled for release on {SCHEDULED_RELEASE_DATE}.',
|
|
30
|
-
RuntimeWarning
|
|
31
26
|
)
|
|
32
27
|
|
|
33
28
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: femtocrux
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.5
|
|
4
4
|
Summary: Femtosense Compiler
|
|
5
5
|
Home-page: https://github.com/femtosense/femtocrux
|
|
6
6
|
Author: Femtosense
|
|
@@ -16,7 +16,7 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: Cython
|
|
18
18
|
Requires-Dist: docker
|
|
19
|
-
Requires-Dist: fmot
|
|
19
|
+
Requires-Dist: fmot<3.0.0,>=1.9.2
|
|
20
20
|
Requires-Dist: grpcio>=1.64.1
|
|
21
21
|
Requires-Dist: grpcio-tools>=1.64.1
|
|
22
22
|
Requires-Dist: numpy<2.0.0,>=1.18.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
femtocrux/ENV_REQUIREMENTS.sh,sha256=t_O1B4hJAMgxvH9gwp1qls6eVFmhSYBJe64KmuK_H-4,1389
|
|
2
|
-
femtocrux/PY_REQUIREMENTS,sha256=
|
|
3
|
-
femtocrux/VERSION,sha256=
|
|
2
|
+
femtocrux/PY_REQUIREMENTS,sha256=wvbsR34rwqytCWDCFxBubN9d5tkUkr1ocfJVjS6nwH0,283
|
|
3
|
+
femtocrux/VERSION,sha256=NL9SViuuQB3hBpM6dWXJ06XI3IPASwspSS3T9vOYO3o,6
|
|
4
4
|
femtocrux/__init__.py,sha256=yIWd9I2PEXCn_PKIILAN3mkWeTf0tgtVualeTIHNxfQ,342
|
|
5
5
|
femtocrux/version.py,sha256=uNg2kHxQo6oUN1ah7s9_85rCZVRoTHGPD1GAQPZW4lw,164
|
|
6
6
|
femtocrux/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -15,16 +15,16 @@ femtocrux/femtostack/tflite_api/tflite_frontend.py,sha256=CsvurJ2RJPnUgjfwQ8ru6j
|
|
|
15
15
|
femtocrux/femtostack/torch_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
femtocrux/femtostack/torch_api/frontend.py,sha256=-12zz0NpvQgpPNqBMg7EJQdomtRJPNffrVKC6rBqfBE,4064
|
|
17
17
|
femtocrux/grpc/__init__.py,sha256=uiMHQt5I2eAKJqI3Zh0h1Gm7cmPR4PbaGS71nCJQCGw,169
|
|
18
|
-
femtocrux/grpc/compiler_service_pb2.py,sha256=
|
|
19
|
-
femtocrux/grpc/compiler_service_pb2_grpc.py,sha256=
|
|
18
|
+
femtocrux/grpc/compiler_service_pb2.py,sha256=E2Yl97eENjTeP5n_O1y2qDHOCUfPCFxNWSBdupdkmhg,4703
|
|
19
|
+
femtocrux/grpc/compiler_service_pb2_grpc.py,sha256=16St_2t-Onih3AGWmIKtXkXldrYInotezoSmiO6H5Es,8501
|
|
20
20
|
femtocrux/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
femtocrux/server/exceptions.py,sha256=lI6n471n5QKf5G3aL_1kuBVEItD-jBgithVVpPDwNYc,609
|
|
22
22
|
femtocrux/server/healthcheck.py,sha256=ehqAwnv0D0zpy-AUZAPwv8rp874DZCwUmP8nzdXzZvI,1565
|
|
23
23
|
femtocrux/server/server.py,sha256=fpwL1GtFvdw7E0inkMDbDKd-Hu3QAuEgvlqFP7vtZhY,7928
|
|
24
24
|
femtocrux/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
femtocrux/util/utils.py,sha256=FZ8cssDom4B3FDbVU_ew4Cf3wOWjo2w1jwcbnLzoYnM,1003
|
|
26
|
-
femtocrux-0.6.
|
|
27
|
-
femtocrux-0.6.
|
|
28
|
-
femtocrux-0.6.
|
|
29
|
-
femtocrux-0.6.
|
|
30
|
-
femtocrux-0.6.
|
|
26
|
+
femtocrux-0.6.5.dist-info/LICENSE,sha256=eN9ZI1xHjUmFvN3TEeop5kBGXRUBfbsl55KBNBYYFqI,36
|
|
27
|
+
femtocrux-0.6.5.dist-info/METADATA,sha256=VEWc26Y1mLXebnWKuYU4Rplb5qONAp16_h_gaov-xiU,3556
|
|
28
|
+
femtocrux-0.6.5.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
|
29
|
+
femtocrux-0.6.5.dist-info/top_level.txt,sha256=BkTttlioC3je__8577wxRieZqY3Abu7FOOdMnmYbcNI,10
|
|
30
|
+
femtocrux-0.6.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|