Sammlung von Newsfeeds | Develop Site

How to use Google microbenchmarks for evaluating TPU performance

Blog Desarrollo Google - vor 3 Stunden 42 Minuten
Google's open-source TPU microbenchmark suite provides developers with granular performance metrics across Network, Compute, HBM, Host Transfer, and Attention components to validate real-world hardware capabilities. By leveraging these benchmarks to establish a Roofline model, engineers can accurately diagnose whether their machine learning workloads are compute-, memory-, or network-bound. This empirical baseline directly guides targeted software optimizations—such as kernel tuning, mesh sharding, and rematerialization—to maximize hardware utilization for large-scale model deployments.
Kategorien: Desarrolladores

How to Evaluate Live & Voice Agents in ADK

Blog Desarrollo Google - vor 6 Stunden 42 Minuten
Moving live voice agents from demo to production requires rigorous, automated testing to handle the unpredictability of real multi-turn conversations. ADK now provides native live evaluation, allowing developers to test graph-based agent workflows against LLM-driven simulated users that generate actual audio via Gemini TTS. By defining evaluation scenarios and natural-language rubrics, you can automatically score audio responses and tool executions, inspect the resulting transcripts in ADK Web, or run the CLI directly in your CI/CD pipeline.
Kategorien: Desarrolladores

Scaling AI Agent Infrastructure with the MCP Stateless updates

Blog Desarrollo Google - vor 6 Stunden 42 Minuten
The 2026-07-28 Model Context Protocol (MCP) specification replaces legacy stateful constraints with a fully stateless core, enabling cloud-native horizontal scaling, serverless deployments, and standard round-robin load balancing. This architectural shift introduces standardized HTTP headers for efficient routing without deep packet inspection, caching controls, and Multi Round-Trip Requests (MRTR) to handle interactive and long-running tasks without blocking connections. Developers can immediately begin migrating their agentic applications to this highly scalable infrastructure using the newly available beta SDKs for Python, TypeScript, Go, and C#.
Kategorien: Desarrolladores

Scaling real-time AI agents with session-aware load balancing

Blog Desarrollo Google - vor 6 Stunden 42 Minuten
Real-time AI agents break traditional request-response load balancing paradigms because they rely on long-lived, stateful bidirectional streams that obscure true server capacity. To solve this, developers must implement application-level session tracking directly within the runtime to accurately measure the committed concurrent workload of active conversations. By feeding these precise session counts alongside standard CPU utilization metrics into a hybrid routing algorithm, infrastructure can effectively distribute stateful AI traffic and prevent individual backend bottlenecks.
Kategorien: Desarrolladores

Build zero-trust AI agents with Google's Agent Development Kit

Blog Desarrollo Google - vor 12 Stunden 42 Minuten
Building autonomous AI agents that mutate production state requires moving beyond soft system prompts to a robust zero-trust architecture. To secure Google Agent Development Kit (ADK) workflows against prompt injections and malicious execution, developers must implement hardware-backed cryptographic signatures for database writes, kernel-level sandboxing with gVisor for dynamic code, and deterministic semantic gateways for I/O validation. By enforcing these hard security boundaries at the infrastructure level, you can safely deploy multi-tool AI agents without risking unauthorized data manipulation or server compromise.
Kategorien: Desarrolladores

HeyGen x Google Cloud: Bringing Avatar IV to TPUs

Blog Desarrollo Google - vor 12 Stunden 42 Minuten
HeyGen ported their 18B+ parameter Avatar IV video generation model to Google Cloud's Trillium (v6e) TPUs via torchax and XLA, utilizing FSDP and Ulysses sequence parallelism across an eight-chip mesh. To achieve a 1.86x speedup for real-time streaming, the engineering team pipelined exposed all-to-all collectives, aligned sparse attention block sizes to eliminate mask padding, and bypassed softmax serial dependencies using a precomputed Cauchy-Schwarz upper bound. These custom Pallas kernel and compiler optimizations were deployed only after passing rigorous two-tier quality gates to guarantee byte-identical or mathematically equivalent pixel outputs.
Kategorien: Desarrolladores

Introducing Credentio: Open Source C++ Library for C2PA Content Credentials from Google

Blog Desarrollo Google - vor 12 Stunden 42 Minuten
Credentio is a newly released, open-source C++ library from Google that allows developers to integrate high-performance, local-first validation of C2PA Content Credentials into their client and server applications. By processing assets entirely locally with a highly optimized memory footprint, the library delivers instant validation verdicts for multi-gigabyte media files without incurring cloud latency, bandwidth costs, or data privacy risks. The library currently features deep manifest parsing alongside configurable trust list integration, and is available now on Google Source with future plans to support full credential generation and embedding.
Kategorien: Desarrolladores

Mastering Edge AI on Raspberry Pi with LiteRT and Gemma

Blog Desarrollo Google - vor 12 Stunden 42 Minuten
Deploying secure, real-time Edge AI on Raspberry Pi is now simplified using LiteRT and lightweight Gemma open models. LiteRT optimizes CPU and GPU performance, delivering fast token speeds for models like Gemma4, enabling real-time local reasoning for robotics. Developers can quickly convert, quantize, and run these models using the lightweight LiteRT CLI tool. Support for Hailo AI accelerators is also coming very soon.
Kategorien: Desarrolladores

Why Go is an Ideal Language for AI-Assisted Software Engineering

Blog Desarrollo Google - vor 12 Stunden 42 Minuten
As AI coding assistants shift the developer's primary role from writing boilerplate to reviewing and maintaining systems, language choice becomes critical for long-term architectural integrity. Go directly addresses this new paradigm by utilizing its strict compiler, integrated toolchain, and uncompromising readability to provide deterministic guardrails that help AI models self-correct and generate highly standardized code. By enforcing ecosystem-wide consistency and strict backward compatibility, the Go platform empowers engineering teams to efficiently verify, optimize, and maintain high-velocity, AI-generated output in production environments.
Kategorien: Desarrolladores

Scaling Agentic RL: High-Throughput Agentic Training with Tunix

Blog Desarrollo Google - vor 12 Stunden 42 Minuten
Tunix is Google’s new JAX-native post-training library designed to eliminate TPU idling bottlenecks when training multi-turn, tool-using LLM reasoning agents. It maximizes hardware throughput by combining highly concurrent, asynchronous rollouts with a decoupled producer-consumer pipeline, ensuring the trainer is constantly fed even while agents wait on network I/O or environment steps. Additionally, Tunix provides plug-and-play abstractions and continuous macro-level profiling, allowing developers to easily integrate custom open-source environments and optimize complex distributed workflows without massive code rewrites.
Kategorien: Desarrolladores

What the 49ers and Giants Teach IT Pros About AI Social Engineering

TechRepublic - Fr, 08/28/2026 - 23:10

NFL technology executives share how AI-driven social engineering makes attacks faster and more convincing, offering practical strategies for IT leaders to build non-punitive, multi-channel defenses.

The post What the 49ers and Giants Teach IT Pros About AI Social Engineering appeared first on TechRepublic.

Kategorien: Tecnologia

Google DeepMind Seals Gemini Test to Protect AI Benchmarks

TechRepublic - Fr, 08/28/2026 - 23:05

Google DeepMind tested Gemini 2.5 Flash Lite behind a cryptographic wall designed to protect confidential AI benchmarks and proprietary model weights.

The post Google DeepMind Seals Gemini Test to Protect AI Benchmarks appeared first on TechRepublic.

Kategorien: Tecnologia

Enterprise-Grade Precision for Long-Context Multimodal Embedding Inference on Cloud TPU

Blog Desarrollo Google - Fr, 08/28/2026 - 22:24
Google Cloud has natively integrated TPU support into the vLLM serving engine, allowing developers to elastically scale high-demand embedding pipelines using Google Kubernetes Engine (GKE). To handle massive 15K+ token contexts for models like Qwen3-Embedding-8B, the engineering team implemented TPU-specific optimizations such as hardware-safe tensor alignment, JAX/XLA compilation pre-warming, and a hybrid StepPool architecture for chunked prefill management. These enhancements achieve near-perfect numerical parity with reference GPU baselines, and developers can immediately leverage the open-sourced setup recipes on the AI-Hypercomputer GitHub to build their own high-throughput semantic retrieval applications.
Kategorien: Desarrolladores

Anthropic Eyed 5GW of AI Data Centers in Australia: Could the Grid Handle It?

TechRepublic - Fr, 08/28/2026 - 21:52

Anthropic eyed up to 5GW of AI data center capacity in NSW. Here’s what the potential buildout could mean for Australia’s power grid and IT leaders.

The post Anthropic Eyed 5GW of AI Data Centers in Australia: Could the Grid Handle It? appeared first on TechRepublic.

Kategorien: Tecnologia

A Startup Brought Back ‘Twitter’ — Now X Is Suing

TechRepublic - Fr, 08/28/2026 - 19:53

Operation Bluebird has launched Twitter.now while fighting X over rights to the Twitter name, betting nostalgia and AI tools can build a new social network.

The post A Startup Brought Back ‘Twitter’ — Now X Is Suing appeared first on TechRepublic.

Kategorien: Tecnologia

Plaud One: AI Earbuds That Listen, Summarize, and Take Action

TechRepublic - Fr, 08/28/2026 - 19:33

Plaud One uses AI earbuds and a 4G-connected case to record, summarize, and act on workplace conversations without relying on a nearby smartphone.

The post Plaud One: AI Earbuds That Listen, Summarize, and Take Action appeared first on TechRepublic.

Kategorien: Tecnologia

Google AI Overviews Pushing Searchers Into AI Mode, Drops Show More Button

Search Engine Roundtable - Fr, 08/28/2026 - 19:30
Google Search is testing pushing searchers into AI Mode from the AI Overview by default, without having to click the "Show more" button. The new AI Overview experience that Google is testing shows a much fuller AI answer, like you'd get in AI Mode, and loads the follow up "Ask anything" box by default.
Kategorien: SEO

Nvidia’s $12.9B Hugging Face Bet: A New Battle for Control of the AI Stack

TechRepublic - Fr, 08/28/2026 - 17:46

Nvidia reportedly agreed to buy Hugging Face for $12.9 billion, a deal that could reshape enterprise AI, open-source models, and the broader AI stack.

The post Nvidia’s $12.9B Hugging Face Bet: A New Battle for Control of the AI Stack appeared first on TechRepublic.

Kategorien: Tecnologia

Evolving Spec-Driven Development: Conductor Now Supports Antigravity

Blog Desarrollo Google - Fr, 08/28/2026 - 16:22
Conductor has evolved from a Gemini CLI extension into a portable plugin, bringing conversational Spec-Driven Development (SDD) to ecosystems like Antigravity CLI and Claude. Rather than relying on strict command sequences, developers can now chat naturally with their AI assistant while it dynamically manages persistent markdown artifacts (like spec.md and plan.md) in the background. This update eliminates workflow friction while ensuring your repository remains a version-controlled, single source of truth for your project's architecture and state across different AI tools.
Kategorien: Desarrolladores

AI Expansion Meets Security Crises, Costs, and Public Resistance in Tech This Week

TechRepublic - Fr, 08/28/2026 - 16:02

See what you missed in Daily Tech Insider from August 24–28.

The post AI Expansion Meets Security Crises, Costs, and Public Resistance in Tech This Week appeared first on TechRepublic.

Kategorien: Tecnologia

Seiten