OffNet Newsroom

Daily topic roundup

AI / ML

Sunday, August 09, 2026 · 5 stories, curated & summarized — click any story for the source.

AMD has acquired AI chip startup Taalas to integrate model-specific integrated circuits directly into silicon. Early demonstrations indicate these custom chips can achieve inference speeds of up to 17,000 tokens per second. This move aims to significantly boost performance for specific AI workloads by hardcoding model architectures.

  • AMD targets inference speed gains by integrating Taalas' custom silicon technology.
  • Early demos show model-specific chips reaching 17,000 tokens per second throughput.
  • Hardcoding models into hardware reduces latency compared to general-purpose accelerators.
  • Acquisition signals AMD's push into specialized AI inference hardware solutions.
AWS Database Blog awsdatabase ↺ since 08-06

AWS RDS for Oracle Adds OML4SQL for In-Database AutoML

Amazon RDS for Oracle now supports Oracle Machine Learning for SQL (OML4SQL), enabling practitioners to build, train, and score models entirely within the SQL engine. The new AutoML feature automatically selects the optimal algorithm without requiring data movement or external ML platforms. This capability allows credit risk and similar workloads to be processed directly on the database layer.

  • Eliminates data movement to external ML platforms by keeping training and scoring in-database.
  • AutoML automatically selects the best algorithm, reducing manual model tuning effort.
  • Enables SQL-only workflows for machine learning on managed RDS for Oracle instances.
AWS Database Blog awsdatabase ↺ since 08-06

DynamoDB adds native vector search to eliminate separate vector DBs

Amazon DynamoDB now supports native vector similarity search, removing the need to maintain a separate vector database for applications already using DynamoDB for operational data. The feature allows developers to integrate vector search directly into their existing DynamoDB tables, as demonstrated with a semantic search application over research paper abstracts using Amazon Bedrock embeddings. The blog post also details how vector search operations are metered and billed within the DynamoDB service.

  • No longer need a separate vector database for semantic search alongside DynamoDB.
  • Vector search is now a native feature within DynamoDB tables.
  • Metering for vector search operations is distinct and detailed in the post.
  • Can integrate with Amazon Bedrock embeddings for building semantic search apps.
AWS What's New awsdatabase ↺ since 08-07

Amazon Quick introduces multi-dataset topics for runtime joins

Amazon Quick now supports multi-dataset topics, allowing users to define relationships across multiple datasets within a single topic model. This capability eliminates the need for pre-joining data into a single dataset or writing manual JOIN logic during preparation. The system performs joins at runtime, enabling reusable relational models for both dashboard building and natural language Q&A without consuming extra SPICE capacity.

  • Define relationships once in a topic rather than pre-joining data manually.
  • Runtime joins replace static pre-joined datasets, reducing SPICE consumption.
  • Single topic models now support both dashboard visuals and NLQ across datasets.
  • No need to rebuild datasets when underlying data models or use cases change.
TRADE-OFFQuick Multi-Dataset TopicsLegacy ApproachRequires manual pre-joining dataConsumes extra SPICE capacityStatic and rigid modelsQuick Runtime JoinsDefines relationships in topicsZero extra SPICE usageDynamic and reusable modelsvs
Planet PostgreSQL database ↺ since 08-07

PostgreSQL psql gains initial Lua scripting integration via \luacode

Pavel Stehule has introduced an initial integration of the Lua language into psql, allowing users to execute Lua scripts directly within the interactive session. The new \luacode command enables entering Lua code blocks that can define functions and perform operations, such as printing results, before being executed. This feature provides a lightweight scripting capability alongside SQL for ad-hoc data manipulation and tooling within the client environment.

  • New \luacode command allows inline Lua scripting directly in psql sessions
  • Supports defining Lua functions and printing output for quick client-side logic
  • No server-side extension required; operates entirely within the psql client
  • Initial integration phase; check docs for current limitations and syntax rules
  • Useful for ad-hoc data transformation or automation without leaving the shell
TRADE-OFFLua in psql vs ExtensionsLua ScriptingClient-side execution onlyNo server extensions neededQuick ad-hoc logicServer ExtensionsRequires server installationPersistent configuration changesComplex setup overheadvs