Skip to content

Commit

Permalink
Blender: Fix blur image generation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
quic-prudhvi committed Nov 22, 2024
1 parent 94be1b5 commit b2b8d8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Empty file.
2 changes: 1 addition & 1 deletion plugins/blender/SnapdragonImageGeneration/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def setup_qairt_env():
]
hexagon_libs = [
"libQnnHtpV{}Skel.so".format(consts.DSP_ARCH),
# "libqnnhtpv73.cat",
"libqnnhtpv73.cat",
]
for lib in libs:
if not os.path.isfile(os.path.join(consts.QNN_LIBS_DIR, lib)):
Expand Down
4 changes: 2 additions & 2 deletions plugins/blender/SnapdragonImageGeneration/qairt_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
LOGS_DIR=os.path.join(PLUGIN_DIR, "logs")
LOG_FILE=os.path.join(LOGS_DIR, "model_log.txt")

QNN_SDK_DOWNLOAD_URL="https://softwarecenter.qualcomm.com/api/download/software/qualcomm_neural_processing_sdk/v2.24.0.240626.zip"
QNN_SDK_DOWNLOAD_URL="https://softwarecenter.qualcomm.com/api/download/software/qualcomm_neural_processing_sdk/v2.22.0.240425.zip"

QAIRT_VERSION = "2.24.0.240626"
QAIRT_VERSION = "2.22.0.240425"
DSP_ARCH = "73" # For X-Elite device.

QNN_LIBS_DIR = os.path.join(PLUGIN_DIR, "qnn_assets", "qnn_libs")
Expand Down
2 changes: 1 addition & 1 deletion plugins/blender/SnapdragonImageGeneration/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ torchvision==0.14.1
transformers==4.41.2
accelerate
huggingface_hub
https://github.com/quic/ai-engine-direct-helper/releases/download/v2.24.0/qai_appbuilder-2.24.0-cp310-cp310-win_amd64.whl
https://github.com/quic/ai-engine-direct-helper/releases/download/v2.23.1/qai_appbuilder-2.22.0-cp310-cp310-win_amd64.whl
qai-hub==0.13.0
qai_hub_models[esrgan]==0.11.2

0 comments on commit b2b8d8e

Please sign in to comment.