<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=2528533714139722&amp;ev=PageView&amp;noscript=1">
New call-to-action
https://4295993.fs1.hubspotusercontent-na1.net/hubfs/4295993/INT_CIONET-International/VIDEO/CIONET_HM.mp4
CIONET - What's next

Connecting ambitious digital leaders and businesses around the globe.

Catch up on the upcoming CIONET Events

             
Banner

Netherlands Nov 10, 2025 Public Physical english

Reis mee: CIO Innovation trip Web Summit 11 nov 2025 Lissabon

CIONET Nederland vertrekt met een groep Nederlandse CIO's en digital leaders 10 t/m 12 november 2025 voor de geheel verzorgde CIO Innovation Trip naar de Web Summit in Lissabon, Portugal. Reis jij mee of neem je collega(s) mee!

Read More
Banner

Germany Nov 11, 2025 Country Members Physical english

München: The Agentic Advantage

On the eve of the ServiceNow World Forum, CIONET invites you to an exclusive dinner in the fabulous Restaurant Little London in the heart of Munich City. Join leading CIOs, CDOs, and ServiceNow product owners for a candid exchange on how to get the most from your ServiceNow investment.

Read More
Banner

Switzerland Nov 12, 2025 Country Members Physical english

Zurich: Mastering Digital Sovereignty

CIONET invites you to a private dinner with a select group of enterprise CIOs and senior infrastructure leaders in Zurich – part of a multi-country dialogue series with IT executives across Europe. This strategic dialogue is designed for digital leaders to share insights on one of the most pressing challenges facing today's leaders: How can organisations build true digital sovereignty in the face of geopolitical uncertainty, regulatory pressure, and growing technological dependencies?

Read More
Banner

Germany Nov 13, 2025 Country Members Physical german

Frankfurt: CIDO Women - Female Leadership Circle

Bauen Sie mit uns ein starkes Netzwerk führender WOMEN CIDOs aus der IT- und Technologiebranche auf! Unser zweites Treffen findet im PwC Experience Center in Frankfurt statt.

Read More
Banner

Belgium Nov 13, 2025 Country Members Physical english

The New CISO - CIONET Belgium: Community Event

The Role of the Chief Information Security Officer (CISO) The role of the Chief Information Security Officer (CISO) is no longer confined to securing the network perimeter. As organisations become more digitally connected and data-driven, the CISO’s responsibilities have expanded far beyond traditional security measures. Today’s CISO must not only defend against cyber threats but also enable the business to innovate securely, manage complex regulatory environments, and instill a culture of trust across the organisation. This event will explore the evolving role of the CISO as a strategic leader who balances security with business enablement. As digital transformation accelerates, how can CISOs align their security strategies with organisational goals, ensure compliance, and lead their teams in the fight against increasingly sophisticated threats? Key Discussion Points: From Gatekeeper to Strategic Partner: How CISOs can shift from being seen as barriers to innovation to becoming key enablers of business agility and transformation through security. Balancing Risk and Innovation: Learn how top CISOs navigate the delicate balance between mitigating risk and supporting the organisation’s need to innovate and scale in a secure environment. Governance, Risk, and Compliance (GRC): Explore how CISOs are managing an increasingly complex regulatory landscape, ensuring compliance while still driving business objectives forward. Building a Security-First Culture: Practical strategies for CISOs to foster a culture where security is embedded into every part of the business, from boardroom discussions to frontline operations. CISO as Crisis Manager: How to prepare for and lead your organisation through major cybersecurity incidents. From ransomware attacks to data breaches, we’ll discuss how today’s CISO is as much a crisis manager as they are a strategist. Why You Should Attend: As a CISO, your role is evolving faster than ever before. This event is designed to provide you with actionable insights into how to embrace your expanded responsibilities while keeping your organisation safe and secure. Whether you’re focused on aligning security with business goals, navigating regulatory challenges, or leading in times of crisis, this event will equip you with the strategies to lead the next era of cybersecurity.

Read More
Banner

UK Nov 13, 2025 Invitation Only Physical english

Engineering the AI-Native enterprise: From legacy burden to innovation engine

Join us on November 13th for the exclusive roundtable powered by Cognizant.

Read More

Recent Cases

Please Log In with your CIONET account first

How Cohere is accelerating language model training with Google Cloud TPUs

Cohere is accelerating LLM training with Google Cloud TPUs to provide larger and more accurate LLMs to developers.

 
 
 
 
https://storage.googleapis.com/gweb-cloudblog-publish/images/AIML_VbefCPO.max-2600x2600.jpg
 
Joanna Yoo

Machine Learning Engineer, Cohere

Vaibhav Singh

Sr. Product Manager

 

Over the past few years, advances in training large language models (LLMs) have moved natural language processing (NLP) from a bleeding-edge technology that few companies could access, to a powerful component of many common applications. From chatbots to content moderation to categorization, a general rule for NLP is that the larger the model, the greater the accuracy it’s able to achieve in understanding and generating language.

But in the quest to create larger and more powerful language models, scale has become a major challenge. Once a model becomes too large to fit on a single device, it requires distributed training strategies, which in turn require extensive compute resources with vast memory capacity and fast interconnects. You also need specialized algorithms to optimize the hardware and time resources.

Cohere engineers are working on solutions to this scaling challenge that have already yielded results. Cohere provides developers a platform for working with powerful LLMs without the infrastructure or deep ML expertise that such projects typically require. In a new technical paper, Scalable Training of Language Models using JAX pjit and TPUv4, engineers at Cohere demonstrate how their new FAX framework deployed on Google Cloud’s recently announced Cloud TPU v4 Pods addresses the challenges of scaling LLMs to hundreds of billions of parameters. Specifically, the report reveals breakthroughs in training efficiency that Cohere was able to achieve through tensor and data parallelism. 

This framework aims to accelerate the research, development, and production of large language models with two significant improvements: scalability and rapid prototyping. Cohere will be able to improve its models by training larger ones more quickly, delivering better models to its customers faster. The framework also supports rapid prototyping of models that address specific objectives — for example, creating a generative model that powers customer-service chatbot — by experimenting and testing new ideas. The ability to switch back and forth among model types and optimize for different objectives will ultimately allow Cohere to offer models optimized for particular use cases. 

The FAX framework relies heavily on the partitioned just-in-time compilation (pjit) feature of JAX, which abstracts the relationship between device and workload. This allows Cohere engineers to optimize efficiency, and performance by aligning devices and processes in the ideal configuration for the task at hand. Pjit works by compiling an arbitrary function into a single program (an XLA computation), that runs on multiple devices — even those residing on different hosts.

Cohere’s new solution also takes advantage of Google Cloud’s new TPU v4 Pods to perform tensor parallelism. which is more efficient than the earlier pipeline parallelism implementation. As the name suggests, the pipeline parallel approach uses accelerators in a linear fashion to scale a workload, like a single long assembly line. Accelerators must process each micro-batch of data before passing it along to the next one, and then run the backward pass in reverse order. 

Tensor parallelism eliminates the accelerator idle time of pipeline parallelism, also known as the pipeline bubble. Tensor parallelism involves partitioning large tensors (mathematical arrays that define the relationship among multiple objects such as the words in a paragraph) across accelerators to perform computations at the same time on multiple devices. If pipeline parallelism is an ever-lengthening assembly line, tensor parallelism is a series of parallel assembly lines — one making the engine, the other the body, etc. — that simultaneously come together to form a complete car in a fraction of the time.

These computations are then collated, a process made practical thanks to Google Cloud TPU v4 VMs, which more than double the computational power of their v3 predecessors. The superior performance of v4 chips has enabled Cohere to iterate on ideas and validate them 1.7X faster in computation than before.

 

 

"At Cohere, we build cutting-edge natural language processing (NLP) services, including APIs for language generation, classification, and search. These tools are built on top of a set of language models that Cohere trains from scratch on Cloud TPUs using JAX. The superior performance of v4 chips has enabled Cohere to iterate on ideas and validate them 1.7X faster in computation than before, allowing faster iterations for our researchers and higher quality results for our customers. The exceptionally low carbon footprint of Cloud TPU v4 Pods was another key factor for us."

Aidan Gomez, CEO and co-founder, Cohere

 

 

Why Google Cloud for LLM training?

As part of a multiyear technology partnership, Cohere leverages Google Cloud’s advanced AI and ML infrastructure to power its platform. Cohere develops and deploys its products on Cloud TPUs, Google Cloud’s custom-designed machine learning chips that are optimized for large-scale ML. Cohere’s recently announced their new model improvements and scalability by training an LLM using FAX on Google Cloud TPUs, and this model has demonstrated that transitioning from TPU v3 to TPU v4 has so far enabled them to achieve a total speedup of 1.7x . In addition to a significant performance boost, TPUs provide an excellent user experience with the new TPU VM architecture. Importantly, Google Cloud ensures that Cohere's state-of-the-art ML training is achieved with the highest standards of sustainability,  powered by 90% carbon-free energy in the world's largest publicly available ML hub.

By adopting Cloud TPUs, Cohere is making LLM training faster, more economical, and more agile. This helps them provide larger and more accurate LLMs to developers, and put NLP technology in the hands of developers and businesses of all sizes.

To learn more about these LLM training advances, you can read the full paper, Scalable Training of Language Models using JAX pjit and TPUv4. To learn more about Cohere's best practices and AI principles, you can check this article co-authored with Open AI and AI 21 Labs.

Checkout our CIONET COOKBOOK

cookbook

Embark on a culinary journey through the ever-evolving world of digital leadership with our third edition of the CIONET Cookbook: Recipes for Digital Success. Unveiling the intricate trilemma faced by today’s Master Chefs, our trailblazing European CIOs address a challenge at the nexus of customer interests, digital transformation strategies, and IT modernisation. Their secret? Synchronising the gearing between customer, business, and technology to create a frictionless movement through the digital landscape.

The CIONET Cookbook uses the analogy of a five-star restaurant to explain the importance of optimally integrated technology, with the CIO as Master Chef. In order to provide the best service to its customers, a top restaurant must have the right atmosphere, an inviting menu, a well-equipped kitchen, talented and committed front-of-house and kitchen staff and smooth-running processes that ensure an enjoyable experience for diners.

CIONET TV

 
Banner

Giuseppe Ficara - The Untold Story of Amplifon's Data & AI Transformation

Banner

Jesús Oliva, Head of Data & AI at Moeve - From Data Challenges to AI Leadership

Banner

Radosław Maćkiewicz - CEO at COI - Empowering Citizens Through Digital Innovation

Banner

Kalman Tiboldi - CTO & Founder at GemOne-TVH - Simplify or Die: Why Complexity Is the Real IT Challenge

Banner

Isabelle Droll - CIO for Airline, Corporate, Hotels & Resorts and Sustainability at TUI - Data, Diversity, and Destinations

Banner

Sharon Prior - CIO in transition - How Great Tech Leadership Begins with Business Thinking

CIONET Reports

 
Banner
Get your copy

How CIOs drive game changing results at scale?

The role of the CIO has evolved from managing systems to shaping outcomes: growth, resilience, and competitive edge are now won or lost in the technology arena. Today ’ s CIOs must balance stability with innovation, control costs while attracting scarce talent, and modernise legacy infrastructure while adopting emerging technologies.

Banner
Get your copy

A research proposal_AI and the Human Experience

As AI transitions from a specialised tool to an all-pervasive force, understanding its profound implications for our human lives is no longer merely academic but an urgent imperative for social well-being and strategic preparedness.

Banner
Get your copy

Cybersecurity in critical infrastructure

Geopolitical tensions have dominated the headlines for over two years now. In this context, the cyber threat landscape is also evolving rapidly. The protection and security of critical infrastructure – both physical and digital – is becoming increasingly important.

Join over 10.000 digital leaders worldwide

in our exclusive CIO community

Latest CIONET News

Join your local CIONET community

Discover the CIONET app

Staying ahead of trends and connecting with other CIOs was never easier.

In our new app, our members connect with other digital leaders from around the world to find better solutions to their challenges.

Connect with digital leaders like you

Share ideas, best practices, and new resources

Experience inspiring and thought-provoking content and conversations you can’t find anywhere else

Make better, more well-informed decisions about the topics that are most important to you

Anna Kopp (1)

Anna Kopp

Head of IT Germany and Regional Office Lead Munich, Microsoft

“The CIONET App allows us to learn from eachother and and find the courage to be authentic by hearing stories from others! Thanks to Tobias and the whole team for bringing us together:-) ”
Mauricio Amaro

Mauricio Amaro

IT Director, IT Thinker

“The main things that I would like to get from our community of Digital Leaders are: networking, share experiences, share best practices and successful cases, and comments and recommendations about providers.”
Vijay Anand

Vijay Anand

Vice president IT & Compliance, VisionaryRCM (A Carlyle Grp Company)

“The CIONET app provides a really cool platform to network and share insights.”

About CIONET

CIONET’s mission is to help IT executives become more at ease and above all more successful in their jobs. So they can do more than just keep up with change but ultimately define it. CIONET opens up a whole new universe of opportunities in IT management.

With the largest membership of corporate digital leaders across Europe, Latin America, US and Australia, CIONET has the expertise and pioneering vision to solve or address any IT management challenge.

Why join CIONET?

From our local and global events, from our publications and research to our executive education programmes, everything we do is aimed at making sure digital leaders maximise their potential.

Connect

with digital leaders who share your interests, who face the same challenges, who care about the same topics.

Share

stories, experiences, and ideas around our shared mission.

Learn

from our exclusive events, publications and research.

Find

inspiration, thought-provoking conversations, expert perspectives and exclusive first-hand content each and every day

Grow

and make better, more well-informed decisions on how to lead your digital business.

Maximise

your potential. Realise your ambitions.

About CIONET

Join CIONET

We'd love to welcome you as the newest member of our CIONET community where Digital Leaders unite. 

You can either send us a registered handwritten letter explaining why you'd like to become a member or you can simply talk to us right here!

Contact us

Would you like to know more about CIONET, membership or partnership opportunities? Do you have feedback or any other question? Send us a message!