forked from NVIDIA/NVFlare
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'NVIDIA:main' into test_premerge
- Loading branch information
Showing
3,467 changed files
with
416,912 additions
and
41,529 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
title: "[Q&A] " | ||
labels: ["q&a"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please fill out the form so the community can better assist you! | ||
- type: input | ||
attributes: | ||
label: Python version (`python3 -V`) | ||
description: Python version (`python3 -V`) | ||
placeholder: "3.10" | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: NVFlare version (`python3 -m pip list | grep "nvflare"`) | ||
description: NVFlare version (`python3 -m pip list | grep "nvflare"`) | ||
placeholder: "2.5.0" | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: NVFlare branch (if running examples, please use the branch that corresponds to the NVFlare version, `git branch`) | ||
description: NVFlare branch (if running examples, please use the branch that corresponds to the NVFlare version, `git branch`) | ||
placeholder: "2.5" | ||
- type: input | ||
attributes: | ||
label: Operating system | ||
description: Operating system (Ubuntu, MacOS, Windows, etc) | ||
placeholder: "Ubuntu 22.04" | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Have you successfully run any of the following examples? | ||
options: | ||
- label: hello-numpy-sag with simulator | ||
- label: hello-pt with simulator | ||
- label: hello-numpy-sag with POC | ||
- label: hello-pt with POC | ||
- type: textarea | ||
id: questions | ||
attributes: | ||
label: Please describe your question | ||
description: "Please describe your question. It would be better if you can attach some logs." | ||
value: | | ||
I run into the following issue and don't know what to do ... | ||
validations: | ||
required: true |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
name: Question (please use the Discussion tab) | ||
about: https://github.com/NVIDIA/NVFlare/discussions | ||
title: 'Please use NVFlare Discussion tab for questions' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Please use NVFlare's Discussions tab** | ||
For questions relating to NVFlare usage, please do not create an issue. | ||
|
||
Instead, use [NVFlare's GitHub Discussions tab](https://github.com/NVIDIA/NVFlare/discussions). This can be found next to Issues and Pull Requests along the top of our repository. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Fixes # . | ||
|
||
### Description | ||
|
||
A few sentences describing the changes proposed in this pull request. | ||
|
||
### Types of changes | ||
<!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> | ||
- [x] Non-breaking change (fix or new feature that would not break existing functionality). | ||
- [ ] Breaking change (fix or new feature that would cause existing functionality to change). | ||
- [ ] New tests added to cover the changes. | ||
- [ ] Quick tests passed locally by running `./runtest.sh`. | ||
- [ ] In-line docstrings updated. | ||
- [ ] Documentation updated. |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Deploy to gh-pages | ||
|
||
on: | ||
# Trigger the workflow if any web/** files are modified | ||
push: | ||
branches: | ||
- "main" | ||
- "2.5" | ||
paths: | ||
- 'web/**' | ||
workflow_dispatch: | ||
|
||
env: | ||
site_path: ./web | ||
version_path: / | ||
|
||
# Allow this job to clone the repo and create a page deployment | ||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Update version_path for non-main branches | ||
if: ${{ github.ref_type == 'branch' && github.ref_name != 'main'}} | ||
run: echo version_path=/version/${{ github.ref_name }}/ >> $GITHUB_ENV | ||
|
||
- name: Checkout your repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: npm | ||
cache-dependency-path: "${{ env.site_path }}/package-lock.json" | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
working-directory: ${{ env.site_path }} | ||
|
||
- name: Build project | ||
run: npm run build | ||
env: | ||
PUBLIC_GH_BRANCH: ${{ github.ref_name }} | ||
working-directory: ${{ env.site_path }} | ||
|
||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: ${{ env.site_path }}/dist | ||
target-folder: ${{ env.version_path }} | ||
clean-exclude: version |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright (c) 2023, NVIDIA CORPORATION. | ||
# | ||
# 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. | ||
|
||
# A workflow to check if PR got broken hyperlinks | ||
name: Check Markdown links | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: gaurav-nelson/[email protected] | ||
with: | ||
max-depth: -1 | ||
use-verbose-mode: 'yes' | ||
config-file: '.github/workflows/mlc_config.json' | ||
check-modified-files-only: 'yes' | ||
base-branch: 'main' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"ignorePatterns": [ | ||
{ | ||
"pattern": "catalog.ngc.nvidia.com" | ||
} | ||
] | ||
} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "integration/xgboost/encryption_plugins/cuda_plugin/CGBN"] | ||
path = integration/xgboost/encryption_plugins/cuda_plugin/CGBN | ||
url = https://github.com/NVlabs/CGBN.git |
Oops, something went wrong.