Home Technology peripherals AI Cryptocurrency craze subsides, mining companies turn to provide high-performance computing services for AI

Cryptocurrency craze subsides, mining companies turn to provide high-performance computing services for AI

May 24, 2023 pm 06:49 PM
ai cryptocurrency

加密货币热潮退去 矿企转身为AI提供高性能计算服务

News on May 11, last September, when the Ethereum blockchain no longer used the proof-of-work algorithm to verify transactions, the cryptocurrency market’s response to high-performance dedicated processors Demand disappeared almost overnight. Cryptocurrency miners that use or host graphics processing units (GPUs) are finding the cryptocurrency space increasingly difficult, and a key component of their once-thriving business is gone. Now, miners like Hive Blockchain and Hut 8 are looking for opportunities to repurpose their GPU processors into the booming artificial intelligence industry.

Jaime Leverton, CEO of Bitcoin mining company Hut 8, said in an interview: “If you can shift some of the investment in GPU mining equipment infrastructure to new areas, That makes sense."

GPU device infrastructure designed specifically to accelerate graphics rendering requires ongoing maintenance and investment that not all users are prepared for. As a result, Hut 8 and several other mining companies are using these chips to provide high-performance computing (HPC) services to customers in various industries. Nowadays, the booming and much-hyped field of artificial intelligence requires a lot of computing power and is also the transformation opportunity that mining companies have been looking for.

Hut 8 said that after just one year of operation, the HPC business generated approximately $16.9 million in revenue in 2022, accounting for approximately 11% of total revenue, in part due to the role of artificial intelligence customers promotion effect.

Hive Blockchain purchased $66 million worth of GPUs from Nvidia in early 2021. The company said it aims to increase HPC business revenue 10 times to $10 million by 2024 and 20 times by 2025. Analysts currently expect Hive Blockchain’s total revenue to reach approximately $98 million in 2024.

Not all cryptocurrency mining companies can effectively utilize the surplus of expensive processors on hand around the artificial intelligence craze. According to Bitpro Consulting, a consulting firm that provides brokerage services to mining companies, 5% to 15% of existing GPUs targeted at the cryptocurrency field can be repurposed for related fields such as artificial intelligence, computer vision, and generative graphic design.

In addition, the transformation to provide high-performance computing services in the field of artificial intelligence requires the acquisition of hardware, and labor costs will also increase significantly. However, many mining companies are currently struggling in the cryptocurrency field. Core Scientific, the listed Bitcoin miner with the largest computing power, declared bankruptcy last year, and many mining companies also warned of the adverse situation of tight internal liquidity. But Bitpro Consulting estimates that switching to artificial intelligence may be an opportunity to make up for the $15 billion that mining companies have burned through processors.

At the peak of the cryptocurrency craze in the past few years, a few Ethereum mining companies even began to snap up high-end processors. At that time, the price of Ethereum soared, and in November 2021, the price of Ethereum even hit a high of $4,870. Mining companies were willing to spend more money to buy high-end chips, thereby obtaining more economic benefits. But these companies soon discovered that they had bet not only on the price direction of Ethereum, but also on the availability of high-end processors in the cryptocurrency space.

In September 2022, Ethereum successfully completed the transition to the proof-of-stake algorithm, and chip computing power is no longer necessary. Not long ago, Ethereum hit a low of $880 after a series of thunderstorms in the crypto industry. Ethan Vera, chief operating officer of Luxor Technologies, a bitcoin mining products and services company, said that cryptocurrency miners may have difficulty competing with major data service providers such as Microsoft Azure or Amazon Web Services. To compete, after all, these platforms already offer a variety of tools and support staff to AI customers. But he said cryptocurrency miners’ experience in energy management may provide an advantage because artificial intelligence is as energy-intensive an industry as cryptocurrency mining.

“In order to compete in the high-performance computing space, miners need to find the competitive advantage they learned in mining,” Vera said. “For those miners that can successfully shift parts of their operations to high-performance computing, AI will be quite profitable. But it will certainly not be a cakewalk. Only the most skilled and tenacious miners will be able to truly do it. at this point."

The above is the detailed content of Cryptocurrency craze subsides, mining companies turn to provide high-performance computing services for AI. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve mysql cannot be started How to solve mysql cannot be started Apr 08, 2025 pm 02:21 PM

There are many reasons why MySQL startup fails, and it can be diagnosed by checking the error log. Common causes include port conflicts (check port occupancy and modify configuration), permission issues (check service running user permissions), configuration file errors (check parameter settings), data directory corruption (restore data or rebuild table space), InnoDB table space issues (check ibdata1 files), plug-in loading failure (check error log). When solving problems, you should analyze them based on the error log, find the root cause of the problem, and develop the habit of backing up data regularly to prevent and solve problems.

Understand ACID properties: The pillars of a reliable database Understand ACID properties: The pillars of a reliable database Apr 08, 2025 pm 06:33 PM

Detailed explanation of database ACID attributes ACID attributes are a set of rules to ensure the reliability and consistency of database transactions. They define how database systems handle transactions, and ensure data integrity and accuracy even in case of system crashes, power interruptions, or multiple users concurrent access. ACID Attribute Overview Atomicity: A transaction is regarded as an indivisible unit. Any part fails, the entire transaction is rolled back, and the database does not retain any changes. For example, if a bank transfer is deducted from one account but not increased to another, the entire operation is revoked. begintransaction; updateaccountssetbalance=balance-100wh

Can mysql return json Can mysql return json Apr 08, 2025 pm 03:09 PM

MySQL can return JSON data. The JSON_EXTRACT function extracts field values. For complex queries, you can consider using the WHERE clause to filter JSON data, but pay attention to its performance impact. MySQL's support for JSON is constantly increasing, and it is recommended to pay attention to the latest version and features.

Master SQL LIMIT clause: Control the number of rows in a query Master SQL LIMIT clause: Control the number of rows in a query Apr 08, 2025 pm 07:00 PM

SQLLIMIT clause: Control the number of rows in query results. The LIMIT clause in SQL is used to limit the number of rows returned by the query. This is very useful when processing large data sets, paginated displays and test data, and can effectively improve query efficiency. Basic syntax of syntax: SELECTcolumn1,column2,...FROMtable_nameLIMITnumber_of_rows;number_of_rows: Specify the number of rows returned. Syntax with offset: SELECTcolumn1,column2,...FROMtable_nameLIMIToffset,number_of_rows;offset: Skip

How to optimize MySQL performance for high-load applications? How to optimize MySQL performance for high-load applications? Apr 08, 2025 pm 06:03 PM

MySQL database performance optimization guide In resource-intensive applications, MySQL database plays a crucial role and is responsible for managing massive transactions. However, as the scale of application expands, database performance bottlenecks often become a constraint. This article will explore a series of effective MySQL performance optimization strategies to ensure that your application remains efficient and responsive under high loads. We will combine actual cases to explain in-depth key technologies such as indexing, query optimization, database design and caching. 1. Database architecture design and optimized database architecture is the cornerstone of MySQL performance optimization. Here are some core principles: Selecting the right data type and selecting the smallest data type that meets the needs can not only save storage space, but also improve data processing speed.

Monitor MySQL and MariaDB Droplets with Prometheus MySQL Exporter Monitor MySQL and MariaDB Droplets with Prometheus MySQL Exporter Apr 08, 2025 pm 02:42 PM

Effective monitoring of MySQL and MariaDB databases is critical to maintaining optimal performance, identifying potential bottlenecks, and ensuring overall system reliability. Prometheus MySQL Exporter is a powerful tool that provides detailed insights into database metrics that are critical for proactive management and troubleshooting.

The primary key of mysql can be null The primary key of mysql can be null Apr 08, 2025 pm 03:03 PM

The MySQL primary key cannot be empty because the primary key is a key attribute that uniquely identifies each row in the database. If the primary key can be empty, the record cannot be uniquely identifies, which will lead to data confusion. When using self-incremental integer columns or UUIDs as primary keys, you should consider factors such as efficiency and space occupancy and choose an appropriate solution.

Navicat's method to view MongoDB database password Navicat's method to view MongoDB database password Apr 08, 2025 pm 09:39 PM

It is impossible to view MongoDB password directly through Navicat because it is stored as hash values. How to retrieve lost passwords: 1. Reset passwords; 2. Check configuration files (may contain hash values); 3. Check codes (may hardcode passwords).

See all articles