q-optimize/c3

View on GitHub

Showing 160 of 330 total issues

Function create_experiment has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

def create_experiment():
    lindblad = False
    dressed = True
    qubit_lvls = 3
    freq = 5.001234e9
Severity: Minor
Found in examples/single_qubit_experiment.py - About 1 hr to fix

    Function __init__ has 13 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(
    Severity: Major
    Found in c3/optimizers/sensitivity.py - About 1 hr to fix

      Function __init__ has 13 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def __init__(
      Severity: Major
      Found in c3/optimizers/modellearning.py - About 1 hr to fix

        Function get_Lindbladian has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

            def get_Lindbladian(self, dims):
                """
                Compute the Lindbladian, based on relaxation, dephasing constants and finite temperature.
        
                Returns
        Severity: Minor
        Found in c3/libraries/chip.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function get_optimizable_parameters has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

            def get_optimizable_parameters(self):
                parameter_list = list()
                for chan in self.comps.keys():
                    for comp in self.comps[chan]:
                        for par_name, par_value in self.comps[chan][comp].params.items():
        Severity: Minor
        Found in c3/signal/gates.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function write_params has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

            def write_params(self, params, step=0):
                if not len(self.opt_map) == len(params):
                    raise Exception(
                        f"C3:Error: Different number of elements in opt_map and params. {len(self.opt_map)} vs {len(params)}"
                    )
        Severity: Minor
        Found in c3/optimizers/optimizer.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function cma_pre_lbfgs has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

        def cma_pre_lbfgs(x_init, fun=None, fun_grad=None, grad_lookup=None, options={}):
            """
            Performs a CMA-Es optimization and feeds the result into LBFG-S for further
            refinement.
        
        
        Severity: Minor
        Found in c3/libraries/algorithms.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function from_dict has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

            def from_dict(self, cfg, name=None):
                self.__init__(
                    name=_from_dict_get_name_back_compat(cfg, name),
                    targets=cfg["targets"] if "targets" in cfg else None,
                    params=cfg["params"] if "params" in cfg else None,
        Severity: Minor
        Found in c3/signal/gates.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function __init__ has 11 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def __init__(
        Severity: Major
        Found in c3/libraries/chip.py - About 1 hr to fix

          Function generate_signals has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              def generate_signals(self, instr: Instruction) -> dict:
                  """
                  Perform the signal chain for a specified instruction, including local
                  oscillator, AWG generation and IQ mixing.
          
          
          Severity: Minor
          Found in c3/generator/generator.py - About 1 hr to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function adaptive_scan has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          def adaptive_scan(x_init, fun=None, fun_grad=None, grad_lookup=None, options={}):
              """
              One dimensional scan of the function values around the initial point, using
              adaptive sampling
          
          
          Severity: Minor
          Found in c3/libraries/algorithms.py - About 1 hr to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function __init__ has 10 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(
          Severity: Major
          Found in c3/libraries/chip.py - About 1 hr to fix

            Function process has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                def process(self, instr, chan, signal: List[Dict[str, Any]]) -> Dict[str, Any]:
                    """Distort signal by adding noise."""
                    noise_amp = self.params["noise_amp"].get_value()
                    out_signal = {"ts": signal[0]["ts"]}
                    for k, sig in signal[0].items():
            Severity: Minor
            Found in c3/generator/devices.py - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function _compute_folding_stack has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                def _compute_folding_stack(self):
                    self.folding_stack = {}
                    for instr in self.pmap.instructions.values():
                        n_steps = int((instr.t_end - instr.t_start) * self.sim_res)
                        if n_steps not in self.folding_stack:
            Severity: Minor
            Found in c3/experiment.py - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function __init__ has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                def __init__(
                    self,
                    name: str,
                    desc: str = None,
                    comment: str = None,
            Severity: Minor
            Found in c3/libraries/chip.py - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function goal_run has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                def goal_run(self, current_params: tf.constant) -> tf.float64:
                    """
                    Evaluate the figure of merit for the current model parameters.
            
                    Parameters
            Severity: Minor
            Found in c3/optimizers/modellearning.py - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function goal_run_with_grad has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                def goal_run_with_grad(self, current_params):
                    """
                    Same as goal_run but with gradient. Very resource intensive. Unoptimized at the
                    moment.
                    """
            Severity: Minor
            Found in c3/optimizers/modellearning.py - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function __init__ has 9 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def __init__(
            Severity: Major
            Found in c3/optimizers/calibration.py - About 1 hr to fix

              Function str_parameters has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                  def str_parameters(
                      self,
                      opt_map: Union[List[List[Tuple[str]]], List[List[str]]] = None,
                      human=False,
                  ) -> str:
              Severity: Minor
              Found in c3/parametermap.py - About 1 hr to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function check_limits has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                  def check_limits(self, opt_map):
                      """
                      Check if all elements of equal ids have the same limits. This has to be checked against if setting values optimizer friendly.
              
                      Parameters
              Severity: Minor
              Found in c3/parametermap.py - About 1 hr to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Severity
              Category
              Status
              Source
              Language