Close Menu
  • Home
  • AI Models
    • DeepSeek
    • xAI
    • OpenAI
    • Meta AI Llama
    • Google DeepMind
    • Amazon AWS AI
    • Microsoft AI
    • Anthropic (Claude)
    • NVIDIA AI
    • IBM WatsonX Granite 3.1
    • Adobe Sensi
    • Hugging Face
    • Alibaba Cloud (Qwen)
    • Baidu (ERNIE)
    • C3 AI
    • DataRobot
    • Mistral AI
    • Moonshot AI (Kimi)
    • Google Gemma
    • xAI
    • Stability AI
    • H20.ai
  • AI Research
    • Allen Institue for AI
    • arXiv AI
    • Berkeley AI Research
    • CMU AI
    • Google Research
    • Microsoft Research
    • Meta AI Research
    • OpenAI Research
    • Stanford HAI
    • MIT CSAIL
    • Harvard AI
  • AI Funding & Startups
    • AI Funding Database
    • CBInsights AI
    • Crunchbase AI
    • Data Robot Blog
    • TechCrunch AI
    • VentureBeat AI
    • The Information AI
    • Sifted AI
    • WIRED AI
    • Fortune AI
    • PitchBook
    • TechRepublic
    • SiliconANGLE – Big Data
    • MIT News
    • Data Robot Blog
  • Expert Insights & Videos
    • Google DeepMind
    • Lex Fridman
    • Matt Wolfe AI
    • Yannic Kilcher
    • Two Minute Papers
    • AI Explained
    • TheAIEdge
    • Matt Wolfe AI
    • The TechLead
    • Andrew Ng
    • OpenAI
  • Expert Blogs
    • François Chollet
    • Gary Marcus
    • IBM
    • Jack Clark
    • Jeremy Howard
    • Melanie Mitchell
    • Andrew Ng
    • Andrej Karpathy
    • Sebastian Ruder
    • Rachel Thomas
    • IBM
  • AI Policy & Ethics
    • ACLU AI
    • AI Now Institute
    • Center for AI Safety
    • EFF AI
    • European Commission AI
    • Partnership on AI
    • Stanford HAI Policy
    • Mozilla Foundation AI
    • Future of Life Institute
    • Center for AI Safety
    • World Economic Forum AI
  • AI Tools & Product Releases
    • AI Assistants
    • AI for Recruitment
    • AI Search
    • Coding Assistants
    • Customer Service AI
    • Image Generation
    • Video Generation
    • Writing Tools
    • AI for Recruitment
    • Voice/Audio Generation
  • Industry Applications
    • Finance AI
    • Healthcare AI
    • Legal AI
    • Manufacturing AI
    • Media & Entertainment
    • Transportation AI
    • Education AI
    • Retail AI
    • Agriculture AI
    • Energy AI
  • AI Art & Entertainment
    • AI Art News Blog
    • Artvy Blog » AI Art Blog
    • Weird Wonderful AI Art Blog
    • The Chainsaw » AI Art
    • Artvy Blog » AI Art Blog
What's Hot

Koah raises $5M to bring ads into AI apps

$74B Market by 2032, Balancing Jobs and Ethics

OpenAI’s future, foretold? – by Gary Marcus

Facebook X (Twitter) Instagram
Advanced AI News
  • Home
  • AI Models
    • OpenAI (GPT-4 / GPT-4o)
    • Anthropic (Claude 3)
    • Google DeepMind (Gemini)
    • Meta (LLaMA)
    • Cohere (Command R)
    • Amazon (Titan)
    • IBM (Watsonx)
    • Inflection AI (Pi)
  • AI Research
    • Allen Institue for AI
    • arXiv AI
    • Berkeley AI Research
    • CMU AI
    • Google Research
    • Meta AI Research
    • Microsoft Research
    • OpenAI Research
    • Stanford HAI
    • MIT CSAIL
    • Harvard AI
  • AI Funding
    • AI Funding Database
    • CBInsights AI
    • Crunchbase AI
    • Data Robot Blog
    • TechCrunch AI
    • VentureBeat AI
    • The Information AI
    • Sifted AI
    • WIRED AI
    • Fortune AI
    • PitchBook
    • TechRepublic
    • SiliconANGLE – Big Data
    • MIT News
    • Data Robot Blog
  • AI Experts
    • Google DeepMind
    • Lex Fridman
    • Meta AI Llama
    • Yannic Kilcher
    • Two Minute Papers
    • AI Explained
    • TheAIEdge
    • The TechLead
    • Matt Wolfe AI
    • Andrew Ng
    • OpenAI
    • Expert Blogs
      • François Chollet
      • Gary Marcus
      • IBM
      • Jack Clark
      • Jeremy Howard
      • Melanie Mitchell
      • Andrew Ng
      • Andrej Karpathy
      • Sebastian Ruder
      • Rachel Thomas
      • IBM
  • AI Tools
    • AI Assistants
    • AI for Recruitment
    • AI Search
    • Coding Assistants
    • Customer Service AI
  • AI Policy
    • ACLU AI
    • AI Now Institute
    • Center for AI Safety
  • Business AI
    • Advanced AI News Features
    • Finance AI
    • Healthcare AI
    • Education AI
    • Energy AI
    • Legal AI
LinkedIn Instagram YouTube Threads X (Twitter)
Advanced AI News
Google DeepMind

Google DeepMind Unveils AI Coding Agent AlphaEvolve

By Advanced AI EditorMay 27, 2025No Comments3 Mins Read
Share Facebook Twitter Pinterest Copy Link Telegram LinkedIn Tumblr Email
Share
Facebook Twitter LinkedIn Pinterest Email


Google DeepMind published a paper describing their AlphaEvolve coding agent. AlphaEvolve uses LLMs to discover and optimize algorithms across a range of domains, including hardware design, data center operations, and AI training.

AlphaEvolve uses an ensemble of LLMs, including both Gemini Flash and Gemini Pro, to generate and evolve programs that solve a user-defined problem; specifically, the user must specify an evaluation function that returns a set of scalar metrics. Google has applied AlphaEvolve to several problems in mathematics, engineering, and computer science with good results. One example is that AlphaEvolve discovered a more efficient algorithm for multiplying 4×4 matrices. Google also applied it to more than 50 problems in mathematics; AlphaEvolve re-discovered the state-of-the-art solution for 75% and found even better solutions for 20% of them. According to Google, 

While AlphaEvolve is currently being applied across math and computing, its general nature means it can be applied to any problem whose solution can be described as an algorithm, and automatically verified. We believe AlphaEvolve could be transformative across many more areas such as material science, drug discovery, sustainability and wider technological and business applications.

The key idea in AlphaEvolve is to use LLMs for generating and evolving code. The system maintains a database of candidate programs that it has generated, and it uses them as context input to an LLM, along with prompts describing how to evolve the programs. Generated programs which have good results from the evaluation are stored in the database, and this loop continues until the best solution is found.

AlphaEvolve Architecture

AlphaEvolve Architecture. Image Source: AlphaEvolve Whitepaper

Besides solving mathematical problems, Google has used AlphaEvolve to improve its own datacenter operations. It developed a new heuristic function used by Google’s Borg task orchestrator. AlphaEvolve’s solution was better than one discovered by deep reinforcement learning, and Google was able to recover 0.7% of its worldwide compute resources. AlphaEvolve also improved kernel tiling and FlashAttention operations in its AI training processes, resulting in 23% and 32% speedup respectively.

Users in a Hacker News discussion thread were generally positive about AlphaEvolve and brought up Google’s recent AI track record:

People often forget that Google was behind Mu Zero, which IMO is the most important AI paper of the decade, not the Transformer one, because they effectively showed how models can learn how to search.

Writing on X, Simon Frieder, an AI researcher at the University of Oxford, chided DeepMind for its pattern of not fully open-sourcing their code:

DeepMind, even though they make sure all their releases are interesting scientifically, has a slightly spotty history of releasing full public code. For example, AlphaFold2 was released, but without training scripts. AlphaGeometry turned out to contain bugs. In both cases, open-source replacements were devised: OpenFold in the first case, and Newclid in the second…Because of this history, it could be that hidden bugs may be contained in AlphaEvolve, which do not make me trust the results it gives. In some cases, it will probably be easy to verify that the result it outputs is correct, but not in all cases. Note that this is different from LLM hallucinations, as here we have an automatic evaluator on which AlphaEvolve relies.

Although the model is not publicly available, academic researchers can apply for early access to AlphaEvolve.



Source link

Follow on Google News Follow on Flipboard
Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
Previous ArticleOpenAI’s $6.5 Billion Hardware Acquisition And HealthBench Work Will Accelerate Healthcare AI Capabilities
Next Article Anthropic’s New Claude AI Raises the Bar for Code Generation—And Red Flags for Security
Advanced AI Editor
  • Website

Related Posts

AI Futures Project: 2027 AI Forecast Report_The_years_OpenAI

September 6, 2025

Tracking Invest 91L toward the eastern Caribbean islands for next week

September 5, 2025

How EmbeddingGemma Delivers On-Device AI with Multilingual Capabilities

September 5, 2025
Leave A Reply

Latest Posts

Tony Shafrazi and the Art of the Comeback

Basquiats Linked to 1MDB Scandal Auctioned by US Government

US Ambassador to UK Fills Residence with Impressionist Masters

New Code of Ethics Implores UK Museums to End Fossil Fuel Sponsorships

Latest Posts

Koah raises $5M to bring ads into AI apps

September 7, 2025

$74B Market by 2032, Balancing Jobs and Ethics

September 7, 2025

OpenAI’s future, foretold? – by Gary Marcus

September 7, 2025

Subscribe to News

Subscribe to our newsletter and never miss our latest news

Subscribe my Newsletter for New Posts & tips Let's stay updated!

Recent Posts

  • Koah raises $5M to bring ads into AI apps
  • $74B Market by 2032, Balancing Jobs and Ethics
  • OpenAI’s future, foretold? – by Gary Marcus
  • New Google Gemma 3: Advanced AI Models for Text and AI Vision
  • Attorneys General to OpenAI: We’re Concerned About Child Safety, For-Profit Pivot

Recent Comments

  1. promocod-iherb-960 on [2102.10717] Abstraction and Analogy-Making in Artificial Intelligence
  2. promocod-iherb-865 on Chinese Firms Have Placed $16B in Orders for Nvidia’s (NVDA) H20 AI Chips
  3. russkoe-porno-789 on [2408.02288] Spin glass model of in-context learning
  4. russkoe-porno-408 on Baidu AI patent application reveals plans for turning animal sounds into words
  5. montenegro-725 on Chinese Firms Have Placed $16B in Orders for Nvidia’s (NVDA) H20 AI Chips

Welcome to Advanced AI News—your ultimate destination for the latest advancements, insights, and breakthroughs in artificial intelligence.

At Advanced AI News, we are passionate about keeping you informed on the cutting edge of AI technology, from groundbreaking research to emerging startups, expert insights, and real-world applications. Our mission is to deliver high-quality, up-to-date, and insightful content that empowers AI enthusiasts, professionals, and businesses to stay ahead in this fast-evolving field.

Subscribe to Updates

Subscribe to our newsletter and never miss our latest news

Subscribe my Newsletter for New Posts & tips Let's stay updated!

LinkedIn Instagram YouTube Threads X (Twitter)
  • Home
  • About Us
  • Advertise With Us
  • Contact Us
  • DMCA
  • Privacy Policy
  • Terms & Conditions
© 2025 advancedainews. Designed by advancedainews.

Type above and press Enter to search. Press Esc to cancel.