Skip to content

Commit 655b7ab

Browse files
Merge pull request #1483 from IntelPython/fix/github-workflows
Switch workflows to not use intel channel. dc94b7e
1 parent f0d2890 commit 655b7ab

File tree

121 files changed

+1059
-2488
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+1059
-2488
lines changed

dev/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 7e7d291c7c33bca55f8b4545eed19556
3+
config: 61463d24c839241db27f6762ec16bd80
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

dev/_sources/getting_started.rst.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ to get the latest production releases.
2020
2121
conda create -n numba-dpex-env \
2222
numba-dpex dpnp dpctl dpcpp-llvm-spirv \
23-
-c intel -c conda-forge
23+
-c conda-forge
2424
2525
To try out the bleeding edge, the latest packages built from tip of the main
2626
source trunk can be installed from the ``dppy/label/dev`` conda channel.
@@ -29,7 +29,7 @@ source trunk can be installed from the ``dppy/label/dev`` conda channel.
2929
3030
conda create -n numba-dpex-env \
3131
numba-dpex dpnp dpctl dpcpp-llvm-spirv \
32-
-c dppy/label/dev -c intel -c conda-forge
32+
-c dppy/label/dev -c conda-forge
3333
3434
3535
@@ -53,7 +53,7 @@ Steps to build using ``conda-build``:
5353

5454
.. code-block:: bash
5555
56-
conda build conda-recipe -c intel -c conda-forge
56+
conda build conda-recipe -c conda-forge
5757
5858
3. Install the conda package
5959

@@ -71,7 +71,7 @@ first step.
7171
# Create a conda environment that hass needed dependencies installed
7272
conda create -n numba-dpex-env \
7373
scikit-build cmake dpctl dpnp numba dpcpp-llvm-spirv llvmdev pytest \
74-
-c intel -c conda-forge
74+
-c conda-forge
7575
# Activate the environment
7676
conda activate numba-dpex-env
7777
# Clone the numba-dpex repository

dev/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '0.23.0+14.ge80fdd070',
2+
VERSION: '0.23.0+16.gdc94b7e10',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

dev/_static/scripts/furo.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/_static/scripts/furo.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/_static/searchtools.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const Search = {
178178

179179
htmlToText: (htmlString, anchor) => {
180180
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
181-
for (const removalQuery of [".headerlinks", "script", "style"]) {
181+
for (const removalQuery of [".headerlink", "script", "style"]) {
182182
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
183183
}
184184
if (anchor) {
@@ -328,13 +328,14 @@ const Search = {
328328
for (const [title, foundTitles] of Object.entries(allTitles)) {
329329
if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
330330
for (const [file, id] of foundTitles) {
331-
let score = Math.round(100 * queryLower.length / title.length)
331+
const score = Math.round(Scorer.title * queryLower.length / title.length);
332+
const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
332333
normalResults.push([
333334
docNames[file],
334335
titles[file] !== title ? `${titles[file]} > ${title}` : title,
335336
id !== null ? "#" + id : "",
336337
null,
337-
score,
338+
score + boost,
338339
filenames[file],
339340
]);
340341
}

0 commit comments

Comments
 (0)