• Accessing a mailbox across multiple files
    I declared a mailbox 'DMAmbx' in a header file called definitions.h, initialized it in the main function and used it to send messages through an interrupt service routine in a different file (dma.cpp...
  • Accessing a mailbox across multiple files
    I declared a mailbox 'DMAmbx' in a header file called definitions.h, initialized it in the main function and used it to send messages through an interrupt service routine in a different file (dma.cpp...
  • Top-k scoring across multiple dimensions
    In e.g. Natural Language Processing in Machine Learning , a beam-search is often used to predict the next objects to add on to a sequence and rank them. A key part of the beam-search is the top- k score...
  • Top-k scoring across multiple dimensions
    In e.g. Natural Language Processing in Machine Learning , a beam-search is often used to predict the next objects to add on to a sequence and rank them. A key part of the beam-search is the top- k score...
  • bdata problem
    can any one solve this #include <AT89X51.H> #include<stdio.h> bdata unsigned int a; sbit lsb=a^0; sbit msb=a^7; bit i; void main() { a=0xaa; while(1) { i=lsb; a=a>>1; msb=i; a^7=msb;...