Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jevillegasdatTII authored and hay-k committed Oct 23, 2024
1 parent 193567f commit add0158
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/qibolab/compilers/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,5 +167,4 @@ def compile(self, circuit, platform):
# properly map acquisition results to measurement gates
if isinstance(gate, gates.M):
measurement_map[gate] = gate_sequence
print(sequence)
return sequence, measurement_map
3 changes: 0 additions & 3 deletions src/qibolab/pulses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1595,7 +1595,6 @@ def separate_overlapping_pulses(self): # -> dict((int,int): PulseSequence):
freqs |= {pulse.frequency}
PS_freq = {}
separated_pulses = {}
print(freqs)
for freq in freqs:
PS_freq[freq] = PulseSequence()
separated_pulses[freq] = []
Expand All @@ -1620,8 +1619,6 @@ def separate_overlapping_pulses(self): # -> dict((int,int): PulseSequence):
break
if not stored:
separated_pulses[freq].append(PulseSequence(new_pulse))
print("---------------------")
print(separated_pulses)
return [ps for freq in freqs for ps in separated_pulses[freq]]

@property
Expand Down

0 comments on commit add0158

Please sign in to comment.