Video yükleniyor...

Video Yüklenemedi

Ana Sayfaya Dön

⛓️ Aethir - the decentralized #GPU powerhouse reshaping #AI & #gaming! Aethir is building the future of high-performance computing with a global #DePIN network of 400,000+ enterprise-grade GPU containers (including #NVIDIA H100s, H200s & more) spanning 90+ countries. 📍 Two flagship products: • Aethir Earth – Bare-metal GPU cloud...

227,583 görüntüleme • 1 gün önce •via X (Twitter)

0 Yorum

Yorum bulunmuyor

Orijinal gönderinin yorumları burada görünecek

Benzer Videolar

Proud to announce the in-depth collaboration between Kingnet and Alibaba Cloud in AI Gaming. Alibaba Cloud provides world-leading cloud computing, big data, and AI services, with disclosed revenue exceeding $15 billion in 2024, which is one of the most renowned global server providers. When two superpowers collide, the game changes. 🌊AI Gaming R&D By integrating Qwen 's LLM and Alibaba Cloud 's PAI platform (including PAI-iTAG, PAI-Designer, PAI-DSW, PAI-DLC, and PAI-EAS), Kingnet has emerged as one of the gaming industry's pioneers in AIGC-powered content generation and AI rendering. Together, we are accelerating the realization of no-code game development. 🌊GPU Computing Resources Alibaba Cloud delivers GPU-accelerated elastic computing services with exceptional processing power, supporting diverse workloads including deep learning, scientific computing, graphics visualization, and video processing - providing robust GPU computing capabilities for KingnetAI's demanding requirements. 🌊Cloud Service Optimization Cloud server deployment has become the mainstream choice for small and mid-sized game studios in global operations. Leveraging Alibaba Cloud server advantages, we will develop and deploy more cloud-native games to meet user demands. The disruptive innovation we're bringing to the industry: 🔸Minute-scale game asset production replaces traditional week/month-long cycles 🔸Single-digit dollar development costs VS traditional four-figure entry thresholds 🔸AI-powered NPCs with behavioral engines deliver dynamic player interactions, breaking static story constraints, etc. 🔜Kingnet AI V2 is approaching launch. The Agent system and game generation engine will be officially deployed across 3 chains: 🔹Leveraging Solana high throughput and low gas fee , Solana has consistently been a developer favorite, latest product will be deployed on Solana - with users paying $SOL for on-demand asset creation fees. 🔹Another key partner is BNB Chain ,We are actively participating in both the #BNBAIHack and the latest MVB 10. Powered by BNB Chain long-standing support for AI innovation. Kingnet V2 and NFT drop will be deployed on BNB Chain, providing developers and the community with comprehensive game-generation tools and support. 🔹As an early strategic partner of Kingnet, TON 💎 @TONEastAsia was one of the earliest chain to connect Web2 and Web3, Kingnet V2 will be deployed on TON, providing TON game developers with low-cost, high-efficiency asset generation, and supporting users to use $TON as an asset generation cost. The Future of AI Gaming is coming.

Kingnet AI

149,774 görüntüleme • 1 yıl önce

🌎VerAI is leading the charge for a greener AI future! Traditional AI training in massive data centers burns through energy, emitting CO2 equivalent to thousands of cars.🚗☁️☁️ But VerAI changes the game by using idle CPU/GPU power from contributors’ PCs 💻 Starting from a waitlist base of 30K contributors, we’re tapping into resources already in use, slashing the need for energy-hungry servers and cutting carbon emissions while you earn $VERAI. With this growing community, we’re building a sustainable ecosystem that proves innovation doesn’t have to cost the planet. ☘️🌱🌞 🛠️On the tech side, our platform on Base layer-2 dynamically detects unused compute power in real time, ensuring efficient allocation for AI tasks. Contributors can monitor their impact and earnings hourly, while developers access affordable resources to build transparent AI. It’s a win-win: your PC powers the future of AI, and you get rewarded all with minimal environmental impact.🌲 📊Here’s a mind-blowing fact: If 750 million PCs globally joined VerAI, we could save approximately 62.95 million metric tons of CO2 per year by reducing reliance on energy-intensive data centers for AI training. This calculated estimate assumes 80% of global AI workloads shift to VerAI’s distributed network, using idle resources that would otherwise go to waste. That’s like taking 13.5 million cars off the road annually! Join the waitlist and help us make AI sustainable! 👉 #GreenAI #Earncrypto #BlockchainInnovation

VerAi

13,027 görüntüleme • 1 yıl önce

OptimAI Lite Node v1.1: Built for Scale, Designed for You! 💕 In just 2 weeks since the launch, the OptimAI Network has seen explosive growth—130,000+ active node participants powering the future of decentralized AI. With this incredible momentum came a new challenge: ensuring our network could scale seamlessly to support massive concurrent connections and real-time participation. That’s why we’ve rolled out OptimAI Lite Node v1.1—a major upgrade focused on: + Stabilizing infrastructure to handle high traffic from a global community. + Enhancing performance for smoother data mining, validation, and edge compute participation. + Refining user experience with UI updates that make contributing effortless. Every line of code and infrastructure upgrade was made with one goal in mind: to support YOU—the builders, validators, and visionaries of the OptimAI ecosystem. Now’s the time to bring more friends into the journey. 🔥 The more we grow, the smarter and stronger the network becomes—and the greater the rewards. Let’s keep building, validating, scaling. Together we’re not just powering AI—we’re reshaping how it’s built. Join or revisit the node here: 🌐 Chrome Extension: 📱Telegram Mini-App: What’s Coming Next: OptimAI Edge Node & the Rise of Agentic AI 🔸OptimAI Edge Node (Mobile) We’re working hard on the next major release: the Edge Node for mobile, which will allow mining and AI tasks to run in the background—unlocking more earning opportunities and decentralized compute power from your smartphones. 🔸More Task Types & Missions Expect new types of contributions, from AI-enhanced data validation to edge inference and scraping automation—powered by autonomous mining agents. 🔸Expanded Rewards Program As we grow, more reward tiers, bonuses, and campaigns will be introduced. Your participation now paves the way for long-term benefits. Also, do not forget to checkout our article below and learn more about our latest Community Tips & Best Practices!👇 __________________ OptimAI Network #L2 #DePIN Reinforcement Data Network for #Agentic #AI Mine Data. Fuel AI. Earn Rewards. Turn Your Data into Tomorrow’s AI #Agent. Visit our website at:

OptimAI Network

76,472 görüntüleme • 1 yıl önce

Day 11/90 of Inference Engineering How does vLLM work and how is it used in production? Before we discuss how vLLM works internally, it helps to understand what vLLM is. At a high level, vLLM is an inference engine that is designed to serve LLMs to thousands of concurrent users efficiently while managing scarce compute and memory. The goal for vLLM is to maximize throughput and minimize latency; optimizing for the best inference economics and experience for end users. With every request from the end user, it eventually ends up in the engine core, gets scheduled alongside other requests from other concurrent users, executes on the GPU, and updates the KV cache with the new key and value vectors, and streams the tokens back to the user. The Scheduler decides what requests should execute next while continuously batching requests together to maximize GPU utilization. Continuous batching is an inference optimization that allows new requests to join a running batch as other requests finish generating tokens. This helps with keeping the GPU utilization high instead of letting it sit idle waiting for an entire batch to complete generating. After the scheduler dispatches the selected batch to the Model Executor, the Model Executor prepares the tensors and metadata required for inference, retrieves each request’s block table from KV Cache Manager, launches the optimized transformer forward pass on the GPU, computes the logits, updates the KV cache with the new key and value vectors, and finally returns the results for sampling and streaming. The KV Cache Manager uses the PagedAttention memory layout to allocate fixed-size cache blocks on demand and maintains a Free Block Queue on the CPU that tracks which blocks in the GPU’s Paged KV Cache are currently free. When a request needs additional KV cache space, the KV Cache manager takes a free block from the queue and assigns it to that request, thus avoiding an expensive search through GPU memory for available cache blocks. All of these components form the core of vLLM’s inference engine. The Scheduler determines what requests are executed, the Model Executor determines how those requests are executed, the KV Cache Manager determines where each request’s KV cache lives using the PagedAttention Memory Layout. This architecture enables vLLM to serve thousands of concurrent requests with high throughput, low latency, and efficient GPU memory utilization. Heres a little animation that visualizes everything! - I've also completed the forward pass for my mnist.c project. I had a nice chat with shrey birmiwal, such a knowledgeable guy. Excited to learn more about vLLM and implement a tiny-vLLM one day.

max fu

70,543 görüntüleme • 1 ay önce

🚀 Early Access to Sahara AI Studio is NOW OPEN! The next phase of our testnet is here with exclusive early access to our all-in-one platform designed to transform the AI development lifecycle into a streamlined, integrated experience. Here’s everything you need to know 👇 AI development is fragmented. Devs juggle multiple tools, leading to inefficiencies & high costs. Sahara AI Studio integrates the entire AI lifecycle—from datasets & model training to secure storage & scalable compute—into one seamless experience: 📊 Data Hub: Discover, Manage, and Leverage AI-Ready Datasets Access high-quality, domain-specific, open-source and proprietary datasets through an integrated marketplace. Developers can download, import, or label datasets, making it easier to train and fine-tune models or deploy RAG pipelines. Secure uploads and seamless workflow integration enhance the experience. 🤖 Model Hub: Discover, Customize and Scale AI Workflows with Ease Discover ready-to-use open-source and proprietary models, RAG pipelines, and customizable workflows. Developers can deploy models quickly while maintaining privacy and security through Sahara Vaults. 🖥️ Compute Hub: Flexible, Scalable Compute Resources for AI Innovation Access scalable and secure computing resources tailored to diverse AI workloads. Trusted Execution Environment (TEE) capabilities ensure data privacy, while integration with top compute providers offer flexibility for developers. 🔐 Vaults: Secure Storage for AI Assets Securely store, organize, and manage datasets, models, and other assets in an encrypted central repository. Vaults offer scalability, reproducibility, and user control over AI resources. This is more than just beta testing a platform—it's your chance to help shape the future of decentralized AI development. 📅 How to Apply We're onboarding select developers in a phased approach. Early Access spots are limited, so apply now:

Sahara AI 🔆

2,700,903 görüntüleme • 1 yıl önce

Free NVIDIA GPU with 16 GB VRAM GPU for Running Local LLMs! If you want to master local LLMs but you're waiting until you can afford a $1,500 GPU, you're honestly not going to make it. The open source AI ecosystem is moving way too fast for you to wait on your budget to catch up. Especially when you can build a bleeding edge inference engine from scratch right now, completely for free. You don't need a heavy local rig to start. Google is literally letting you use an enterprise grade NVIDIA Tesla T4 GPU for $0/hour. At standard cloud computing rates (~$0.20/hr), Google Colab’s 4 hour daily free tier hands you roughly $24 worth of data center tier GPU compute every single month. And most people just waste it. Let’s talk about the hardware you get access to for free. The NVIDIA Tesla T4 is an absolute workhorse: - Architecture: NVIDIA Turing (TU104) - VRAM: 16GB GDDR6 (320 GB/s bandwidth) - Compute: 320 Tensor Cores | 2560 CUDA Cores - Performance: 130 TOPS INT8 | 8.1 TFLOPS FP32 - Power: Sipping energy at a max 70W TDP This is the exact same hardware I used to run DeepMind's Gemma 4 26B A4B QAT MoE at a 250,000 context window without a single Out Of Memory (OOM) crash. If you have a web browser and 10 minutes, you have everything you need. I’ve put together a fully documented, cell by cell Google Colab notebook that teaches you exactly how to do this. Here is what the notebook actually teaches you: - How to provision an Ubuntu Linux environment with CUDA 13.0 and verify your driver stack. - How to pull the source code and compile the latest llama.cpp C++ binaries from scratch, specifically optimizing the build for your exact GPU using the -DCMAKE_CUDA_ARCHITECTURES=native flag. - How to directly download quantized local LLMs (GGUF format) straight from HuggingFace using the CLI. - How to manage 16GB VRAM limits, offload neural network layers to the GPU, and push massive context windows. Compile raw llama.cpp, ollama run a model, or spin up the LM Studio CLI. Pick whatever stack you are comfortable with. just start building. No hardware. No credit card. No excuses. Bookmark this post right now so you don't lose the tutorial. Even if you don't have time to run it today, you are going to want this workflow in your engineering toolkit. The link to the free Colab Notebook is in the comments below. Lemme know if you need more tutorials like this.

Alok

178,744 görüntüleme • 1 ay önce

ALIENX 👽⛓️ Crypto: A New Frontier in Blockchain Technology ALIENX is a decentralized blockchain platform that aims to revolutionize the way we interact with digital assets. Powered by a network of AI nodes, ALIENX offers a secure, scalable, and efficient environment for various blockchain applications, including NFTs and gaming. Key Features of ALIENX Crypto: AI-Powered Nodes: ALIENX utilizes a network of AI nodes to enhance blockchain performance, security, and intelligence. These nodes continuously learn and adapt to optimize network operations. Staking: Users can stake their ALIENX tokens to earn rewards and contribute to the network's security. Staking also grants users voting rights in the ALIENX governance system. NFT Ecosystem: ALIENX is designed to support a thriving NFT ecosystem. Creators can easily mint and sell their NFTs on the platform, while collectors can discover and acquire unique digital assets. Gaming Integration: ALIENX is actively exploring partnerships with game developers to integrate blockchain technology into gaming experiences. This could enable players to own in-game assets, trade them, and participate in play-to-earn mechanics. ALIENX Token: The native token of the ALIENX ecosystem is AIX. AIX is used for various purposes, including: Governance: AIX holders can participate in governance decisions through voting on proposals. Staking: Staking AIX rewards users with additional AIX tokens. Fees: AIX is used to pay transaction fees on the ALIENX network. Why Choose ALIENX Crypto? ALIENX offers a number of advantages over other blockchain platforms, including: Enhanced Security: The AI-powered nodes provide a more secure environment for storing and transacting digital assets. Scalability: ALIENX is designed to handle a large number of transactions, making it suitable for high-demand applications. Efficiency: The AI nodes optimize network performance, resulting in faster transaction times and lower costs. Community-Driven: ALIENX is governed by its community, ensuring that the platform evolves to meet the needs of its users. Join the ALIENX Revolution: If you're looking for a blockchain platform with a bright future, ALIENX is worth considering. By leveraging AI and blockchain technology, ALIENX has the potential to become a leading player in the digital asset space. Follow us on Twitter for the latest updates and news: [ALIENX 👽⛓️] Here are some additional resources: ALIENX Website: ALIENX Funding #ALIENX #AIBlockchain #NFTRevolution #Crypto #Web3Innovation

ボス-NFT ALL CHAIN GIVEAWAY🇯🇵

279,886 görüntüleme • 1 yıl önce

Elon Musk gave the entire entertainment industry its expiration date, and he is the one building the thing that kills it. Musk: “My guess is that we see the first compelling half hour, pure AI show next year.” Next year. A complete show generated entirely by AI. No writers. No actors. No cameras. No sets. No crew. No studio. Just a prompt and enough compute to render a reality that never physically existed. And shows are the easy part. Musk: “I say probably we’re maybe three years away from AI does the whole video game.” A show plays the same way every time. A game has to generate a living world that reacts to every decision in real time across every single frame. That is a fundamentally harder class of problem. And Musk put three years on it. Right now a single AAA title takes seven years and half a billion dollars across thousands of engineers and artists just to ship it. Musk is describing a world where one person types a paragraph and gets something comparable. The entire value proposition of a multi-billion dollar industry lives inside that gap. And it closes in thirty-six months. But the prediction is not the story. The person making it is. This is not an analyst speculating from the sidelines. This is the man building the largest AI compute clusters on the planet. The man who built xAI from zero in under two years. The man stacking hundreds of thousands of GPUs into facilities designed to do exactly what he is describing. When Musk says three years, he is not guessing about what someone else might eventually ship. He is reading you a delivery date off his own roadmap. Every media company on Earth is valued on a single assumption. That quality content is expensive and difficult to produce at scale. That one assumption is the structural foundation underneath every studio, every network, and every publisher in existence. Musk is dismantling it with raw compute. The studios still parading thousand-person production teams are not demonstrating strength. They are advertising the exact cost structure that one person with a prompt and a GPU allocation is about to make irrelevant. And it does not stop at entertainment. If AI can generate an interactive world that responds to human input in real time, it can generate anything. Advertising. Architecture. Training simulations. Product design. Every industry built on humans manually constructing visual experiences frame by frame is sitting on the same countdown Musk just read out loud. Now zoom out. Because this is not just an industry story. For the entire history of human civilization, the distance between imagining a world and actually creating one required thousands of people, millions of hours, and billions of dollars. That distance built Hollywood. That distance built the gaming industry. That distance made content scarce and studios powerful. Musk is collapsing that distance to zero. When the gap between imagining something and it existing disappears, every business model built on the difficulty of creation disappears with it. That is not disruption. That is a full inversion of how human beings create. Musk did not make a casual prediction on that podcast. He told you what he is building. He told you the timeline. And he told you which industries do not survive it. The entertainment industry is still debating whether this future is real. Musk is not part of that debate. He is building. And he just told you the delivery date.

Dustin

22,390 görüntüleme • 1 ay önce

A good technical LLM interview question: Your LLM chatbot takes 12s before it generates the first token, and the users are complaining. So you move the model onto a GPU with 3x the computing power. The time to first token barely improves. Why did this happen? (answer below) Latency in an LLM app is a placement problem disguised as a model problem. If you profile the 12 seconds, the model's prefill itself may only account for around 1.5 seconds of it. So halving the prefill step saves just 750ms out of 12000, which is under 7%. The rest is spread across stages that never touch the GPU. The request first travels to whatever region the app runs in, and a cross-continent round trip could cost over a second before any code executes. Then the request handler starts. On a container-based serverless platform under load, this adds several seconds of cold start, paid before auth, rate limiting, or prompt assembly even begins. Retrieval adds its own hop, and the response streams back across the same distance. Optimizing a stage that was already fast cannot alter the latency that's majorly affected by other stages. Those other stages are slow for a structural reason. An LLM app runs two workloads that want opposite machines. - The request path is short, spiky, and needs to sit close to users - Inference is long-running, GPU-bound, and billed hourly, whether requests arrive or not. So the actual decision is not which model to run, but where each of these two workloads runs. There are three options, each with its own tradeoffs: > A dedicated GPU box removes inference cold starts, but it bills around the clock and lives in one location, so distant users wait out the round trip on every request > Container-based serverless scales to zero, but the request path pays a cold start, and most of these platforms have no GPU behind them. > Edge runtimes start in under a millisecond, because a WebAssembly module carries no OS or container image to boot. They handle the request path well and cannot hold a model. So the answer is not to pick one, but to split the app across two of them. The request path runs close to users, and inference runs on a dedicated GPU it calls into. That also explains the failed upgrade. More compute made a stage that was already fast faster, and left the 10.5 seconds around it untouched. To actually learn how it's done in practice, Akamai's GitHub has a reference implementation for each half. - vllm-on-lke serves Qwen2.5-7B-Instruct behind an OpenAI-compatible endpoint on one RTX 4000 Ada GPU in Linode Kubernetes Engine, with Terraform creating the cluster, both firewalls, and the GPU operator in one apply. - akamai-functions-llm-chatbot covers the front, where a WebAssembly API checks a KV cache and only calls the GPU-backed instance on a miss. Both are available on Akamai’s new Developer Hub, alongside their tutorials and code samples. It also links to Edge Case, their Discord, where four developer advocates architect and deploy a production app live every other Wednesday. If you create a new Akamai Cloud account, you can also get $300 in credits for joining. Join here: That said, this post treats generation as a single 1.5s block, but that block has its own structure, and knowing it well tells you whether a model is slow to start or slow to stream. I wrote a first-principles walkthrough of it, covering the prefill and decode split, KV caching, and where the time actually goes inside each one. Read it below. Thanks to Akamai Cloud for partnering today!

Avi Chawla

21,423 görüntüleme • 8 gün önce