×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

LOG IN TO YOUR ACCOUNT

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR PASSWORD?

AAH, WAIT, I REMEMBER NOW!

CREATE AN ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • INFO

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED
Questions and answers designated by tag: CPU

Can PyTorch run on a CPU?

Monday, 17 June 2024 by Agnieszka Ulrich

PyTorch, an open-source machine learning library developed by Facebook's AI Research lab (FAIR), has become a prominent tool in the field of deep learning due to its dynamic computational graph and ease of use. One of the frequent inquiries from practitioners and researchers is whether PyTorch can run on a CPU, especially given the common

  • Published in Artificial Intelligence, EITC/AI/DLPP Deep Learning with Python and PyTorch, Data, Datasets
Tagged under: Artificial Intelligence, CPU, DataLoader, Deep Learning, Model Training, PyTorch

Does PyTorch allow for a granular control of what to process on CPU and what to process on GPU?

Friday, 14 June 2024 by Agnieszka Ulrich

Indeed, PyTorch does allow for a granular control over whether computations are performed on the CPU or GPU. PyTorch, a widely-used deep learning library, provides extensive support and flexibility for managing computational resources, including the ability to specify whether operations should be executed on the CPU or GPU. This flexibility is important for optimizing performance,

  • Published in Artificial Intelligence, EITC/AI/DLPP Deep Learning with Python and PyTorch, Data, Datasets
Tagged under: Artificial Intelligence, CPU, Deep Learning, Device Management, GPU, PyTorch

Is it possible to cross-interact tensors on a CPU with tensors on a GPU in neural network training in PyTorch?

Friday, 14 June 2024 by Agnieszka Ulrich

In the context of neural network training using PyTorch, it is indeed possible to cross-interact tensors on a CPU with tensors on a GPU. However, this interaction requires careful management due to the inherent differences in processing and memory access between the two types of hardware. PyTorch provides a flexible and efficient framework that allows

  • Published in Artificial Intelligence, EITC/AI/DLPP Deep Learning with Python and PyTorch, Data, Datasets
Tagged under: Artificial Intelligence, CPU, GPU, Neural Network Training, PyTorch, Tensors

What are some of the challenges and trade-offs involved in implementing hardware and software mitigations against timing attacks while maintaining system performance?

Wednesday, 12 June 2024 by EITCA Academy

Implementing hardware and software mitigations against timing attacks presents a multifaceted challenge that involves balancing security, performance, and system complexity. Timing attacks exploit variations in the time it takes for a system to execute cryptographic algorithms or other critical operations, thereby leaking sensitive information. Addressing these attacks requires a deep understanding of both the underlying

  • Published in Cybersecurity, EITC/IS/ACSS Advanced Computer Systems Security, Timing attacks, CPU timing attacks, Examination review
Tagged under: Cache, CPU, Cryptography, Cybersecurity, Performance, Real-Time Systems

Why one cannot cross-interact tensors on a CPU with tensors on a GPU in PyTorch?

Thursday, 24 August 2023 by EITCA Academy

In the realm of deep learning, utilizing the computational power of Graphics Processing Units (GPUs) has become a standard practice due to their ability to handle large-scale matrix operations more efficiently than Central Processing Units (CPUs). PyTorch, a widely-used deep learning library, provides seamless support for GPU acceleration. However, a common challenge encountered by practitioners

  • Published in Artificial Intelligence, EITC/AI/DLPP Deep Learning with Python and PyTorch, Advancing with deep learning, Computation on the GPU, Examination review
Tagged under: Artificial Intelligence, CPU, Deep Learning, GPU, PyTorch, Tensors

What will be the particular differences in PyTorch code for neural network models processed on the CPU and GPU?

Wednesday, 23 August 2023 by EITCA Academy

When working with neural network models in PyTorch, the choice between CPU and GPU processing can significantly impact the performance and efficiency of your computations. PyTorch provides robust support for both CPUs and GPUs, allowing for seamless transitions between these hardware options. Understanding the particular differences in PyTorch code for neural network models processed on

  • Published in Artificial Intelligence, EITC/AI/DLPP Deep Learning with Python and PyTorch, Advancing with deep learning, Computation on the GPU, Examination review
Tagged under: Artificial Intelligence, CPU, GPU, Mixed Precision Training, Neural Networks, PyTorch

Can PyTorch neural network model have the same code for the CPU and GPU processing?

Monday, 21 August 2023 by Nguyen Xuan Tung

In general a neural network model in PyTorch can have the same code for both CPU and GPU processing. PyTorch is a popular open-source deep learning framework that provides a flexible and efficient platform for building and training neural networks. One of the key features of PyTorch is its ability to seamlessly switch between CPU

  • Published in Artificial Intelligence, EITC/AI/DLPP Deep Learning with Python and PyTorch, Advancing with deep learning, Computation on the GPU
Tagged under: Artificial Intelligence, CPU, Deep Learning, GPU, Neural Network, PyTorch

How can the device be specified and dynamically defined for running code on different devices?

Sunday, 13 August 2023 by EITCA Academy

To specify and dynamically define the device for running code on different devices in the context of artificial intelligence and deep learning, we can leverage the capabilities provided by libraries such as PyTorch. PyTorch is a popular open-source machine learning framework that supports computation on both CPUs and GPUs, enabling efficient execution of deep learning

  • Published in Artificial Intelligence, EITC/AI/DLPP Deep Learning with Python and PyTorch, Advancing with deep learning, Computation on the GPU, Examination review
Tagged under: Artificial Intelligence, CPU, Deep Learning, Device Specification, GPU, PyTorch

What is the speed-up observed when training a basic Keras model on a GPU compared to a CPU?

Saturday, 05 August 2023 by EITCA Academy

The speed-up observed when training a basic Keras model on a GPU compared to a CPU can be significant and depends on several factors. GPUs (Graphics Processing Units) are specialized hardware devices that excel at performing parallel computations, making them ideal for accelerating machine learning tasks. In this context, TensorFlow, a popular deep learning framework,

  • Published in Artificial Intelligence, EITC/AI/TFF TensorFlow Fundamentals, TensorFlow in Google Colaboratory, How to take advantage of GPUs and TPUs for your ML project, Examination review
Tagged under: Artificial Intelligence, CPU, GPU, Keras, Machine Learning, TensorFlow
Home

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (105)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Medium publ.)
  • About
  • Contact

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.

Eligibility for EITCA Academy 80% EITCI DSJC Subsidy support

80% of EITCA Academy fees subsidized in enrolment by

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on X
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF) in series of projects since 2007, currently governed by the European IT Certification Institute (EITCI) since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    EITCA Academy
    • EITCA Academy on social media
    EITCA Academy


    © 2008-2025  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP
    Chat with Support
    Chat with Support
    Questions, doubts, issues? We are here to help you!
    End chat
    Connecting...
    Do you have any questions?
    Do you have any questions?
    :
    :
    :
    Send
    Do you have any questions?
    :
    :
    Start Chat
    The chat session has ended. Thank you!
    Please rate the support you've received.
    Good Bad