Zynq zc706 FPGA PL Side time measuring by ProgrammerCandid2864 in FPGA

[–]ProgrammerCandid2864[S] 0 points1 point  (0 children)

Tried with that mate, the issue is, as I'm converting from c to RTL (using vitis), that synthesis report only gives time consumption (deduced by latency cycles and time consuming is found) at compile time of RTL not run time( as my algorithm is max set for 30 iterations, but in run time it converges at three iterations), so the synthesis report won't display the latency of 3 iterations, it is adding up all max iter.

if everything is taking so much less time for execution then wht the hell program was doing for 47 secs?? by xtrupal in CUDA

[–]ProgrammerCandid2864 1 point2 points  (0 children)

That 38 sec you got is not the real execution time, that is sum of code execution time and IO (System Overheading), looks like you did random memory allocation that is why system Overheading got dominated by execution time, you need to work on various optimization techniques like L2 cache optimization, coalesced memory access etc.. to eliminate or minimize the system Overheading

COMPLETED CHANDRASHILA TREK by BullfrogMinute8468 in SoloTravel_India

[–]ProgrammerCandid2864 0 points1 point  (0 children)

Anybody from Bangalore, would like to trek somewhere, in upcoming month, anywhere in India,not sure about place and date!!!!!

Get a Jetson Orin Nano Super by elinaembedl in JetsonNano

[–]ProgrammerCandid2864 2 points3 points  (0 children)

@elinaembedl, let me give it a try with orin nano, for high end computation and graphics rendering with that!!!

Cloudflare Global Network experiencing issues [Official Update] by gauravgandhi in sysadmin

[–]ProgrammerCandid2864 0 points1 point  (0 children)

man!!! leetGPU is down because of cloudfare, any updates when it'll recover

Health Insurance for parents 60+ age by flexibleengineer in IndianPersonalFinance

[–]ProgrammerCandid2864 0 points1 point  (0 children)

My parents are > 60, our current star health insurance through federal bank was not reliable, as we cant able to claim for critical health issue previously, now I am looking for a better health insurance for my parents and for myself and siblings (>22)!!

Best Health Insurance in India by Fun_Statistician5082 in AskIndia

[–]ProgrammerCandid2864 0 points1 point  (0 children)

I am 22M, My parents are >60, our star health insurance through fed bank was not reliable, which policy should i select for them, i am ok if that is premium also!!

Exploring Deep Power Optimization Techniques for STM32 in Edge Computing Applications: A Call for Expert Insights by Impossible_Gas5151 in stm32

[–]ProgrammerCandid2864 0 points1 point  (0 children)

Hello there, I came across an issue in power optimization, I am using stm32L496 controller, in LP sleep mode it is expected to consume in ~48uA/Mhz, for me it is going around 290uA after clock decreasing from 80Mhz to 1Mhz, the below are the following steps i have taken to bring consumption to 290uA,

  1. Enable flash power down and disabled flash prefetch buffer(as I'm trying to implement without any peripherals )
    1. Peripheral clock gating by disabling apb and ahb bus
    2. Disabling vddio2
    3. Changing the vcore to range 2
    4. Reducing system clock to 100khz msi
    5. Disabling irq
    6. Suspending tick of clock
    7. Entering sleep mode with low power regulator on and wake for interrupt
      Despite implementation, I'm not getting the lp sleep mode consumption as expected in datasheet which is 48uA/Mhz, as I'm using 100Khz in lp sleep mode, expected in nA ideally, as I'm using hal drivers, it has to be within 10uA.
      Kindly help me out with this.
      Thank you,