Skip to content

Commit

Permalink
remove conditional_jit from plot_forest label_idx
Browse files Browse the repository at this point in the history
  • Loading branch information
OriolAbril committed Mar 11, 2024
1 parent 82ea6e4 commit aece323
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions arviz/plots/backends/bokeh/forestplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from ....stats import hdi
from ....stats.density_utils import get_bins, histogram, kde
from ....stats.diagnostics import _ess, _rhat
from ....utils import conditional_jit
from ...plot_utils import _scale_fig_size
from .. import show_layout
from . import backend_kwarg_defaults
Expand Down Expand Up @@ -277,7 +276,6 @@ def labels_and_ticks(self):
"""Collect labels and ticks from plotters."""
val = self.plotters.values()

@conditional_jit(forceobj=True, nopython=False)
def label_idxs():
labels, idxs = [], []
for plotter in val:
Expand Down
2 changes: 0 additions & 2 deletions arviz/plots/backends/matplotlib/forestplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from ....stats.density_utils import get_bins, histogram, kde
from ....stats.diagnostics import _ess, _rhat
from ....sel_utils import xarray_var_iter
from ....utils import conditional_jit
from ...plot_utils import _scale_fig_size
from . import backend_kwarg_defaults, backend_show

Expand Down Expand Up @@ -236,7 +235,6 @@ def labels_and_ticks(self):
"""Collect labels and ticks from plotters."""
val = self.plotters.values()

@conditional_jit(forceobj=True, nopython=False)
def label_idxs():
labels, idxs = [], []
for plotter in val:
Expand Down

0 comments on commit aece323

Please sign in to comment.