From 7a48f76cd315fa252130aa84e98ff8df18fca07a Mon Sep 17 00:00:00 2001 From: sumanaga Date: Wed, 3 Jun 2026 11:55:36 +0530 Subject: [PATCH 1/2] RC2 updates --- export_requirements.txt | 2 +- take-away/Dockerfile | 2 +- take-away/Makefile | 2 +- take-away/docker-compose.yaml | 10 +++++----- take-away/gradio-ui/gradio_app.py | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/export_requirements.txt b/export_requirements.txt index 140936da..85a2559b 100755 --- a/export_requirements.txt +++ b/export_requirements.txt @@ -1,7 +1,7 @@ --extra-index-url "https://download.pytorch.org/whl/cpu" optimum-intel@git+https://github.com/huggingface/optimum-intel.git@a484bc6ee1175bbe8868bb53d2c42ab4c4802aa6 accelerate==1.11.0 -diffusers==0.35.2 # for image generation +diffusers==0.38.0 # for image generation einops==0.8.1 nncf==2.19.0 numpy==2.2.6 diff --git a/take-away/Dockerfile b/take-away/Dockerfile index cc419a0d..d97f3d7b 100755 --- a/take-away/Dockerfile +++ b/take-away/Dockerfile @@ -1,4 +1,4 @@ -FROM intel/dlstreamer:2026.1.0-ubuntu24-rc1.1 +FROM intel/dlstreamer:2026.1.0-ubuntu24-rc2 USER root diff --git a/take-away/Makefile b/take-away/Makefile index 3d9e0563..f7b7e671 100644 --- a/take-away/Makefile +++ b/take-away/Makefile @@ -59,7 +59,7 @@ OOM_PROTECTION ?= 1 PERF_TOOLS_DIR ?= ../performance-tools/benchmark-scripts # Version tag for registry images -TAG ?= 2026.0.0 +export TAG ?= 2026.1.0-rc2 # Sample video for quick-start testing (orders 384 → 651 → 925) # Hosted on the upstream repo's GitHub Releases. Override via env if needed: diff --git a/take-away/docker-compose.yaml b/take-away/docker-compose.yaml index c3299f05..21cee982 100755 --- a/take-away/docker-compose.yaml +++ b/take-away/docker-compose.yaml @@ -58,7 +58,7 @@ services: # SINGLE Station (per-container): docker compose up -d --scale order-accuracy=4 # MULTI Station (multi-process in one container): Set SERVICE_MODE=parallel order-accuracy: - image: intel/order-accuracy-take-away:2026.0.0 + image: intel/order-accuracy-take-away:${TAG} build: context: . args: @@ -188,7 +188,7 @@ services: - order-accuracy-net frame-selector: - image: intel/order-accuracy-frame-selector:2026.0.0 + image: intel/order-accuracy-frame-selector:${TAG} build: context: ./frame-selector-service args: @@ -236,7 +236,7 @@ services: - order-accuracy-net gradio-ui: - image: intel/order-accuracy-take-away-ui:2026.0.0 + image: intel/order-accuracy-take-away-ui:${TAG} build: context: ./gradio-ui args: @@ -315,7 +315,7 @@ services: # RTSP Streamer - On-demand video streaming via MediaMTX # Streams start only when a GStreamer client connects — no sync needed. rtsp-streamer: - image: intel/order-accuracy-take-away-rtsp:2026.0.0 + image: intel/order-accuracy-take-away-rtsp:${TAG} build: context: ./rtsp-streamer args: @@ -348,7 +348,7 @@ services: - order-accuracy-net metrics-collector: - image: intel/retail-benchmark:2026.0.0 + image: intel/retail-benchmark:${TAG} container_name: metrics-collector profiles: - benchmark diff --git a/take-away/gradio-ui/gradio_app.py b/take-away/gradio-ui/gradio_app.py index bfd23a59..234f0282 100755 --- a/take-away/gradio-ui/gradio_app.py +++ b/take-away/gradio-ui/gradio_app.py @@ -1563,7 +1563,7 @@ def _load_mode_status(): print("[Gradio] Starting Order Accuracy UI with Intel styling...") # Enable queue for generator support with higher concurrency - demo.queue(concurrency_count=5, max_size=20) + demo.queue(default_concurrency_limit=5, max_size=20) demo.launch( server_name="0.0.0.0", From e0cc70f1219d494a225f9b1856e2ac8d58293c05 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Thu, 4 Jun 2026 10:16:57 +0530 Subject: [PATCH 2/2] Update Makefile --- dine-in/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dine-in/Makefile b/dine-in/Makefile index 53481fe7..b4db9201 100755 --- a/dine-in/Makefile +++ b/dine-in/Makefile @@ -67,7 +67,7 @@ endif COMPOSE_FILE ?= docker-compose.yml # Version tag for registry images -TAG ?= 2026.0.0 +export TAG = 2026.1.0-rc2 # Dine-In image configuration DINEIN_IMAGE_NAME ?= intel/order-accuracy-dine-in