Skip to content

Commit 14a2fb9

Browse files
committed
New data collected at 2025-06-16_00-02-33
1 parent d6355b6 commit 14a2fb9

9 files changed

Lines changed: 178 additions & 13 deletions

File tree

github-actions/mlflow/master.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -317,16 +317,10 @@ jobs:
317317
- name: Install dependencies
318318
run: |
319319
source ./dev/install-common-deps.sh
320-
# GenAI evaluation tests require databricks-agents that only work with Python >= 3.10
321-
pip install 'databricks-agents<0.22.0' openai dspy
320+
pip install databricks-agents openai dspy
322321
- uses: ./.github/actions/show-versions
323322
- name: Run GenAI Tests
324323
run: |
325-
# GenAI evaluation tests require databricks-agents that only work with Python 3.10~
326-
pip install openai
327-
# Install databricks-agents from a pre-release wheel because the latest released version
328-
# is not compatible with MLflow master. Using --no-deps because it pings mlflow to 3.0.0rc2.
329-
pip install https://ml-team-public-read.s3.us-west-2.amazonaws.com/wheels/databricks-agents/mlflow/databricks_agents-1.0.0rc3-py3-none-any.whl --no-deps
330324
pytest tests/genai --ignore tests/genai/test_genai_import_without_agent_sdk.py
331325
332326
- name: Run Tests with Local Spark Session

github-actions/osmdata/rhub.yaml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# R-hub's generic GitHub Actions workflow file. It's canonical location is at
2+
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml
3+
# You can update this file to a newer version using the rhub2 package:
4+
#
5+
# rhub::rhub_setup()
6+
#
7+
# It is unlikely that you need to modify this file manually.
8+
9+
name: R-hub
10+
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}"
11+
12+
on:
13+
workflow_dispatch:
14+
inputs:
15+
config:
16+
description: 'A comma separated list of R-hub platforms to use.'
17+
type: string
18+
default: 'linux,windows,macos'
19+
name:
20+
description: 'Run name. You can leave this empty now.'
21+
type: string
22+
id:
23+
description: 'Unique ID. You can leave this empty now.'
24+
type: string
25+
26+
jobs:
27+
28+
setup:
29+
runs-on: ubuntu-latest
30+
outputs:
31+
containers: ${{ steps.rhub-setup.outputs.containers }}
32+
platforms: ${{ steps.rhub-setup.outputs.platforms }}
33+
34+
steps:
35+
# NO NEED TO CHECKOUT HERE
36+
- uses: r-hub/actions/setup@v1
37+
with:
38+
config: ${{ github.event.inputs.config }}
39+
id: rhub-setup
40+
41+
linux-containers:
42+
needs: setup
43+
if: ${{ needs.setup.outputs.containers != '[]' }}
44+
runs-on: ubuntu-latest
45+
name: ${{ matrix.config.label }}
46+
strategy:
47+
fail-fast: false
48+
matrix:
49+
config: ${{ fromJson(needs.setup.outputs.containers) }}
50+
container:
51+
image: ${{ matrix.config.container }}
52+
53+
steps:
54+
- uses: r-hub/actions/checkout@v1
55+
- uses: r-hub/actions/platform-info@v1
56+
with:
57+
token: ${{ secrets.RHUB_TOKEN }}
58+
job-config: ${{ matrix.config.job-config }}
59+
- uses: r-hub/actions/setup-deps@v1
60+
with:
61+
token: ${{ secrets.RHUB_TOKEN }}
62+
job-config: ${{ matrix.config.job-config }}
63+
- uses: r-hub/actions/run-check@v1
64+
with:
65+
token: ${{ secrets.RHUB_TOKEN }}
66+
job-config: ${{ matrix.config.job-config }}
67+
68+
other-platforms:
69+
needs: setup
70+
if: ${{ needs.setup.outputs.platforms != '[]' }}
71+
runs-on: ${{ matrix.config.os }}
72+
name: ${{ matrix.config.label }}
73+
strategy:
74+
fail-fast: false
75+
matrix:
76+
config: ${{ fromJson(needs.setup.outputs.platforms) }}
77+
78+
steps:
79+
- uses: r-hub/actions/checkout@v1
80+
- uses: r-hub/actions/setup-r@v1
81+
with:
82+
job-config: ${{ matrix.config.job-config }}
83+
token: ${{ secrets.RHUB_TOKEN }}
84+
- uses: r-hub/actions/platform-info@v1
85+
with:
86+
token: ${{ secrets.RHUB_TOKEN }}
87+
job-config: ${{ matrix.config.job-config }}
88+
- uses: r-hub/actions/setup-deps@v1
89+
with:
90+
job-config: ${{ matrix.config.job-config }}
91+
token: ${{ secrets.RHUB_TOKEN }}
92+
- uses: r-hub/actions/run-check@v1
93+
with:
94+
job-config: ${{ matrix.config.job-config }}
95+
token: ${{ secrets.RHUB_TOKEN }}
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
name: benchmarks
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
push:
6+
branches: [master]
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.job }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
defaults:
11+
run:
12+
shell: bash -e -l {0}
13+
jobs:
14+
build:
15+
runs-on: ubuntu-24.04
16+
name: ${{ matrix.sys.compiler }} ${{ matrix.sys.version }} - ${{ matrix.sys.name }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
sys:
21+
- {compiler: clang, version: '20', name: xsimd, flags: -DXTENSOR_USE_XSIMD=ON}
22+
- {compiler: clang, version: '20', name: xsimd-tbb, flags: -DXTENSOR_USE_XSIMD=ON -DXTENSOR_USE_TBB=ON}
23+
- {compiler: gcc, version: '14', name: xsimd, flags: -DXTENSOR_USE_XSIMD=ON}
24+
- {compiler: gcc, version: '14', name: xsimd-tbb, flags: -DXTENSOR_USE_XSIMD=ON -DXTENSOR_USE_TBB=ON}
25+
26+
steps:
27+
- name: Install GCC
28+
if: matrix.sys.compiler == 'gcc'
29+
uses: egor-tensin/setup-gcc@v1
30+
with:
31+
version: ${{matrix.sys.version}}
32+
platform: x64
33+
34+
- name: Install LLVM and Clang
35+
if: matrix.sys.compiler == 'clang'
36+
run: |
37+
wget https://apt.llvm.org/llvm.sh
38+
chmod +x llvm.sh
39+
sudo ./llvm.sh ${{matrix.sys.version}}
40+
sudo apt-get install -y clang-tools-${{matrix.sys.version}}
41+
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{matrix.sys.version}} 200
42+
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{matrix.sys.version}} 200
43+
sudo update-alternatives --install /usr/bin/clang-scan-deps clang-scan-deps /usr/bin/clang-scan-deps-${{matrix.sys.version}} 200
44+
sudo update-alternatives --set clang /usr/bin/clang-${{matrix.sys.version}}
45+
sudo update-alternatives --set clang++ /usr/bin/clang++-${{matrix.sys.version}}
46+
sudo update-alternatives --set clang-scan-deps /usr/bin/clang-scan-deps-${{matrix.sys.version}}
47+
48+
- name: Checkout code
49+
uses: actions/checkout@v3
50+
51+
- name: Set conda environment
52+
uses: mamba-org/setup-micromamba@main
53+
with:
54+
environment-name: myenv
55+
environment-file: environment-dev.yml
56+
init-shell: bash
57+
cache-downloads: true
58+
create-args: |
59+
${{ (matrix.sys.name == 'tbb' || matrix.sys.name == 'xsimd-tbb' ) && 'tbb-devel' || '' }}
60+
61+
- name: Configure using CMake
62+
run: |
63+
if [[ "${{matrix.sys.compiler}}" = "gcc" ]]; then export CC=gcc-${{matrix.sys.version}}; export CXX=g++-${{matrix.sys.version}}; else export CC=clang; export CXX=clang++; fi
64+
cmake -G Ninja -Bbuild -DCMAKE_C_COMPILER=$CC -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DBUILD_BENCHMARK=ON ${{ matrix.sys.flags }}
65+
66+
- name: Build
67+
working-directory: build
68+
run: cmake --build . --target benchmark_xtensor --parallel 8
69+
70+
- name: Run benchmark
71+
timeout-minutes: 10 # Consider increasing timeout
72+
working-directory: build/benchmark
73+
run: ./benchmark_xtensor

make/mlflow-Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BUILDDIR = build
99

1010
# User-friendly check for sphinx-build
1111
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12-
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don\'t have Sphinx installed, grab it from http://sphinx-doc.org/)
12+
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don\'t have Sphinx installed, grab it from http://sphinx-doc.org/)
1313
endif
1414

1515
# Internal variables.
@@ -104,7 +104,7 @@ livehtml:
104104
# Remove `--keep-going` option because `sphinx-autobuild` doesn't support it and raises an error.
105105
# See: https://github.com/executablebooks/sphinx-autobuild/blob/master/src/sphinx_autobuild/build.py#L7
106106
sphinx-autobuild -b html $(shell echo $(ALLSPHINXOPTS) | sed -e "s/--keep-going//g") $(BUILDDIR)/html
107-
107+
108108
.PHONY: pickle
109109
pickle:
110110
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle

pkgdown/ggplot2_pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ reference:
5151
contents:
5252
- ggplot
5353
- aes
54-
- "`+.gg`"
54+
- add_gg
5555
- ggsave
5656
- qplot
5757

pkgdown/osmdata_pkgdown.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ templates:
55
bootswatch: cerulean
66

77
reference:
8-
- title: Package doc and class
8+
- title: Package classes
99
contents:
10-
- has_concept("package")
10+
- has_concept("class")
1111
- title: Overpass server
1212
contents:
1313
- has_concept("overpass")

pkgdown/purrr_pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ reference:
115115
- array_tree
116116
- rate-helpers
117117
- progress_bars
118-
- parallelization
118+
- in_parallel

rbuildignore/osmdata.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
^README\.Rmd$
66
^README\.html$
77
^\.Rproj\.user$
8+
^\.ccls-cache$
89
^\.github$
910
^\.pre-commit-config\.yaml$
1011
^\.travis\.yml$
@@ -22,6 +23,7 @@
2223
^src/Makevars$
2324
^src/Makevars.in$
2425
^tests/timing-benchmark.R$
26+
^tests/valgrind-test.R$
2527
data-raw/
2628
hooks/
2729
makefile$

rproj/cowplot.Rproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Version: 1.0
2+
ProjectId: c8449121-eb8c-409e-8127-fb47040cefcb
23

34
RestoreWorkspace: Default
45
SaveWorkspace: Default

0 commit comments

Comments
 (0)