Skip to content
View bridgesign's full-sized avatar

Highlights

  • Pro

Organizations

@OpenSource-IITGn

Block or report bridgesign

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. managed managed Public

    Managed tensor library for automatic multi-gpu allocation

    Python 5

  2. GAMMSim/gamms GAMMSim/gamms Public

    Python 6

  3. EdgeNILM EdgeNILM Public

    Forked from Rithwikksvr/EdgeNILM

    Python

  4. Toy-Go-compiler Toy-Go-compiler Public

    It's a toy Go compiler.

    C

  5. Creating a system call in xv6 for ke... Creating a system call in xv6 for keeping count of read syscalls on per prcoess basis
    1
    # Constructing a System call that gives the count of how many times System call Read was called.
    2
    We will be using xv6 OS for this exercise. In this exercise, we will construct a system call that can give read counts on per process basis and then modify it to obtain a system call that will give read counts of all processes since the start of kernel.
    3
    
                  
    4
    ## Adding the counter
    5
    To add a system call that can get the number of times the system call 'read' was used in a specific program, we require to make a variable that stores this count for each process.
  6. Torch Printer for sympy with full to... Torch Printer for sympy with full torch jit compatibility
    1
    # This is a modified version of the original file from the Modulus repository (NVIDIA)
    2
    # The original file can be found at:
    3
    #     https://github.com/NVIDIA/modulus-sym/blob/main/modulus/sym/utils/sympy/torch_printer.py
    4
    # The original file is licensed under the Apache License, Version 2.0
    5
    # The modified file is provided under the same license