|
370 | 370 |
|
371 | 371 | // all possible values
|
372 | 372 | python_vers: ["3.9", "3.10"],
|
373 |
| - cuda_vers: ["11.2", "11.8", "12.0"], |
374 |
| - pip_cuda_vers: ["11.2 - 11.8", "12.0"], |
| 373 | + cuda_vers: ["11.2", "11.8", "12.0", "12.2"], |
| 374 | + pip_cuda_vers: ["11.2 - 11.8", "12"], |
375 | 375 | methods: ["Conda", "pip", "Docker"],
|
376 | 376 | releases: ["Stable", "Nightly"],
|
377 | 377 | img_loc: ["NGC", "Dockerhub"],
|
|
627 | 627 | },
|
628 | 628 | getpipNotes() {
|
629 | 629 | var notes = [];
|
630 |
| - var install_location_notes = "<code>cuDF</code>, <code>dask-cuDF</code>, <code>cuML</code>, <code>cuGraph</code>, <code>cuSpatial</code>, <code>cuProj</code>, <code>cuxfilter</code>, <code>cuCIM</code>, and <code>RAFT</code> pip packages are hosted by NVIDIA<br>" |
| 630 | + var install_location_notes = "RAPIDS pip packages are hosted by NVIDIA<br>" |
631 | 631 | notes = [...notes, install_location_notes,
|
632 |
| - 'pip installation supports Python <code>3.9</code> and <code>3.10</code><br>']; |
| 632 | + 'pip installation supports only Python <code>3.9</code> and <code>3.10</code><br>']; |
633 | 633 |
|
634 | 634 | return notes.map(note => this.note_prefix + " " + note);
|
635 | 635 | },
|
|
668 | 668 | var isDisabled = false;
|
669 | 669 | if (this.active_additional_packages.includes("TensorFlow") && (cuda_version !== "12.0")) isDisabled = true;
|
670 | 670 | if (this.active_method === "Docker" && cuda_version < "11.8") isDisabled = true;
|
| 671 | + if (this.active_release != "Nightly" && cuda_version === "12.2") isDisabled = true; |
671 | 672 | return isDisabled;
|
672 | 673 | },
|
673 | 674 | disableUnsupportedPython(python_version) {
|
|
696 | 697 | },
|
697 | 698 | releaseClickHandler(e, release) {
|
698 | 699 | if (this.isDisabled(e.target)) return;
|
| 700 | + // Remove below after we support 12.2 in stable |
| 701 | + if (this.active_cuda_ver === "12.2" && release === "Stable") this.active_cuda_ver = "12.0"; |
699 | 702 | this.active_release = release;
|
700 | 703 | },
|
701 | 704 | imgTypeClickHandler(e, type) {
|
|
0 commit comments