Category: 4. Technology

  • How AI Helps Maintain the Linux Kernel

    How AI Helps Maintain the Linux Kernel

    Meet AUTOSEL, a Linux maintainer that helps keep the kernel stable.

    AUTOSEL is a script, one that uses a Large Language Model (LLM) to complete its task.

    It does a thankless job, one loathed by all kernel maintainers, that of backporting patches.

    Backporting patches is a “very tedious and frustrating process” that “doesn’t scale,” said NVIDIA Distinguished Software Engineer Sasha Levin, in a talk at the Open Source Summit. The presentation focused on how AI is starting to be used in the Linux kernel community to help keep up with the Herculean tasks of maintaining the Linux kernel.

    It may not be writing exciting new features for the open source operating system kernel yet, but AI has excelled in tasks that are mind-numbingly repetitive yet still necessary. In other words, AI is already making the lives of Linux kernel developers easier, said Levin, who helps maintain the Linux Kernel Stable and LTS trees.

    Patch Inspection

    As the world’s single largest open source project, the Linux kernel gets updated and upgraded … a lot.

    The pace has remained constant: As many as 10,000 new patches have landed in the mainline kernel over a 10-week period.

    Stable and Long-Term Support (LTS) kernel maintainers usually review around 100 patches per day, every day, including weekends and holidays.

    Only a few, about 5-10, turn out to be suitable for backporting.

    Levin’s AUTOSEL, written in Rust, takes a first pass at incoming commits, looking for similarities across submitted commits and past backporting decisions, and suggesting only those to human committers to seem to be worthy of closer review.

    AUTOSEL is built from multiple LLMs, with each LLM used for a particular strength, as well as for cross-validation to reduce errors and hallucinations.

    For each commit, the tool creates mathematical representations (or “embeddings”) of the text that preserve semantic meaning for every commit in the kernel’s history, making them easily comparable.

    For human maintainers, the tools cuts down the number of commits that humans have to review. It even explains its reasoning in an email.

    Know Your Tools

    Like any other tool, the value of an LLM corresponds to how well it is understood by it user.

    You can think of Large Language Models as the next generation of compilers, providing developers with a jump in productivity, Levin said. They act like “massive state machines,” though what is unusual about them is that they perform state transitions in a probabilistic, rather than deterministic, manner.

    They are good at matching patterns given a huge number of parameters and an input provided by a user. A “temperature” parameter controls how probabilistic the LLM is, or how liberally it interprets its material.

    Other Uses

    And like any other technology, LLMs are first being tested in minor tasks.

    LLMs excel at “small, well-defined tasks.” Levin said.

    One such use is code generation and refactoring. Tightly-defined bug fixes, or converting code to other forms, such as standard APIs, are good tasks.

    For the 6.15 kernel release, Levin had an LLM write a patch to convert the open-coded hash table implementation to a standard API.

    Linux kernel 6.16 included git-resolve. This tool resolves incomplete or incorrect commit IDs, a nagging issue for core developers, though not one that occurs often enough to spend a lot of time manually writing a tool to figure out which commit an incomplete SHA-1 is actually connected to.

    It took Levin all of 20 minutes to work with the LLM to create the tool.

    It would take an engineer about half a day to create such a tool, making it not worth the effort given the relative rarity of the issue it addressed. Plus the LLM did a lot of extra credit: It created a set of self-tests and even documentation, which a human engineer would have done begrudgingly if at all.

    There’s no end of clean-up tasks that could be done with the kernel, Levin said. An LLM could help non-native English speakers write descriptive commit messages.

    CVE Classification

    Another tedious chore is classifying security vulnerabilities (CVEs), a task that the Linux kernel community took on in 2024.

    The work involves inspecting commits to see if they address security issues.

    Originally, a set of “hacky Bash scripts” was written to help.

    LLMs were used to replace the scripts with a set of far more refined tools written in Rust, which included a full set of testing tools and documentation.

    Using AUTOSEL as a launching point, a CVE classifier uses LLMs to identify commits that address security issues, and then goes on to check the vulnerability hasn’t already addressed in a previous patch. This is an overwhelming task for humans, given the 40 million lines of code that make up the Linux kernel.

    LLMs can understand the semantic meaning of the commits, which provides for a far more comprehensive matching capability. A Retrieval Augmented Generation (RAG) cycle pulls in the kernel’s development history and documentation (e.g., Git repositories) to minimize hallucinations.

    The LLMs effectively act as AI agents, Levin noted. They can run git commands, such as git blame, directly against the code repository to learn from the history of the kernel development itself.

    In summary, AI has thus far helped Linux scale its maintenance efforts, while enhancing consistency and reducing manual labor for tedious tasks.


    Group Created with Sketch.


    Continue Reading

  • Free UV packing tool Packer-IO 1.3 now integrates directly in Blender

    Free UV packing tool Packer-IO 1.3 now integrates directly in Blender

    Plugin developer 3d-io has released Packer-IO 1.3, the latest version of the free standalone UV packing application for games, motion graphics, VFX and visualization artists.

    New features include support for real-world scene scale units, and for texel density, making it possible for games artists to maintain consistent texture resolution across models.

    3dio has also released a separate free Blender integration plugin, UnwrellaConnect, which makes it possible to use Packer-IO directly inside the open-source 3D software.

    An efficient standalone UV packing tool for organic and hard surface models
    First released last year, Packer-IO is a free standalone UV packing tool.

    It automatically arranges the UV islands of an imported 3D model to minimise wasted UV space, reducing the total file sizes of its texture maps.

    The software can be used on both hard surface and organic models, and supports tiled UV layouts, used in applications like ZBrush.

    It works with assets with “thousands of charts and millions of polygons”, and is resolution-independent, so packing times remain constant, regardless of the resolution of the textures.

    However, it is currently purely a UV packing tool: it doesn’t unwrap the UVs of a model first. You can find more details in our original story on Packer-IO 1.0.

    Now supports scale units and texel density
    3d-io has now released its first feature updates to the software, in the shape of Packer-IO 1.2, which came out last month, and Packer-IO 1.3, which came out earlier this week.

    New features in version 1.2 include scale-aware packing, with users now able to specify real-world scene scale units, including both metric and imperial measurements.

    Games artists get support for texel density: it is now possible to specify a target resolution in pixels per centimeter, so that packed textures look visually consistent with those of other assets.

    Version 1.3 provides “vastly improved” hole filling, with Packer-IO packing smaller UV islands into the space left between larger islands more intelligently.

    New UnwrellaConnect plugin makes it possible to pack UVs directly inside Blender
    3d-io has also released a free connector plugin for Blender, UnwrellaConnect, which integrates Packer-IO with Blender’s UI, making it possible to pack UVs of models directly inside Blender.

    It supersedes UV-Packer for Blender, 3d-io’s old Blender plugin, which was based on the same core technology.

    The Blender download link on the UV-Packer website has now been redirected, although the other editions, UV-Packer for 3ds Max and UV-Packer for Unreal Engine, are still available.

    So how do Packer-IO and UnwrellaConnect differ from UVPacker for Blender?
    If you already have UV-Packer for Blender, one reason to update to Packer-IO and UnwrellaConnect would be better integration with the other tools in your production pipeline.

    Packer-IO itself supports 3D models imported from any DCC app, while UnwrellaConnect – as the name suggests – also works with Unwrella-IO, 3d-io’s commercial UV unwrapping tool.

    Packer-IO also features a more streamlined UI and workflow than previous UV packing tools.

    Licensing and system requirements
    Packer-IO 1.3 is compatible with Windows 10+ and macOS 10.15+. The software is free, and is licensed for use in commercial projects.

    UnwrellaConnect is compatible with Blender 4.2+. Source code is available under a MIT license.

    Download free standalone UV packing software Packer-IO from 3d-io’s product website

    Download free Blender integration plugin UnwrellaConnect from the plugin’s GitHub repository

    Have your say on this story by following CG Channel on Facebook, Instagram and X (formerly Twitter). As well as being able to comment on stories, followers of our social media accounts can see videos we don’t post on the site itself, including making-ofs for the latest VFX movies, animations, games cinematics and motion graphics projects.


    Continue Reading

  • Tiny turbines crack wind’s secret ‘twist’ for a giant 37% power boost

    Tiny turbines crack wind’s secret ‘twist’ for a giant 37% power boost

    Researchers have discovered that two tiny, counter-rotating wind turbines working in tandem can generate 37% more power than a single turbine alone. 

    This finding could unlock more efficient ways to provide decentralized power, from remote environmental sensors to personal electronic devices.

    While most people associate wind power with towering turbines, a team of researchers led by Shuo Zhang has been focusing on the potential of micro wind turbines, those with a diameter of less than 200 millimeters. 

    These diminutive powerhouses are critical for a world increasingly reliant on remote technology, from environmental sensors monitoring climate change in the Arctic to Internet of Things (IoT) devices powering smart agriculture. 

    However, their small size has traditionally meant lower aerodynamic efficiency and a higher cost per kilowatt, limiting their widespread adoption.

    Harnessing hidden “twist” advantage

    The team’s investigation into the interaction between pairs of these small turbines has yielded promising results for maximizing their energy-harvesting capabilities.

    Using a sophisticated technique called stereoscopic particle image velocimetry—a 3D mapping method that uses lasers and tracer particles to visualize airflow—the team analyzed the wake created by the front turbine.

    Using advanced imaging techniques, the scientists analyzed the turbulent airflows, or wakes, created by a micro wind turbine. They found that this wake still contains a significant amount of rotargy that is typically lost. 

    However, by placing a second, counter-rotating turbine directly behind the first at a distance of 12 radii, this rotational energy can be captured and converted into additional electricity.

    “Surprisingly, the counter-rotating arrangement consistently outperforms the co-rotating one — even at short distances, where wakes are highly turbulent and energy recovery is challenging,” said Michaël Pereira, an author on the study.

    The key to this enhanced performance lies in the unique physics of smaller turbines. Operating at lower speeds and with higher torque, they impart a distinct “twist” to the wind that a specially designed downstream partner can harness.

    Providing resilient power for critical infrastructure

    This breakthrough offers a new perspective on designing compact wind energy systems. 

    “It suggests that, much like multi-stage turbines in jet engines, micro wind turbines could benefit from tailored downstream designs — harvesting not only the wind’s push, but also its twist,” concluded Pereira. 

    The researchers hope their findings will spur further innovation in micro-scale renewable energy, making it a more viable option for a wide range of applications disconnected from a traditional power grid.

    Micro-turbine systems enhanced with this tandem design could provide resilient power for critical infrastructure, off-grid communities, and mobile applications, such as charging stations for drones or field robotics.

    “This study provides an experimental foundation that guides in designing an optimized system in terms of tip-speed ratios of the rotors and the distance between them,” concluded the study.

    The study has been published in the Journal of Renewable and Sustainable Energy.

    Continue Reading

  • Battlefield 6 Battle Royale mode leak explored | Esports News

    Battlefield 6 Battle Royale mode leak explored | Esports News

    After the disastrous performance of Battlefield 2042, it seems DICE is leaving no stones unturned for Battlefield 6 as the upcoming title is rumored to feature a full-fledged Battle Royale mode.There is no doubt that fans have been highly anticipating these titles for a long time, with the official reveal due this summer. Despite DICE being tight-lipped, rumors and leaks regarding the potential content of Battlefield 6 are surrounding the whole internet.

    Battlefield 6 battle royale mode leaked

    This leak comes from credible insider and Battlefield dataminer Temporyal. The leaker shared a very small clip on X featuring the potential Battle Royale mode of Battlefield 6. Although the video has been removed from X by DICE due to copyright infringement, but it already had generated a huge buzz amongst the fans, leaking major information about the game mode.According to Temporyal, the Battle Royale mode is set in California, and typical BR insertion in the mode will be done with the CH-47 Chinook. Not only that, the playzone circle or the “destructive ring” will be made of a compound named NXC. He also stated that this gameplay footage was based on the Battlefield Labs Alpha Client.However, this is not the first time that Temporyal leaked the Battle Royale mode in Battlefield 6. In May 2025, this leaker shared an extensive overview of how the BR mode is going to be in the upcoming title. He claimed that the core aspect of the BR mode in BF6 is going to be the same as its BR competitors, but it will have many unique features which will set it apart from the rest. For example, the BF6 BR mode will feature the Oversight system, with which, dead players can help their alive teammates by controlling their drones, turrets, cameras, and etc.This is going to be the second installment in the Battlefield series to feature full-fledged Battle Royale modes, after BF5. Battlefield 2042 did have a game mode named Hazard Zone, but the developers made it clear that this mode wasn’t a Battle Royale experience. The BR mode in BF5, named Firestorm, was a huge success. Even after that, the exclusion of a dedicated BR mode in BF 2042 was quite shocking. Now it seems DICE doesn’t want to repeat the same mistake, as Battlefield 6 is potentially going to include a Battle Royale mode. Another popular mode game mode might also make a comeback in Battlefield 6.Read More: When is Battlefield 6 going to be revealed?


    Continue Reading

  • Rocket Scientists Hooked Up ChatGPT to the Controls of a Spaceship, and the Results Were Not What You Might Expect

    Rocket Scientists Hooked Up ChatGPT to the Controls of a Spaceship, and the Results Were Not What You Might Expect

    AI Kirk

    Despite being stumped by simple children’s games and uncontrollably hallucinating, AI models could perform surprisingly well when put in charge of navigating space inside a simulated spacecraft, researchers have found.

    As Live Science reports, a team of scientists from MIT and the Universidad Politécnica de Madrid, Spain, instructed OpenAI’s blockbuster AI chatbot ChatGPT to “operate as an autonomous agent controlling a pursuit spacecraft.”

    To their amazement, as detailed in a paper slated to be published in the Journal of Advances in Space Research, they found that the large language model exceeded expectations, scoring second place in a space simulation competition based on the popular video game Kerbal Space Program that pitted several AI agents against each other.

    To Infinity and Beyond

    To test how autonomous agents could be used to maneuver satellites and other space-based assets, researchers created a software design challenge called the Kerbal Space Program Differential Game Challenge. Participants are encouraged to employ a number of different approaches, such as reinforcement learning.

    As part of the program, scientists pitted various autonomous systems against each other in several different scenarios.

    In the latest research, the team developed a way to translate instructions and queries about how to orient and maneuver a spacecraft into text and fed it to several commercially available LLMs. With only a small number of prompts, they found that ChatGPT, in particular, performed surprisingly well, coming in second place in the Game Challenge. First place, in an important caveat, went to a system based on equations that model spaceflight.

    Best of all, the research was conducted before OpenAI released its GPT-4 model in March 2023, suggesting the latest iterations might perform even better.

    But there are still plenty of reasons why we should think twice before handing over the controls to the tech. For one, the current crop of AI models still suffers from rampant hallucinations, which could make for an awkward — and particularly terrifying — twist in a deep space mission.

    More on AI: Tech Workers Say They’re Rapidly Being Replaced by AI

    Continue Reading

  • Gen Z Is Streaming Through The Workday — 84% Say It Boosts Focus, While Half Admit They’ve Delayed Tasks To Finish A Show

    Gen Z Is Streaming Through The Workday — 84% Say It Boosts Focus, While Half Admit They’ve Delayed Tasks To Finish A Show

    Gen Z employees often stream TV shows or movies during the workday, with 84 % saying it helps them focus, according to a recent Tubi–Harris Poll survey.

    The survey found that more than half, 53%, slowed assignments to finish an episode, and 48% admitted to lying to supervisors about their on-screen habits.

    Remote work, born of pandemic necessity, turned homes into hybrid offices and mini screening rooms. As virtual meetings increased, background TV morphed from guilty pleasure to workflow tactic.

    Don’t Miss:

    Tubi’s parent, Fox Corp. (NASDAQ:FOX, FOXA)), said the platform reaches 97 million monthly viewers in 2024, underscoring how entertainment infiltrates the workday. The same Harris dataset indicated that 81% say that watching ads is a fair trade-off for access to free content on streaming.

    Demand carries a price tag. According to Tubi and The Harris Poll, U.S. viewers shell out a combined $129 monthly on streaming and pay-TV bundles. In fact, 44% of young adults even cling to an ex-partner’s login even after they broke up.

    Workhuman, a human capital management software provider, defines a growing trend called “fauxductivity.” In an August 2024 research brief, Meisha-ann Martin, Ph.D., senior director of people analytics and research at Workhuman, said employees feel “expected to immediately respond to all messages,” pushing some to stage activity—mouse jigglers, fake status lights—rather than confront burnout.

    Trending: Maximize saving for your retirement and cut down on taxes: Schedule your free call with a financial advisor to start your financial journey – no cost, no obligation. 

    The Global Human Workplace Index, conducted by Workhuman, surveyed 3,000 full-time staff in the U.S., U.K., and Ireland and found 48% of executives admitted faking output is common on their team.

    Gallup’s “State of the Global Workplace,” published last month, reported that fully remote employees show higher engagement yet greater stress and loneliness than on-site peers. The firm said 45% of remote staff felt “a lot of stress yesterday,” implying many turn to background shows for relief during solitary stretches.

    “You can’t learn working from your basement,” JPMorgan Chase & Co. (NYSE:JPM) CEO  Jamie Dimon told Bloomberg in May, defending the bank’s five-day office mandate for most employees.

    Continue Reading

  • Honor Magic V Flip 2 launch timeframe leaks along with specs

    Honor Magic V Flip 2 launch timeframe leaks along with specs

    Honor launched the Magic V Flip back in June of last year, so by now you may be anxiously anticipating the release of its successor. According to a new rumor out of China, this is on the way, with its official unveiling most likely to take place in August.

    The device will have a 6.8-inch FHD+ LTPO folding OLED screen, and a 4-inch FHD+ LTPO OLED cover display, just like its predecessor. Camera-wise there will be a dual setup again, with a 50 MP main shooter with a 1/1.5″ sensor. This too could be the same as for the original V Flip.

    The new model will be powered by a Snapdragon 8 series chipset that isn’t the Elite, but unfortunately no more specific details are given by the source of this leak. The phone will have a 5,500 mAh battery with support for either 66W or 80W wired charging.

    So overall it’s not looking like a huge update, this, with the most important improvements being the new SoC and slightly bigger battery.

    Source (in Chinese)

    Continue Reading

  • Abee unveils powerful AI mini PC with AMD Ryzen AI max 395

    Abee unveils powerful AI mini PC with AMD Ryzen AI max 395





    Abee unveils powerful AI mini PC with AMD Ryzen AI max 395 – Daily Times



































    Continue Reading

  • Game On: You Can Now Drive a Ford Mustang GTD in Fortnite and Rocket League

    Game On: You Can Now Drive a Ford Mustang GTD in Fortnite and Rocket League

    The mightiest Mustang ever made is no longer for the lucky few. Anyone with a gaming console or PC can take control of the 815-hp Mustang GTD as it’s now available in the in-game stores of Fortnite and Rocket League.

    Interestingly, neither of these are actually racing sims. Fortnite is a “Battle Royale” game, but has increasingly become a showcase for automakers thanks to its 110 million monthly players. Ford is in good company, with Lamborghini, McLaren, Porsche, Ferrari, BMW, Nissan, Tesla, Jeep, Dodge, and Cadillac all offering cars to Fortnite players.. You’ll also find screen star cars such as K.I.T.T. from Knight Rider and the Nissan Skyline GT-R and Dodge Charger SRT Hellcat from the Fast and Furious franchise, as well as a bunch of vehicles developed just for the game. Ford’s lineup also includes the Shelby GT500, and Bronco Raptor.

    Fortnite players can use the new Mustang GTD to hoon around the map, and there are even gas stations to refuel, while each can also be customized. The Mustang GTD costs 2800 V-Bucks, which is rather less than the $325,000 of the real car and can also be had in T-Pain livery in a collaboration with the rap artist.

    Rocket League is essentially a soccer-style game, but instead of kicking a ball players drive exotic vehicles in an arena and try to score a goal against their opponent. Ford already offers the Mustang Mach-E, GT350R, Bronco Raptor and F-150 to Rocket League’s 100 million active monthly players. It also costs 2800 credits. Other carmakers showcasing their machines in the game include Aston Martin, BMW, McLaren, and Lamborghini. Movie machines from Batman, Back to the Future, Knight Rider, Jurassic World, and the Marvel universe also star.

    With both Fortnite and Rocket League free to download on almost every gaming platform, now anyone can take control of the ultimate pony car.

    Ford

    Continue Reading

  • Lauren James and Leah Williamson star in new ‘No Walkers, No Game’ ad ahead of UEFA Women’s Euros.

    Lauren James and Leah Williamson star in new ‘No Walkers, No Game’ ad ahead of UEFA Women’s Euros.

    Walkers has unveiled the latest iteration of its ‘No Walkers, No Game’ advertising campaign to drum up excitement in the run up to the UEFA Women’s Euros.

    Ahead of the Lionesses first game on Saturday 5th July the new ad and campaign features Lauren and Leah on their search for somewhere to watch the game. They visit unsuspecting pubs and bars surprising and delighting fans and pub goers. However, one condition of them staying to watch the game is the venue must serve Walkers. It will emphasise that there is no substitute for Walkers when the football is on, keeping the brand front of mind for shoppers stocking up on snacks ahead the UEFA Women’s Euros.

    The campaign was created by Sips & Bites, PepsiCo’s in house creative agency. Shot and produced by Washington Square films with Andrew Lane directing the latest spot. 

    The new ad will kick off a busy summer of sport for Walkers, including a host of activity around the UEFA Women’s EURO 2025. It builds on the huge popularity of the ‘No Walkers, No Game’ campaign in 2024, which included two TV ad spots featuring Thierry Henry and a series of exclusive giveaways, putting Walkers at the heart of football fans’ matchday experiences.


    Continue Reading