Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.backend.python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
beat
beat.backend.python
Commits
9b3faba3
Commit
9b3faba3
authored
4 years ago
by
Amir MOHAMMADI
Browse files
Options
Downloads
Patches
Plain Diff
Fixes a few warnings and depracations
parent
44b95672
No related branches found
No related tags found
1 merge request
!73
Fixes a few warnings and depracations
Pipeline
#40554
passed
4 years ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
beat/backend/python/baseformat.py
+2
-2
2 additions, 2 deletions
beat/backend/python/baseformat.py
beat/backend/python/data.py
+2
-1
2 additions, 1 deletion
beat/backend/python/data.py
beat/backend/python/loader.py
+2
-1
2 additions, 1 deletion
beat/backend/python/loader.py
with
6 additions
and
4 deletions
beat/backend/python/baseformat.py
+
2
−
2
View file @
9b3faba3
...
...
@@ -358,8 +358,8 @@ def unpack_array(shape, dtype, fd):
# N.B.: this bit of code is optimized to reduce memory usage
data_format
=
ENDIANNESS
+
dtype
.
str
[
1
:]
count
=
numpy
.
prod
(
shape_
)
to_read
=
numpy
.
asscalar
(
dtype
.
itemsize
*
count
)
a
=
numpy
.
from
string
(
fd
.
read
(
to_read
),
dtype
=
data_format
,
count
=
count
)
to_read
=
int
(
dtype
.
itemsize
*
count
)
a
=
numpy
.
from
buffer
(
fd
.
read
(
to_read
),
dtype
=
data_format
,
count
=
count
)
return
a
.
reshape
(
shape_
)
elif
issubclass
(
dtype
,
str
):
# it is a string
...
...
This diff is collapsed.
Click to expand it.
beat/backend/python/data.py
+
2
−
1
View file @
9b3faba3
...
...
@@ -411,7 +411,8 @@ class CachedDataSource(DataSource):
# list of start/end indices to check that there are contiguous
indices
=
[]
for
f_data
,
f_chck
in
zip
(
data_filenames
,
checksum_filenames
):
expected_chksum
=
open
(
f_chck
,
"
rt
"
).
read
().
strip
()
with
open
(
f_chck
,
"
rt
"
)
as
f
:
expected_chksum
=
f
.
read
().
strip
()
current_chksum
=
hashFileContents
(
f_data
)
if
expected_chksum
!=
current_chksum
:
raise
IOError
(
...
...
This diff is collapsed.
Click to expand it.
beat/backend/python/loader.py
+
2
−
1
View file @
9b3faba3
...
...
@@ -82,7 +82,8 @@ def load_module(name, path, uses):
retval
.
__dict__
[
k
]
=
load_module
(
k
,
v
[
'
path
'
],
v
[
'
uses
'
])
# execute the module code on the context of previously import modules
exec
(
compile
(
open
(
path
,
"
rb
"
).
read
(),
path
,
'
exec
'
),
retval
.
__dict__
)
with
open
(
path
,
"
rb
"
)
as
f
:
exec
(
compile
(
f
.
read
(),
path
,
'
exec
'
),
retval
.
__dict__
)
return
retval
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment