Skip to main content
Filter by
Sorted by
Tagged with
4 votes
1 answer
60 views

I am facing some strange timings with the RegularGridInterpolator from scipy. Splitting the interpolation into 100 chunks and concatenating the final result seems to be faster for large arrays: When ...
Mads M Pedersen's user avatar
0 votes
0 answers
37 views

so i am trying to run a matter instance in a worker thread. Im running it with my own loop as shown below. However I'm experiencing trouble with game pacing. Before getting to the explanation here is ...
lord_drgical's user avatar
-2 votes
2 answers
133 views

I'm developing a console application that periodically executes two threads: one for a tickEvent function and another for updating the console display. Currently, each thread simply blocks on a ...
Isaac Honeyman's user avatar
0 votes
1 answer
61 views

I just discovered Godot introduced Dictionary type-casting in v4.4, and I decided to play around with it a bit. I was curious whether using type-cast dictionaries would be more or less efficient time-...
Frasher Gray's user avatar
2 votes
0 answers
54 views

I was taking a look at the authentication TLV implementation for linuxPTP stack. If I understand correctly, once you configure two nodes and if you provide a pair of keys to the two nodes, ...
romi's user avatar
  • 23
0 votes
2 answers
74 views

Im working on a bash profiling tool called timep that gives per-command runtime profile for bash scripts and functions. It does this using a DEBUG trap to record start time and stop time for each ...
jkool702's user avatar
1 vote
1 answer
101 views

I'm comparing the speed difference between these two methods of updating a column on a data table (for testing, the flag column is 50% TRUE, 50% FALSE): A[flag==TRUE,b:=b + myfunc(a,b)] A[,b:=b + ...
Sinnombre's user avatar
  • 468
0 votes
1 answer
69 views

I'm sure this has something to do with the timing of things loading, but I can't figure it out. I'm using Oracle's Jet charting libraries and trying to convert the y-axis to a percent When I run this ...
theduckspants's user avatar
0 votes
1 answer
97 views

In a project, I am trying to create a slideshow on part of a form, animating a picturebox and sliding it from right to left, and this is working fine as long as I use only one image. If I loop within, ...
Phil91's user avatar
  • 9
1 vote
2 answers
132 views

I have an old app written in Delphi BDS 2006. The app communicates with an external device via the serial port which requires a quite accureate timing on sending data. The timing must be 2ms, so I use ...
digi's user avatar
  • 41
0 votes
0 answers
113 views

I have a user-space program that implements a simple timer function using a thread to count down for 24 hours const int SECONDS_IN_24_HOURS = 24 * 60 * 60; DWORD WINAPI TimerThreadFunction(LPVOID ...
eden sson's user avatar
-1 votes
2 answers
391 views

If I run following code: import numpy as np from time import perf_counter as T Shapes=[ (3,5), (30,50), (300,500), (3000, 5000), (30000, 50000) ] for shape in Shapes: h,w = shape a = np....
user avatar
0 votes
1 answer
50 views

Given the code below and it's output, what could explain "1:" taking 80 times longer? If run in debug mode, the difference is reduced to 40x longer. Still a significant difference. My first ...
Majid Askari's user avatar
0 votes
1 answer
86 views

I've got an HPCCG file I've been trying to compile. I want to compile it with the Intel oneAPI compiler which it does successfully but the results produced suggest the timer implementation isn't ...
Selorm K.aw's user avatar
0 votes
1 answer
273 views

I'm currently working on benchmarking algorithms in C++ on a Windows environment and seeking advice on best practices for conducting accurate performance evaluations. My setup involves using Windows ...
james dilaw's user avatar
1 vote
1 answer
483 views

I'm trying to write a 8 to 1 multiplexer code in Verilog, with the shortest possible delay. Because I'm trying to decrease the "slack" in my project, and in this path the multiplexers takes ...
Mr.Robot's user avatar
1 vote
0 answers
40 views

I'm trying to measure some programs, including some of those included in the CUDA samples, with nvprof in my environment with two Nvidia Quadro Q1000 GPUs. For 5_Domain_Specific/MonteCarloMultiGPU ...
Antonello Cioffi's user avatar
0 votes
1 answer
77 views

I have a timing issue in Word VBA. I am trying to open and update thousands of documents, each one with 2 timestamps in the footer that update upon opening to the date and time the document was ...
Christian Nelson's user avatar
0 votes
1 answer
413 views

I hope to use the Glance widget to achieve second level timing function. How can I achieve this? I would like to know where the Timer should be written and how it can be kept alive for a long time? ...
wzk's user avatar
  • 1
0 votes
1 answer
80 views

I have a command that is continually adding IPs (do not know the quantity) to a txt file called ips.txt shodan stream --alert=all --datadir=. --compresslevel=0 >> ips.txt I want to get the ...
ELMO's user avatar
  • 643
0 votes
1 answer
94 views

I am designing an experiment where, in each trial loop, an ImageStim is randomly drawn from a set of ~200 photos (each about 140kb) in a folder. ImageStim would start at 0.0 local trial time, and last ...
Yvette's user avatar
  • 1
3 votes
3 answers
2k views

I have a Windows application that is supposed to do something every 40 milliseconds precisely (actually it can be configured to anything, but 40 msec is a typical setting). It has plenty of time to do ...
jez's user avatar
  • 15.5k
0 votes
0 answers
343 views

I'm creating a Karaoke WebApp in React for some friends of mine and me. In my Karaoke App, i'm using multiple Media Files, at least two per song: One MP4 File which contains the video and the ...
SHRX's user avatar
  • 579
0 votes
1 answer
67 views

I'm reading data (16 bytes/4 floats) from my com port that comes in every 100us. At the same time I have an animation live update at a rate of 60fps (0.016667sec/frame) using the data at that instant. ...
Achen's user avatar
  • 21
1 vote
2 answers
238 views

Edit: I have changed the title of this question from "PowerShell: Why is this timing not working?" I originally thought the times reported had to be wrong, but I was wrong about that. The ...
NewSites's user avatar
  • 1,849

1
2 3 4 5
29