Skip to content
Snippets Groups Projects
Select Git revision
  • 3e52f0f030f44901ab78efd915aabb04035dfdd3
  • master default protected
2 results

Y_test_tile_8_subregion.npy

Blame
  • calculator.py NaN GiB
    # SPDX-FileCopyrightText: 2024 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC)
    #
    # SPDX-License-Identifier: MIT
    
    """
    Simple example methods used in git training.
    """
    
    __author__ = "Michael Langguth"
    __email__ = "m.langguth@fz-juelich.de"
    __date__ = "2024-07-22"
    __update__ = "2024-07-24"
    
    from typing import Union
    
    def add(a: Union[int, float], b: Union[int, float]) -> Union[int, float]:
        """
        Add numbers and return sum.
        :param a: first number
        :param b: second number
        :return: sum of a and b
        """
        return [...]
    
    def multiply(a: Union[int, float], b: Union[int, float]) -> Union[int, float]:
        """
        Multiply numbers and return product.
        :param a: first number
        :param b: second number
        :return: product of a and b
        """
        return [...]