Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gstlal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Duncan Macleod
gstlal
Commits
5f0a40dc
Commit
5f0a40dc
authored
7 years ago
by
Kipp Cannon
Browse files
Options
Downloads
Patches
Plain Diff
gstlal_inspiral: don't fork gzip processes
- use Python's own gzip support to check files
parent
94cb06fd
No related branches found
Branches containing commit
Tags
gstlal-calibration-0.99-v1
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-inspiral/bin/gstlal_inspiral
+12
-6
12 additions, 6 deletions
gstlal-inspiral/bin/gstlal_inspiral
with
12 additions
and
6 deletions
gstlal-inspiral/bin/gstlal_inspiral
+
12
−
6
View file @
5f0a40dc
...
...
@@ -179,6 +179,7 @@ except ImportError:
# fpconst is not part of the standard library and might not be
# available
PosInf = float("+inf")
import gzip
import itertools
import math
from optparse import OptionParser
...
...
@@ -186,7 +187,6 @@ import os
import resource
import signal
import socket
import subprocess
import sys
import tempfile
import time
...
...
@@ -600,12 +600,18 @@ for output_file_number, (svd_bank_url_dict, output_url, likelihood_url_namedtupl
if
options.data_source
not
in
("
lvshm
",
"
framexmit
")
and
output_url.endswith
('.
gz
')
:
try:
subprocess.check_call
(["
gzip
",
"
--test
",
ligolw_utils.local_path_from_url
(
output_url
)])
subprocess.check_call
(["
gzip
",
"
--test
",
ligolw_utils.local_path_from_url
(
likelihood_url_namedtuple
[0])])
#
File
is
OK
and
there
is
no
need
to
process
it
,
skip
ahead
in
the
loop
#
a
single
.
read
()
would
be
easier
but
looping
over
#
lines
uses
less
memory
for
line
in
gzip.open
(
ligolw_utils.local_path_from_url
(
output_url
))
:
pass
for
line
in
gzip.open
(
ligolw_utils.local_path_from_url
(
likelihood_url_namedtuple
[0]))
:
pass
#
File
is
OK
and
there
is
no
need
to
process
it
,
#
skip
ahead
in
the
loop
continue
except
subprocess.CalledProcessError:
#
File
does
not
exist
or
is
corrupted
,
need
to
reprocess
except
IOError:
#
File
does
not
exist
or
is
corrupted
,
need
to
#
reprocess
print
>
>sys.stderr, "Checkpoint: {0} of {1} files completed and continuing with {2}".format(output_file_number, len(options.output), os.path.basename(output_url))
pass
...
...
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