72 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
945
views
PyTorch Lightning's ReduceLRonPlateau not working properly
I have been trying to write a lightning module using both a warmup and an annealing function ReduceLROnPlateau and something really odd is happening. If the program reduces the learning rate, the ...
-1
votes
1
answer
94
views
Concurrent WebRequests result in exceptions if there is no warm-up
I need to implement concurrent WebRequests on my ASP.NET 6 server hosted on a Linux OS. I've created a barrier implementation (class BarrierTask) to handle parallel processing. However, occasionally (...
0
votes
0
answers
519
views
Use PowerMTA to warm up an external smtp server
i am using powermta to dispatch bulk and transactional emails using couple of virtual mtas mapped to different local virtual NIC's to go out from different IP's.
my question here is. in my ...
1
vote
0
answers
470
views
is it possible to use sidecar container for warming up main JVM container in k8s?
We checking different hypothesizes to warm up a JVM container that is hosted in a pod on a Kubernetes cluster. One of them is using second container within the same pod to leverage shadow traffic dump ...
1
vote
1
answer
340
views
how to warmup the system when evaluating prefetcher's performance with gem5?
Recently, I'm implement prefetch algorithm with gem5, and I want to warmup the system for a while before counting the performance. I try to use the -W WARMUP_INSTS paramenter to warmup my system with ...
5
votes
1
answer
248
views
Ways to speedup model _warmup_ for webgl backend?
I have a model and strict requirements for warm up time = 2s. Runtime speed is ok for us now.
I already tried to set
tf.env().set('WEBGL_EXP_CONV', true)
tf.env().set('WEBGL_USE_SHAPES_UNIFORMS', true)...
2
votes
2
answers
2k
views
gradually warm java application in k8s with istio
I have JVM-based applications that deliver excellent performance but need some time to "warm up" before reaching the top speed.
istio api (DestinationRule) does not support endpoint level weight, ...
0
votes
2
answers
879
views
JMeter to ignore warmup period
Contrary to How to exclude warmup time from JMeter summary?, as I don't want to spin up 20 threads all at once. Instead,
I want to ignore a certain warmup period (or a certain iterations), to exclude ...
0
votes
1
answer
1k
views
Azure App Service does not wait for warm-up from another Azure App Service
I have configured the warm-up on my App Service on IIS by indicating a custom initialization:
<applicationInitialization>
<add initializationPage="/Home/Warmup?warmup=1"/>
</...
0
votes
0
answers
212
views
Why first pocess calls, after app pool recycle, are failing?
PROBLEM: In a Sharpoint + BPM solution, running Windows 2012 with IIS 8, after the application pool is recycled, the first call of any type of process fails, all subsequent calls are successful.
...
0
votes
0
answers
2k
views
Azure Function Application warm up state
I am currently using multiple azure function app instances,
with the "apiVersion": "2015年08月01日" .
Currently I dont use any warmup triggers and only few functions stay always in &...
1
vote
0
answers
1k
views
How to pre warm-up Numba's JIT?
I have been struggling with Numba in the sense that whenever I write a function for it, it has a very long warm-up for the first time I use it. I wanted to ask is there a way to prewarm up the JIT ...
2
votes
1
answer
1k
views
How to preload used class when JVM starts?
I am developing a messaging system with Java that requires low latency processing (under 1 second). However, JVM takes warm-up time to process the first input data that causes latency increase (about ...
1
vote
1
answer
101
views
Janusgraph warm-up
Janusgraph does some internal activities due to which there are spikes in starting 1-2 runs.. (even at 10 QPS) and after that it gets stable. Once it's stable, no spikes are observed, is it expected ...
0
votes
3
answers
2k
views
Fastest way to restart a .NET web app programmatically
I’m writing some e2e tests for a web application where there is a lot of code I need to interact with that is outside my control. In order to setup my application at the start of each test or group of ...