Portuguese, Brazilian
Idiomas
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

Código fonte para qiskit.visualization.pulse.qcstyle

# This code is part of Qiskit.
#
# (C) Copyright IBM 2019.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

# pylint: disable=missing-docstring

"""
Style sheets for pulse visualization.
"""
from collections import namedtuple
from typing import Optional, Tuple

import logging

logger = logging.getLogger(__name__)
ComplexColors = namedtuple('ComplexColors', ['real', 'imaginary'])
SchedTableColors = namedtuple('SchedTableColors', ['time', 'channel', 'event'])


[documentos]class SchedStyle: """Style sheet for Qiskit-Pulse schedule drawer.""" def __init__(self, figsize: Optional[Tuple[float, float]] = (10.0, 12.0), fig_unit_h_table: float = 0.4, use_table: bool = True, table_columns: int = 2, table_font_size: int = 10, axis_font_size: int = 18, label_font_size: int = 10, icon_font_size: int = 18, title_font_size: Optional[int] = 25, label_ch_linestyle: str = '--', label_ch_color: str = '#222222', label_ch_alpha: float = 0.3, d_ch_color: ComplexColors = ('#648fff', '#002999'), u_ch_color: ComplexColors = ('#ffb000', '#994A00'), m_ch_color: ComplexColors = ('#dc267f', '#760019'), s_ch_color: str = '#7da781', s_ch_linestyle: str = '-', table_color: SchedTableColors = ('#e0e0e0', '#f6f6f6', '#f6f6f6'), bg_color: str = '#f2f3f4', num_points: int = 1000, dpi: Optional[int] = 150, remove_spacing: bool = True, max_table_ratio: float = 0.5, vertical_span: float = 0.2, axis_formatter: str = '%s'): """Create new style sheet. For any of the Optional fields, if that field is None then it will revert to its matplotlib.rcParams counterpart. See for usage on rcParams. Each argument that is optonal also describes it's mapped rcParam key below. Args: figsize: Size of the figure. If ``None``, will default to the figure size of the drawing backend. If the output is ``matplotlib``, the default parameter is ``rcParams['figure.figsize']``. fig_unit_h_table: Height of row of event table. See Example. use_table: When set `True` use event table. table_columns: Number of event table columns. table_font_size: Font size of event table. axis_font_size: Font size of channel aliases. If ``None``, will revert to the axis label size of the drawing backend. If the output is ``matplotlib``, the default parameter is ``rcParams['axes.titlesize']``. label_font_size: Font size of labels in canvas. icon_font_size: Size of symbols. title_font_size: Font size of schedule name in title. If ``None``, will default to the title font size of the drawing backend. If the output is ``matplotlib``, the default parameter is ``rcParams['figure.titlesize']``. label_ch_linestyle: Line style for channel pulse label line. label_ch_color: Color code or name of color for channel pulse label line. label_ch_alpha: Transparency for channel pulse label line from 0 to 1. d_ch_color: Color code or name of colors for real and imaginary part of waveform at d channels. u_ch_color: Color code or name of colors for real and imaginary part of waveform at u channels. m_ch_color: Color code or name of colors for real and imaginary part of waveform at m channels. s_ch_color: Color code or name of color for snapshot channel line. s_ch_linestyle: Line style for snapshot line. table_color: Color code or name of color for event table columns of time, channel, event information. bg_color: Color code or name of color for canvas background. num_points: Number of points for interpolation of each channel. dpi: Resolution in the unit of dot per inch to save image. If ``None``, will revert to the DPI setting of the drawing backend. If the output is ``matplotlib``, the default parameter is ``rcParams['figure.dpi']``. remove_spacing: Remove redundant spacing when the waveform has no negative values. max_table_ratio: Maximum portion of the plot the table can take up. Limited to range between 0 and 1. vertical_span: Spacing on top and bottom of pulse canvas. axis_formatter: Format of horizontal axis of the plot. This is convenient when you set ``dt`` option for the drawer. For example, formatter of ``%.3e`` gives you horizontal axis values in the scientific notation with 3 digits. Example: Height of the event table is decided by multiple parameters.:: figsize = (10.0, 12.0) fig_unit_h_table = 0.4 table_columns = 2 max_table_ratio = 0.5 With this setup, events are shown in double-column style with each line height of 0.4 inch and the table cannot exceed 5 inch. Thus 12 lines are maximum and up to 24 events can be shown. If you want to show more events, increase figure height or reduce size of line height and table font size. """ self.figsize = figsize self.fig_unit_h_table = fig_unit_h_table self.use_table = use_table self.table_columns = table_columns self.table_font_size = table_font_size self.axis_font_size = axis_font_size self.label_font_size = label_font_size self.icon_font_size = icon_font_size self.title_font_size = title_font_size self.d_ch_color = d_ch_color self.label_ch_linestyle = label_ch_linestyle self.label_ch_color = label_ch_color self.label_ch_alpha = label_ch_alpha self.u_ch_color = u_ch_color self.m_ch_color = m_ch_color self.a_ch_color = m_ch_color self.s_ch_color = s_ch_color self.s_ch_linestyle = s_ch_linestyle self.table_color = table_color self.bg_color = bg_color self.num_points = num_points self.dpi = dpi self.remove_spacing = remove_spacing if max_table_ratio < 0.0 or max_table_ratio > 1.0: logger.warning('max_table_ratio of %.2f is not in range [0.0, 1.0], clamping...', max_table_ratio) self.max_table_ratio = max(min(max_table_ratio, 0.0), 1.0) self.vertical_span = vertical_span self.axis_formatter = axis_formatter
[documentos]class PulseStyle: """Style sheet for Qiskit-Pulse sample pulse drawer.""" def __init__(self, figsize: Optional[Tuple[float, float]] = (7.0, 5.0), title_font_size: Optional[int] = 18, wave_color: ComplexColors = ('#ff0000', '#0000ff'), bg_color: str = '#f2f3f4', num_points: int = 1000, dpi: Optional[int] = None): """Create new style sheet. For any of the Optional fields, if that field is None then it will revert to its matplotlib.rcParams counterpart. See for usage on rcParams. Each argument that is optonal also describes it's mapped rcParam key below. Args: figsize: Size of the figure. If ``None``, will default to the figure size of the drawing backend. If the output is ``matplotlib``, the default parameter is ``rcParams['figure.figsize']``. title_font_size: Font size of schedule name in title. If ``None``, will default to the title font size of the drawing backend. If the output is ``matplotlib``, the default parameter is ``rcParams['figure.titlesize']``. wave_color: Color code or name of colors for the real and imaginary parts of the waveform. bg_color: Color code or name of color for pulse canvas background. num_points: Number of points for interpolation. dpi: Resolution in the unit of dot per inch to save image. If ``None``, will revert to the DPI setting of the drawing backend. If the output is ``matplotlib``, the default parameter is ``rcParams['figure.dpi']``. """ self.figsize = figsize self.title_font_size = title_font_size self.wave_color = wave_color self.bg_color = bg_color self.num_points = num_points self.dpi = dpi

© Copyright 2020, Qiskit Development Team. Última atualização em 2021/06/04.

Built with Sphinx using a theme provided by Read the Docs.