From 1f1dc53307bc5f0bc194c35c4d34ba4247ee4250 Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Mon, 22 Jun 2026 18:49:38 +0000 Subject: [PATCH 01/14] 8307: Adding chormadb v1.5.9 to the build scripts --- .../build_info-checkpoint.json | 24 ++++ c/chromadb/build_info.json | 15 ++- c/chromadb/chromadb_1.5.9_ubi_9.6.sh | 106 ++++++++++++++++++ 3 files changed, 141 insertions(+), 4 deletions(-) create mode 100644 c/chromadb/.ipynb_checkpoints/build_info-checkpoint.json create mode 100755 c/chromadb/chromadb_1.5.9_ubi_9.6.sh diff --git a/c/chromadb/.ipynb_checkpoints/build_info-checkpoint.json b/c/chromadb/.ipynb_checkpoints/build_info-checkpoint.json new file mode 100644 index 0000000000..f0aae86dc8 --- /dev/null +++ b/c/chromadb/.ipynb_checkpoints/build_info-checkpoint.json @@ -0,0 +1,24 @@ +{ + "maintainer": "afsanjar", + "package_name": "chromadb", + "github_url": "https://github.com/chroma-core/chroma.git", + "version": "1.5.9", + "wheel_build" : true, + "package_dir": "c/chromadb", + "default_branch": "main", + "build_script": "chromadb_1.5.9_ubi_9.6.sh", + "docker_build": false, + "validate_build_script": true, + "use_non_root_user": "false", + "wheel_build" : true, + "1.0.20": { + "build_script": "chromadb_1.0.20_ubi_9.6.sh" + }, + "1.5.9": { + "build_script": "chromadb_1.5.9_ubi_9.6.sh" + }, + "*": { + "build_script": "chromadb_1.5.9_ubi_9.6.sh" + } + +} diff --git a/c/chromadb/build_info.json b/c/chromadb/build_info.json index de20b7a208..f0aae86dc8 100644 --- a/c/chromadb/build_info.json +++ b/c/chromadb/build_info.json @@ -1,17 +1,24 @@ { - "maintainer": "Salil4IBM", + "maintainer": "afsanjar", "package_name": "chromadb", "github_url": "https://github.com/chroma-core/chroma.git", - "version": "1.0.20", + "version": "1.5.9", "wheel_build" : true, "package_dir": "c/chromadb", "default_branch": "main", - "build_script": "chromadb_1.0.20_ubi_9.6.sh", + "build_script": "chromadb_1.5.9_ubi_9.6.sh", "docker_build": false, "validate_build_script": true, "use_non_root_user": "false", "wheel_build" : true, + "1.0.20": { + "build_script": "chromadb_1.0.20_ubi_9.6.sh" + }, + "1.5.9": { + "build_script": "chromadb_1.5.9_ubi_9.6.sh" + }, "*": { - "build_script": "chromadb_1.0.20_ubi_9.6.sh" + "build_script": "chromadb_1.5.9_ubi_9.6.sh" } + } diff --git a/c/chromadb/chromadb_1.5.9_ubi_9.6.sh b/c/chromadb/chromadb_1.5.9_ubi_9.6.sh new file mode 100755 index 0000000000..99a0cb79da --- /dev/null +++ b/c/chromadb/chromadb_1.5.9_ubi_9.6.sh @@ -0,0 +1,106 @@ +#!/bin/bash -e +# ----------------------------------------------------------------------------- +# +# Package : chromadb +# Version : 1.5.9 +# Source repo : https://github.com/chroma-core/chroma +# Tested on : UBI:9.6 +# Language : Python +# Ci-Check : True +# Script License: Apache 2.0 license +# Maintainer : Amir Sanjar +# +# Disclaimer: This script has been tested in root mode on given +# ========== platform using the mentioned version of the package. +# It may not work as expected with newer versions of the +# package and/or distribution. In such case, please +# contact "Maintainer" of this script. +# +# ---------------------------------------------------------------------------- +set -e +PACKAGE_DIR=chroma +PACKAGE_NAME=chromadb +PACKAGE_VERSION=${1:-1.5.9} +PACKAGE_URL=https://github.com/chroma-core/chroma.git +WORKDIR=$(pwd) +SCRIPT_PATH=$(dirname $(realpath $0)) + +PROTOC_VERSION=31.1 + +# Install dependencies. +dnf -y install gcc g++ cmake autoconf unzip make git python3.12 python3.12-pip python3.12-devel +curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable +dnf clean metadata + +export PATH="/root/.cargo/bin:$PATH" + +PROTOC_ZIP=protoc-${PROTOC_VERSION}-linux-ppcle_64.zip +curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/$PROTOC_ZIP +unzip -o $PROTOC_ZIP -d /usr/local bin/protoc +unzip -o $PROTOC_ZIP -d /usr/local 'include/*' +rm -f $PROTOC_ZIP +chmod +x /usr/local/bin/protoc && \ +protoc --version # Verify installed version + +python3.12 -m pip install --upgrade maturin cffi patchelf setuptools wheel build + +cd $WORKDIR + +# Clone the chroma source +git clone --recursive ${PACKAGE_URL} +cd ${PACKAGE_DIR} +git checkout ${PACKAGE_VERSION} +git submodule update --init --recursive +# Apply patch +sed -i 's/^dynamic = \["version"\]/version = "'"$PACKAGE_VERSION"'"/' pyproject.toml +sed -i 's/, features = \["abi3-py39"\]/ /' Cargo.toml + +# Install the chromadb requirements. +python3.12 -m pip install -r requirements.txt --prefer-binary --extra-index-url https://wheels.developerfirst.ibm.com/ppc64le/linux + +cargo update generator +# Build and install chromadb +if ! python3.12 -m pip install .; then + echo "------------------$PACKAGE_NAME:build_install_fails---------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_VERSION | $OS_NAME | GitHub | Fail | Build_Fails" + exit 1 +else + echo "------------------$PACKAGE_NAME:build_install_success-------------------------" + echo "$PACKAGE_VERSION $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_VERSION | $OS_NAME | GitHub | Pass | Build_Success" +fi + +cd $WORKDIR + +# Test wheel after installation + +# Install OpenBLAS library and sqlite3 library files +dnf install openblas-devel wget -y + +# Build and install the required sqlite2 library +wget https://www.sqlite.org/src/tarball/sqlite.tar.gz?r=release -O sqlite.tar.gz +tar xzf sqlite.tar.gz +cd sqlite/ +./configure +make sqlite3.c +cd .. +git clone https://github.com/coleifer/pysqlite3.git +cp sqlite/sqlite3.[ch] pysqlite3/ +cd pysqlite3 +python3.12 setup.py build +rm -f /usr/lib64/libsqlite3.so.0 +ln -s $WORKDIR/pysqlite3/build/lib.linux-ppc64le-cpython-312/pysqlite3/_sqlite3.cpython-312-powerpc64le-linux-gnu.so /usr/lib64/libsqlite3.so.0 + +python3.12 -c "import chromadb; print(chromadb.__version__)" +if [ $? == 0 ]; then + echo "------------------$PACKAGE_NAME::Test_Success---------------------" + echo "$PACKAGE_VERSION $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | Pass | Test_Success" + exit 0 +else + echo "------------------$PACKAGE_NAME::Test_Fail-------------------------" + echo "$PACKAGE_VERSION $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | Fail | Test_Fail" + exit 2 +fi From 6c15d0f01dc4a2c7c6b789e1d1b3d06dbab7238c Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Mon, 22 Jun 2026 18:52:43 +0000 Subject: [PATCH 02/14] cleanup --- .../build_info-checkpoint.json | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 c/chromadb/.ipynb_checkpoints/build_info-checkpoint.json diff --git a/c/chromadb/.ipynb_checkpoints/build_info-checkpoint.json b/c/chromadb/.ipynb_checkpoints/build_info-checkpoint.json deleted file mode 100644 index f0aae86dc8..0000000000 --- a/c/chromadb/.ipynb_checkpoints/build_info-checkpoint.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "maintainer": "afsanjar", - "package_name": "chromadb", - "github_url": "https://github.com/chroma-core/chroma.git", - "version": "1.5.9", - "wheel_build" : true, - "package_dir": "c/chromadb", - "default_branch": "main", - "build_script": "chromadb_1.5.9_ubi_9.6.sh", - "docker_build": false, - "validate_build_script": true, - "use_non_root_user": "false", - "wheel_build" : true, - "1.0.20": { - "build_script": "chromadb_1.0.20_ubi_9.6.sh" - }, - "1.5.9": { - "build_script": "chromadb_1.5.9_ubi_9.6.sh" - }, - "*": { - "build_script": "chromadb_1.5.9_ubi_9.6.sh" - } - -} From 570d6bd196675f037d2386fb49c764ccadc63fd5 Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Tue, 23 Jun 2026 04:06:38 +0000 Subject: [PATCH 03/14] fix build_info.json --- c/chromadb/build_info.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/c/chromadb/build_info.json b/c/chromadb/build_info.json index f0aae86dc8..889f5033f5 100644 --- a/c/chromadb/build_info.json +++ b/c/chromadb/build_info.json @@ -10,7 +10,6 @@ "docker_build": false, "validate_build_script": true, "use_non_root_user": "false", - "wheel_build" : true, "1.0.20": { "build_script": "chromadb_1.0.20_ubi_9.6.sh" }, @@ -19,6 +18,5 @@ }, "*": { "build_script": "chromadb_1.5.9_ubi_9.6.sh" - } - + } } From da916eebfd7a979290ac8d53a7072ff6b101ae95 Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Tue, 23 Jun 2026 04:10:16 +0000 Subject: [PATCH 04/14] fix build_info.json --- c/chromadb/build_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/chromadb/build_info.json b/c/chromadb/build_info.json index 889f5033f5..9cf91ded1a 100644 --- a/c/chromadb/build_info.json +++ b/c/chromadb/build_info.json @@ -18,5 +18,5 @@ }, "*": { "build_script": "chromadb_1.5.9_ubi_9.6.sh" - } + } } From 8b33904017abe3241d1aa96e842a81f0b73406d4 Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Sun, 19 Jul 2026 03:51:30 +0000 Subject: [PATCH 05/14] add build script faiss-cpu v 1.9.0-post1 --- f/faiss/app.py | 61 ++++++++++++++++++++++++ f/faiss/faiss_cpu_1.9.0.post1_ubi.sh | 69 ++++++++++++++++++++++++++++ 2 files changed, 130 insertions(+) create mode 100644 f/faiss/app.py create mode 100755 f/faiss/faiss_cpu_1.9.0.post1_ubi.sh diff --git a/f/faiss/app.py b/f/faiss/app.py new file mode 100644 index 0000000000..4f47a635c3 --- /dev/null +++ b/f/faiss/app.py @@ -0,0 +1,61 @@ +import faiss +import numpy as np +from sentence_transformers import SentenceTransformer + +# 1. Initialize the embedding model (converts text to 384-dimensional vectors) +print("Loading text embedding model...") +model = SentenceTransformer("all-MiniLM-L6-v2") + +# 2. Define your knowledge base / document inventory +documents = [ + "Python is a versatile programming language used for AI and web development.", + "The golden retriever puppy barked excitedly at the red ball.", + "Global stock markets experienced a minor downturn early this morning.", + "To bake a perfect chocolate cake, ensure your eggs are room temperature.", + "Machine learning models rely heavily on high-quality training datasets.", + "The local cafe serves incredible espresso and fresh croissants every day.", +] + +# 3. Generate embeddings and convert them to float32 NumPy arrays (required by FAISS) +print("Generating document embeddings...") +doc_embeddings = model.encode(documents) +doc_embeddings = np.array(doc_embeddings).astype("float32") + +# 4. Initialize the FAISS index using basic L2 (Euclidean) distance +# The 'dimension' parameter must match the output size of the embedding model (384) +dimension = doc_embeddings.shape[1] +index = faiss.IndexFlatL2(dimension) + +# 5. Populate the index with the document vectors +index.add(doc_embeddings) +print(f"Successfully indexed {index.ntotal} documents.\n") + + +# 6. Define a reusable function to search the index +def search_knowledge_base(query_text: str, top_k: int = 2): + # Encode the user's query into the exact same vector space + query_embedding = model.encode([query_text]) + query_embedding = np.array(query_embedding).astype("float32") + + # Perform the vector search + # distances: L2 distance scores (lower scores = closer match) + # indices: The corresponding numerical position of the matched item + distances, indices = index.search(query_embedding, top_k) + + print(f'🔍 Query: "{query_text}"') + print("-" * 50) + for i in range(top_k): + match_idx = indices[0][i] + distance_score = distances[0][i] + # Ignore fallback indices (-1) if top_k exceeds dataset size + if match_idx != -1: + print(f"Match #{i+1} (Distance: {distance_score:.4f}):") + print(f" -> {documents[match_idx]}") + print("\n") + + +# 7. Run real test cases showing semantic understanding (not just keyword matching) +search_knowledge_base("Tell me about software engineering or artificial intelligence", top_k=2) +search_knowledge_base("I want some delicious morning breakfast and coffee", top_k=1) +search_knowledge_base("Is the economy doing well today?", top_k=1) + diff --git a/f/faiss/faiss_cpu_1.9.0.post1_ubi.sh b/f/faiss/faiss_cpu_1.9.0.post1_ubi.sh new file mode 100755 index 0000000000..5dc2c3f0e8 --- /dev/null +++ b/f/faiss/faiss_cpu_1.9.0.post1_ubi.sh @@ -0,0 +1,69 @@ +#!/bin/bash +# ----------------------------------------------------------------------------- +# +# Package : faiss +# Version : 1.9.0-post1 +# Source repo : https://github.com/faiss-wheels/faiss-wheels +# Tested on : RHEL 9.6 +# Language : C++, Python +# Ci-Check : True +# Script License : Apache License Version 2.0 +# Maintainer : Amir Sanjar +# +# Disclaimer: This script has been tested in root mode on the given +# ========== platform using the mentioned version of the package. +# It may not work as expected with newer versions of the +# package and/or distribution. In such cases, please +# contact the "Maintainer" of this script. +# + +# set -e + +PACKAGE_NAME=faiss-cpu +PACKAGE_DIR=faiss-wheels +PACKAGE_VERSION=${1:-1.9.0.post1} +PACKAGE_URL=https://github.com/faiss-wheels/faiss-wheels.git + + +echo "Installing dependencies..." +curl -O https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm +dnf install -y epel-release-latest-9.noarch.rpm +dnf update -y +dnf install -y \ + python3.13 python3.13-devel python3.13-pip \ + openblas-devel make gcc g++ cmake git automake autoconf #libtool pcre2-devel ninja-build + +#yum install -y https://rpmfind.net/linux/centos-stream/9-stream/AppStream/ppc64le/os/Packages/bison-3.7.4-5.el9.ppc64le.rpm + +echo "Upgrading Python tools..." +python3.13 -m pip install --upgrade setuptools wheel build uv + +git clone --recursive ${PACKAGE_URL} +cd ${PACKAGE_DIR} +echo -e "\n[tool.uv]\nenvironments = [\"python_version == '3.13'\"]" >> pyproject.toml +uv python pin 3.13 +sed -i "s/.version=.*/version='"$PACKAGE_VERSION"',/" third-party/faiss/faiss/python/setup.py +export INDEX_URL_DEVPY="https://wheels.developerfirst.ibm.com/ppc64le/linux/+simple" +#rm uv.lock; uv version $PACKAGE_VERSION --extra-index-url $INDEX_URL_DEVPY +sed -i '/^\[project\]/,/^$/ {s/version = "[^"]*"/version = "'"$PACKAGE_VERSION"'"/}' pyproject.toml +CP=$(python3.13 -c "import sysconfig; print(sysconfig.get_config_var('py_version_nodot'))") +uv build --wheel --config-setting wheel.py-api=cp$CP --extra-index-url $INDEX_URL_DEVPY + +if ! (python3.13 -m pip install dist/faiss_cpu-$PACKAGE_VERSION-cp$CP-abi3-linux_ppc64le.whl ); then + echo "------------------$PACKAGE_NAME:Failed to build wheel-------------------------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_Fails" +fi +# Run tests +python3.13 -m pip install scipy==1.17.0 sentence-transformers --extra-index-url $INDEX_URL_DEVPY +if ! (python3.13 ../app.py); then + echo "--------------------$PACKAGE_NAME:Install_success_but_test_fails--------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails" + exit 2 +else + echo "------------------$PACKAGE_NAME:Install_&_test_both_success-------------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Pass | Both_Install_and_Import_Success" + exit 0 +fi From d7e7587427304e08c48d99f51b0b1c143ac1c955 Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Sun, 19 Jul 2026 13:07:03 +0000 Subject: [PATCH 06/14] adding faiss-cpu package script --- .../.ipynb_checkpoints/LICENSE-checkpoint | 201 ++++++++++++++++++ .../build_info-checkpoint.json | 17 ++ .../faiss_cpu_1.9.0.post1_ubi-checkpoint.sh | 67 ++++++ f/faiss-wheel/LICENSE | 201 ++++++++++++++++++ f/{faiss => faiss-wheel}/app.py | 0 f/faiss-wheel/build_info.json | 17 ++ .../faiss_cpu_1.9.0.post1_ubi.sh | 4 +- 7 files changed, 504 insertions(+), 3 deletions(-) create mode 100644 f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint create mode 100644 f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json create mode 100755 f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh create mode 100644 f/faiss-wheel/LICENSE rename f/{faiss => faiss-wheel}/app.py (100%) create mode 100644 f/faiss-wheel/build_info.json rename f/{faiss => faiss-wheel}/faiss_cpu_1.9.0.post1_ubi.sh (92%) diff --git a/f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint b/f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint new file mode 100644 index 0000000000..9c8f3ea087 --- /dev/null +++ b/f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. \ No newline at end of file diff --git a/f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json b/f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json new file mode 100644 index 0000000000..4655dfd252 --- /dev/null +++ b/f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json @@ -0,0 +1,17 @@ +{ + "maintainer": "Amir Sanjar", + "package_name": "faiss-cpu", + "github_url": "https://github.com/faiss-wheels/faiss-wheels.git", + "version": "1.9.0.post1", + "default_branch": "main", + "build_script": "faiss_cpu_1.9.0.post1_ubi.sh", + "package_dir": "f/faiss-wheel", + "docker_build": true, + "validate_build_script": true, + "use_non_root_user": false, + "wheel_build": true, + + "*": { + "build_script": "faiss_cpu_1.9.0.post1_ubi.sh" + } +} diff --git a/f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh b/f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh new file mode 100755 index 0000000000..d9061b7fb4 --- /dev/null +++ b/f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh @@ -0,0 +1,67 @@ +#!/bin/bash +# ----------------------------------------------------------------------------- +# +# Package : faiss +# Version : 1.9.0-post1 +# Source repo : https://github.com/faiss-wheels/faiss-wheels +# Tested on : RHEL 9.6 +# Language : C++, Python +# Ci-Check : True +# Script License : Apache License Version 2.0 +# Maintainer : Amir Sanjar +# +# Disclaimer: This script has been tested in root mode on the given +# ========== platform using the mentioned version of the package. +# It may not work as expected with newer versions of the +# package and/or distribution. In such cases, please +# contact the "Maintainer" of this script. +# + +# set -e + +PACKAGE_NAME=faiss-cpu +PACKAGE_DIR=faiss-wheels +PACKAGE_VERSION=${1:-1.9.0.post1} +PACKAGE_URL=https://github.com/faiss-wheels/faiss-wheels.git + + +echo "Installing dependencies..." +curl -O https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm +dnf install -y epel-release-latest-9.noarch.rpm +dnf update -y +dnf install -y \ + python3.13 python3.13-devel python3.13-pip \ + openblas-devel make gcc g++ cmake git automake autoconf + +echo "Upgrading Python tools..." +python3.13 -m pip install --upgrade setuptools wheel build uv + +git clone --recursive ${PACKAGE_URL} +cd ${PACKAGE_DIR} +echo -e "\n[tool.uv]\nenvironments = [\"python_version == '3.13'\"]" >> pyproject.toml +uv python pin 3.13 +sed -i "s/.version=.*/version='"$PACKAGE_VERSION"',/" third-party/faiss/faiss/python/setup.py +export INDEX_URL_DEVPY="https://wheels.developerfirst.ibm.com/ppc64le/linux/+simple" +#rm uv.lock; uv version $PACKAGE_VERSION --extra-index-url $INDEX_URL_DEVPY +sed -i '/^\[project\]/,/^$/ {s/version = "[^"]*"/version = "'"$PACKAGE_VERSION"'"/}' pyproject.toml +CP=$(python3.13 -c "import sysconfig; print(sysconfig.get_config_var('py_version_nodot'))") +uv build --wheel --config-setting wheel.py-api=cp$CP --extra-index-url $INDEX_URL_DEVPY + +if ! (python3.13 -m pip install dist/faiss_cpu-$PACKAGE_VERSION-cp$CP-abi3-linux_ppc64le.whl ); then + echo "------------------$PACKAGE_NAME:Failed to build wheel-------------------------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_Fails" +fi +# Run tests +python3.13 -m pip install scipy==1.17.0 sentence-transformers --extra-index-url $INDEX_URL_DEVPY +if ! (python3.13 ../app.py); then + echo "--------------------$PACKAGE_NAME:Install_success_but_test_fails--------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails" + exit 2 +else + echo "------------------$PACKAGE_NAME:Install_&_test_both_success-------------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Pass | Both_Install_and_Import_Success" + exit 0 +fi diff --git a/f/faiss-wheel/LICENSE b/f/faiss-wheel/LICENSE new file mode 100644 index 0000000000..9c8f3ea087 --- /dev/null +++ b/f/faiss-wheel/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. \ No newline at end of file diff --git a/f/faiss/app.py b/f/faiss-wheel/app.py similarity index 100% rename from f/faiss/app.py rename to f/faiss-wheel/app.py diff --git a/f/faiss-wheel/build_info.json b/f/faiss-wheel/build_info.json new file mode 100644 index 0000000000..4655dfd252 --- /dev/null +++ b/f/faiss-wheel/build_info.json @@ -0,0 +1,17 @@ +{ + "maintainer": "Amir Sanjar", + "package_name": "faiss-cpu", + "github_url": "https://github.com/faiss-wheels/faiss-wheels.git", + "version": "1.9.0.post1", + "default_branch": "main", + "build_script": "faiss_cpu_1.9.0.post1_ubi.sh", + "package_dir": "f/faiss-wheel", + "docker_build": true, + "validate_build_script": true, + "use_non_root_user": false, + "wheel_build": true, + + "*": { + "build_script": "faiss_cpu_1.9.0.post1_ubi.sh" + } +} diff --git a/f/faiss/faiss_cpu_1.9.0.post1_ubi.sh b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi.sh similarity index 92% rename from f/faiss/faiss_cpu_1.9.0.post1_ubi.sh rename to f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi.sh index 5dc2c3f0e8..d9061b7fb4 100755 --- a/f/faiss/faiss_cpu_1.9.0.post1_ubi.sh +++ b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi.sh @@ -31,9 +31,7 @@ dnf install -y epel-release-latest-9.noarch.rpm dnf update -y dnf install -y \ python3.13 python3.13-devel python3.13-pip \ - openblas-devel make gcc g++ cmake git automake autoconf #libtool pcre2-devel ninja-build - -#yum install -y https://rpmfind.net/linux/centos-stream/9-stream/AppStream/ppc64le/os/Packages/bison-3.7.4-5.el9.ppc64le.rpm + openblas-devel make gcc g++ cmake git automake autoconf echo "Upgrading Python tools..." python3.13 -m pip install --upgrade setuptools wheel build uv From 2e4d08d0c1626f32b1d3b6c0374816afbdfef13c Mon Sep 17 00:00:00 2001 From: afsanjar Date: Sun, 19 Jul 2026 08:16:53 -0500 Subject: [PATCH 07/14] Delete f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json An incorrect file was added --- .../build_info-checkpoint.json | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json diff --git a/f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json b/f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json deleted file mode 100644 index 4655dfd252..0000000000 --- a/f/faiss-wheel/.ipynb_checkpoints/build_info-checkpoint.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "maintainer": "Amir Sanjar", - "package_name": "faiss-cpu", - "github_url": "https://github.com/faiss-wheels/faiss-wheels.git", - "version": "1.9.0.post1", - "default_branch": "main", - "build_script": "faiss_cpu_1.9.0.post1_ubi.sh", - "package_dir": "f/faiss-wheel", - "docker_build": true, - "validate_build_script": true, - "use_non_root_user": false, - "wheel_build": true, - - "*": { - "build_script": "faiss_cpu_1.9.0.post1_ubi.sh" - } -} From 443d6a1240fd4dc25ed7c97bded836c71a9f20dd Mon Sep 17 00:00:00 2001 From: afsanjar Date: Sun, 19 Jul 2026 08:21:09 -0500 Subject: [PATCH 08/14] Delete f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh cleanup --- .../faiss_cpu_1.9.0.post1_ubi-checkpoint.sh | 67 ------------------- 1 file changed, 67 deletions(-) delete mode 100755 f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh diff --git a/f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh b/f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh deleted file mode 100755 index d9061b7fb4..0000000000 --- a/f/faiss-wheel/.ipynb_checkpoints/faiss_cpu_1.9.0.post1_ubi-checkpoint.sh +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/bash -# ----------------------------------------------------------------------------- -# -# Package : faiss -# Version : 1.9.0-post1 -# Source repo : https://github.com/faiss-wheels/faiss-wheels -# Tested on : RHEL 9.6 -# Language : C++, Python -# Ci-Check : True -# Script License : Apache License Version 2.0 -# Maintainer : Amir Sanjar -# -# Disclaimer: This script has been tested in root mode on the given -# ========== platform using the mentioned version of the package. -# It may not work as expected with newer versions of the -# package and/or distribution. In such cases, please -# contact the "Maintainer" of this script. -# - -# set -e - -PACKAGE_NAME=faiss-cpu -PACKAGE_DIR=faiss-wheels -PACKAGE_VERSION=${1:-1.9.0.post1} -PACKAGE_URL=https://github.com/faiss-wheels/faiss-wheels.git - - -echo "Installing dependencies..." -curl -O https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm -dnf install -y epel-release-latest-9.noarch.rpm -dnf update -y -dnf install -y \ - python3.13 python3.13-devel python3.13-pip \ - openblas-devel make gcc g++ cmake git automake autoconf - -echo "Upgrading Python tools..." -python3.13 -m pip install --upgrade setuptools wheel build uv - -git clone --recursive ${PACKAGE_URL} -cd ${PACKAGE_DIR} -echo -e "\n[tool.uv]\nenvironments = [\"python_version == '3.13'\"]" >> pyproject.toml -uv python pin 3.13 -sed -i "s/.version=.*/version='"$PACKAGE_VERSION"',/" third-party/faiss/faiss/python/setup.py -export INDEX_URL_DEVPY="https://wheels.developerfirst.ibm.com/ppc64le/linux/+simple" -#rm uv.lock; uv version $PACKAGE_VERSION --extra-index-url $INDEX_URL_DEVPY -sed -i '/^\[project\]/,/^$/ {s/version = "[^"]*"/version = "'"$PACKAGE_VERSION"'"/}' pyproject.toml -CP=$(python3.13 -c "import sysconfig; print(sysconfig.get_config_var('py_version_nodot'))") -uv build --wheel --config-setting wheel.py-api=cp$CP --extra-index-url $INDEX_URL_DEVPY - -if ! (python3.13 -m pip install dist/faiss_cpu-$PACKAGE_VERSION-cp$CP-abi3-linux_ppc64le.whl ); then - echo "------------------$PACKAGE_NAME:Failed to build wheel-------------------------------------" - echo "$PACKAGE_URL $PACKAGE_NAME" - echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_Fails" -fi -# Run tests -python3.13 -m pip install scipy==1.17.0 sentence-transformers --extra-index-url $INDEX_URL_DEVPY -if ! (python3.13 ../app.py); then - echo "--------------------$PACKAGE_NAME:Install_success_but_test_fails--------------------" - echo "$PACKAGE_URL $PACKAGE_NAME" - echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails" - exit 2 -else - echo "------------------$PACKAGE_NAME:Install_&_test_both_success-------------------------" - echo "$PACKAGE_URL $PACKAGE_NAME" - echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Pass | Both_Install_and_Import_Success" - exit 0 -fi From 72cf1873d8d94349fcbd25d4318c74e9984970b5 Mon Sep 17 00:00:00 2001 From: afsanjar Date: Sun, 19 Jul 2026 08:23:06 -0500 Subject: [PATCH 09/14] Delete f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint cleanup --- .../.ipynb_checkpoints/LICENSE-checkpoint | 201 ------------------ 1 file changed, 201 deletions(-) delete mode 100644 f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint diff --git a/f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint b/f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint deleted file mode 100644 index 9c8f3ea087..0000000000 --- a/f/faiss-wheel/.ipynb_checkpoints/LICENSE-checkpoint +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. \ No newline at end of file From 2fda74161f5e20c6e86d461c00dd680034122a0c Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Mon, 20 Jul 2026 14:46:44 +0000 Subject: [PATCH 10/14] fix faiss-cpu failures --- f/faiss-wheel/build_info.json | 4 +- .../faiss_cpu_1.9.0.post1_ubi_9.6.sh | 67 +++++++++++++++++++ 2 files changed, 69 insertions(+), 2 deletions(-) create mode 100755 f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh diff --git a/f/faiss-wheel/build_info.json b/f/faiss-wheel/build_info.json index 4655dfd252..163237b8cb 100644 --- a/f/faiss-wheel/build_info.json +++ b/f/faiss-wheel/build_info.json @@ -4,7 +4,7 @@ "github_url": "https://github.com/faiss-wheels/faiss-wheels.git", "version": "1.9.0.post1", "default_branch": "main", - "build_script": "faiss_cpu_1.9.0.post1_ubi.sh", + "build_script": "faiss_cpu_1.9.0.post1_ubi_9.6.sh", "package_dir": "f/faiss-wheel", "docker_build": true, "validate_build_script": true, @@ -12,6 +12,6 @@ "wheel_build": true, "*": { - "build_script": "faiss_cpu_1.9.0.post1_ubi.sh" + "build_script": "faiss_cpu_1.9.0.post1_ubi_9.6.sh" } } diff --git a/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh new file mode 100755 index 0000000000..978296f2dc --- /dev/null +++ b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh @@ -0,0 +1,67 @@ +#!/bin/bash +# ----------------------------------------------------------------------------- +# +# Package : faiss +# Version : 1.9.0-post1 +# Source repo : https://github.com/faiss-wheels/faiss-wheels +# Tested on : UBI 9.6 +# Language : C++, Python +# Ci-Check : True +# Script License : Apache License Version 2.0 +# Maintainer : Amir Sanjar +# +# Disclaimer: This script has been tested in root mode on the given +# ========== platform using the mentioned version of the package. +# It may not work as expected with newer versions of the +# package and/or distribution. In such cases, please +# contact the "Maintainer" of this script. +# + +# set -e + +PACKAGE_NAME=faiss-cpu +PACKAGE_DIR=faiss-wheels +PACKAGE_VERSION=${1:-1.9.0.post1} +PACKAGE_URL=https://github.com/faiss-wheels/faiss-wheels.git + + +echo "Installing dependencies..." +curl -O https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm +dnf install -y epel-release-latest-9.noarch.rpm +dnf update -y +dnf install -y \ + python3.13 python3.13-devel python3.13-pip \ + openblas-devel make gcc g++ cmake git automake autoconf + +echo "Upgrading Python tools..." +python3.13 -m pip install --upgrade setuptools wheel build uv + +git clone --recursive ${PACKAGE_URL} +cd ${PACKAGE_DIR} +echo -e "\n[tool.uv]\nenvironments = [\"python_version == '3.13'\"]" >> pyproject.toml +uv python pin 3.13 +sed -i "s/.version=.*/version='"$PACKAGE_VERSION"',/" third-party/faiss/faiss/python/setup.py +export INDEX_URL_DEVPY="https://wheels.developerfirst.ibm.com/ppc64le/linux/+simple" +#rm uv.lock; uv version $PACKAGE_VERSION --extra-index-url $INDEX_URL_DEVPY +sed -i '/^\[project\]/,/^$/ {s/version = "[^"]*"/version = "'"$PACKAGE_VERSION"'"/}' pyproject.toml +CP=$(python3.13 -c "import sysconfig; print(sysconfig.get_config_var('py_version_nodot'))") +uv build --wheel --config-setting wheel.py-api=cp$CP --extra-index-url $INDEX_URL_DEVPY + +if ! (python3.13 -m pip install dist/faiss_cpu-$PACKAGE_VERSION-cp$CP-abi3-linux_ppc64le.whl ); then + echo "------------------$PACKAGE_NAME:Failed to build wheel-------------------------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_Fails" +fi +# Run tests +python3.13 -m pip install scipy==1.17.0 sentence-transformers --extra-index-url $INDEX_URL_DEVPY +if ! (python3.13 ../app.py); then + echo "--------------------$PACKAGE_NAME:Install_success_but_test_fails--------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails" + exit 2 +else + echo "------------------$PACKAGE_NAME:Install_&_test_both_success-------------------------" + echo "$PACKAGE_URL $PACKAGE_NAME" + echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Pass | Both_Install_and_Import_Success" + exit 0 +fi From 310cccda3643ef5246e698fa76ffebe4fe1434db Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Mon, 20 Jul 2026 14:49:14 +0000 Subject: [PATCH 11/14] fix faiss-cpu failures --- f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi.sh | 67 ---------------------- 1 file changed, 67 deletions(-) delete mode 100755 f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi.sh diff --git a/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi.sh b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi.sh deleted file mode 100755 index d9061b7fb4..0000000000 --- a/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi.sh +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/bash -# ----------------------------------------------------------------------------- -# -# Package : faiss -# Version : 1.9.0-post1 -# Source repo : https://github.com/faiss-wheels/faiss-wheels -# Tested on : RHEL 9.6 -# Language : C++, Python -# Ci-Check : True -# Script License : Apache License Version 2.0 -# Maintainer : Amir Sanjar -# -# Disclaimer: This script has been tested in root mode on the given -# ========== platform using the mentioned version of the package. -# It may not work as expected with newer versions of the -# package and/or distribution. In such cases, please -# contact the "Maintainer" of this script. -# - -# set -e - -PACKAGE_NAME=faiss-cpu -PACKAGE_DIR=faiss-wheels -PACKAGE_VERSION=${1:-1.9.0.post1} -PACKAGE_URL=https://github.com/faiss-wheels/faiss-wheels.git - - -echo "Installing dependencies..." -curl -O https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm -dnf install -y epel-release-latest-9.noarch.rpm -dnf update -y -dnf install -y \ - python3.13 python3.13-devel python3.13-pip \ - openblas-devel make gcc g++ cmake git automake autoconf - -echo "Upgrading Python tools..." -python3.13 -m pip install --upgrade setuptools wheel build uv - -git clone --recursive ${PACKAGE_URL} -cd ${PACKAGE_DIR} -echo -e "\n[tool.uv]\nenvironments = [\"python_version == '3.13'\"]" >> pyproject.toml -uv python pin 3.13 -sed -i "s/.version=.*/version='"$PACKAGE_VERSION"',/" third-party/faiss/faiss/python/setup.py -export INDEX_URL_DEVPY="https://wheels.developerfirst.ibm.com/ppc64le/linux/+simple" -#rm uv.lock; uv version $PACKAGE_VERSION --extra-index-url $INDEX_URL_DEVPY -sed -i '/^\[project\]/,/^$/ {s/version = "[^"]*"/version = "'"$PACKAGE_VERSION"'"/}' pyproject.toml -CP=$(python3.13 -c "import sysconfig; print(sysconfig.get_config_var('py_version_nodot'))") -uv build --wheel --config-setting wheel.py-api=cp$CP --extra-index-url $INDEX_URL_DEVPY - -if ! (python3.13 -m pip install dist/faiss_cpu-$PACKAGE_VERSION-cp$CP-abi3-linux_ppc64le.whl ); then - echo "------------------$PACKAGE_NAME:Failed to build wheel-------------------------------------" - echo "$PACKAGE_URL $PACKAGE_NAME" - echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_Fails" -fi -# Run tests -python3.13 -m pip install scipy==1.17.0 sentence-transformers --extra-index-url $INDEX_URL_DEVPY -if ! (python3.13 ../app.py); then - echo "--------------------$PACKAGE_NAME:Install_success_but_test_fails--------------------" - echo "$PACKAGE_URL $PACKAGE_NAME" - echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails" - exit 2 -else - echo "------------------$PACKAGE_NAME:Install_&_test_both_success-------------------------" - echo "$PACKAGE_URL $PACKAGE_NAME" - echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Pass | Both_Install_and_Import_Success" - exit 0 -fi From 59edb432cce7314287e2b24caf7719fb17eff59a Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Mon, 20 Jul 2026 15:30:19 +0000 Subject: [PATCH 12/14] fix faiss-cpu failures --- f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh index 978296f2dc..d97a8b5294 100755 --- a/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh +++ b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh @@ -23,6 +23,8 @@ PACKAGE_NAME=faiss-cpu PACKAGE_DIR=faiss-wheels PACKAGE_VERSION=${1:-1.9.0.post1} PACKAGE_URL=https://github.com/faiss-wheels/faiss-wheels.git +SOURCE_ROOT="$(pwd)" + echo "Installing dependencies..." @@ -42,7 +44,6 @@ echo -e "\n[tool.uv]\nenvironments = [\"python_version == '3.13'\"]" >> pyprojec uv python pin 3.13 sed -i "s/.version=.*/version='"$PACKAGE_VERSION"',/" third-party/faiss/faiss/python/setup.py export INDEX_URL_DEVPY="https://wheels.developerfirst.ibm.com/ppc64le/linux/+simple" -#rm uv.lock; uv version $PACKAGE_VERSION --extra-index-url $INDEX_URL_DEVPY sed -i '/^\[project\]/,/^$/ {s/version = "[^"]*"/version = "'"$PACKAGE_VERSION"'"/}' pyproject.toml CP=$(python3.13 -c "import sysconfig; print(sysconfig.get_config_var('py_version_nodot'))") uv build --wheel --config-setting wheel.py-api=cp$CP --extra-index-url $INDEX_URL_DEVPY @@ -54,7 +55,13 @@ if ! (python3.13 -m pip install dist/faiss_cpu-$PACKAGE_VERSION-cp$CP-abi3-linux fi # Run tests python3.13 -m pip install scipy==1.17.0 sentence-transformers --extra-index-url $INDEX_URL_DEVPY -if ! (python3.13 ../app.py); then +#find test case called app.py +TEST_PATH=$(find "${SOURCE_ROOT}" -name app.py | head -1) +if [ -z "${PATCH_PATH}" ]; then + echo "ERROR: test case not found" + exit 1 +fi +if ! (python3.13 $TEST_PATH); then echo "--------------------$PACKAGE_NAME:Install_success_but_test_fails--------------------" echo "$PACKAGE_URL $PACKAGE_NAME" echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails" From 9f32b5f1040679f8eb8ce9e9f9f7fc00cac15c00 Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Mon, 20 Jul 2026 15:31:30 +0000 Subject: [PATCH 13/14] fix faiss-cpu failures --- f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh index d97a8b5294..12f705c22f 100755 --- a/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh +++ b/f/faiss-wheel/faiss_cpu_1.9.0.post1_ubi_9.6.sh @@ -57,7 +57,7 @@ fi python3.13 -m pip install scipy==1.17.0 sentence-transformers --extra-index-url $INDEX_URL_DEVPY #find test case called app.py TEST_PATH=$(find "${SOURCE_ROOT}" -name app.py | head -1) -if [ -z "${PATCH_PATH}" ]; then +if [ -z "${TEST_PATH}" ]; then echo "ERROR: test case not found" exit 1 fi From e2d27a63fbbc2e4495ea4c0eb4fc0779bd6053b6 Mon Sep 17 00:00:00 2001 From: amir-sanjar Date: Mon, 20 Jul 2026 16:12:28 +0000 Subject: [PATCH 14/14] fix faiss-cpu failures --- f/faiss-wheel/build_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/f/faiss-wheel/build_info.json b/f/faiss-wheel/build_info.json index 163237b8cb..fde2abba92 100644 --- a/f/faiss-wheel/build_info.json +++ b/f/faiss-wheel/build_info.json @@ -1,6 +1,6 @@ { "maintainer": "Amir Sanjar", - "package_name": "faiss-cpu", + "package_name": "faiss-wheel", "github_url": "https://github.com/faiss-wheels/faiss-wheels.git", "version": "1.9.0.post1", "default_branch": "main",