feat(noisy_count): Implement noisy_count_gaussian(col, noise_scale, r… #5319
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) Facebook, Inc. and its affiliates. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Update Documentation | |
on: | |
push: | |
paths: | |
- velox/docs/** | |
- .github/workflows/docs.yml | |
pull_request: | |
paths: | |
- velox/docs/** | |
- .github/workflows/docs.yml | |
permissions: | |
contents: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.repository }}-${{ github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
build_docs: | |
name: Build and Push | |
runs-on: 8-core-ubuntu | |
container: ghcr.io/facebookincubator/velox-dev:centos9 | |
env: | |
CCACHE_DIR: /tmp/ccache | |
steps: | |
- name: Restore ccache | |
if: false | |
uses: apache/infrastructure-actions/stash/restore@3354c1565d4b0e335b78a76aedd82153a9e144d4 | |
id: restore-cache | |
with: | |
path: ${{ env.CCACHE_DIR }} | |
key: ccache-wheels-8-core-ubuntu | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
persist-credentials: true | |
- name: Install System Dependencies | |
run: | | |
dnf install -y --setopt=install_weak_deps=False pandoc | |
pip3 install pipx | |
pipx install --force uv cmake==3.31 | |
echo "PATH=$PATH:/github/home/.local/bin" >> $GITHUB_ENV | |
- name: Install Python Dependencies | |
run: | | |
which uv | |
make python-venv | |
which uv | |
uv pip install -r scripts/docs-requirements.txt | |
# Install pyvelox to generate it's docs | |
make python-build | |
- name: Save ccache | |
uses: apache/infrastructure-actions/stash/save@3354c1565d4b0e335b78a76aedd82153a9e144d4 | |
with: | |
path: ${{ env.CCACHE_DIR }} | |
key: ccache-wheels-8-core-ubuntu | |
- name: Build Documentation | |
run: | | |
source .venv/bin/activate | |
cd velox/docs | |
make clean | |
# pyvelox | |
mkdir -p bindings/python | |
pandoc ../../python/README.md --from markdown --to rst -s -o bindings/python/README_generated_pyvelox.rst | |
# velox | |
make html | |
- name: Setup Git User | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "velox" | |
git config --global --add safe.directory ${GITHUB_WORKSPACE} | |
- name: Push Documentation | |
if: ${{ github.event_name == 'push' && github.repository == 'facebookincubator/velox'}} | |
run: | | |
git checkout gh-pages | |
cp -R velox/docs/_build/html/* docs | |
git add docs | |
if [ -n "$(git status --porcelain --untracked-files=no)" ] | |
then | |
git commit -m "Update documentation" | |
git push | |
fi | |
- name: Upload Documentation | |
if: github.event_name == 'pull_request' | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | |
with: | |
path: velox/docs/_build/html | |
retention-days: 3 |