Displaying 20 results from an estimated 63730 matches for "second".
2010 Aug 18
13
Poor creat/delete files performance
...est and found the create/delete files performance
of btrfs is very poor.
The test is that we create 50000 files and measure the file-create time
first, and then delete these 50000 files and measure the file-delete time.
(The attached file is the reproduce program)
The result is following:
(Unit: second)
Create file performance
BtrFS Ext4
Total times: 2.462625 1.449550
Average: 0.000049 0.000029
Delete file performance
BtrFS Ext4
Total times: 3.312796 0.997946
Average: 0.000066 0.000020
The results were measured on a x86_64 server with 4 cores and 2 SAS disks.
By debuging, we f...
2016 Oct 21
2
Problem with REMAINDER? 957%60 be 15 remainder 57 not 15 remainder -3 ?
...7",
"sec=3") in new stack
-- Executing [7 at fromvoipfone201:6] Verbose("PJSIP/6001-00000007",
"1,957,3") in new stack
Where is -3 coming from?!?
I can flip it around by using ABS to stop people freaking out when
they hear a track is "15 minutes minus 3 seconds long", but it's still
incorrect, isn't it?
(I add the second MATH function to everything I do now to make it an
integer as it seems you never can tell with Asterisk, just ignore it!)
Any ideas? Thanks.
2005 Nov 21
5
question about disk performance in domU
...62M 4.0K 62M 1% /dev/shm
/dev/sda6 4.2G 3.6G 453M 89% /tmp
/dev/sda5 938M 205M 685M 23% /var
cctest1$ dmesg | grep DMA
DMA zone: 101376 pages, LIFO batch:16
cctest1$ for i in `seq 1 10`; do hdparm -tT /dev/sda1; done
Timing cached reads: 512 MB in 2.00 seconds = 256.00 MB/sec
Timing buffered disk reads: 44 MB in 3.00 seconds = 14.67 MB/sec
Timing cached reads: 528 MB in 2.01 seconds = 262.69 MB/sec
Timing buffered disk reads: 84 MB in 3.08 seconds = 27.27 MB/sec
Timing cached reads: 520 MB in 2.00 seconds = 260.00 MB/sec
Timing...
2015 Nov 04
3
NOUVEAU(0): DRI3 on EXA enabled
On 04.11.2015 11:57, Martin Peres wrote:
> On 02/11/15 08:28, poma wrote:
>> An interesting results.
>>
>> DRI2:
>>
>> $ vblank_mode=0 glxgears
>> ATTENTION: default value of option vblank_mode overridden by environment.
>> 6321 frames in 5.0 seconds = 1264.103 FPS
>> 6380 frames in 5.0 seconds = 1275.943 FPS
>> 6369 frames in 5.0 seconds = 1273.629 FPS
>> 6377 frames in 5.0 seconds = 1275.322 FPS
>> 6387 frames in 5.0 seconds = 1277.330 FPS
>> 6407 frames in 5.0 seconds = 1281.337 FPS
>> 6381 frames in 5.0...
2005 Nov 21
0
question about disk performance in domU
...62M 4.0K 62M 1% /dev/shm
/dev/sda6 4.2G 3.6G 453M 89% /tmp
/dev/sda5 938M 205M 685M 23% /var
cctest1$ dmesg | grep DMA
DMA zone: 101376 pages, LIFO batch:16
cctest1$ for i in `seq 1 10`; do hdparm -tT /dev/sda1; done
Timing cached reads: 512 MB in 2.00 seconds = 256.00 MB/sec
Timing buffered disk reads: 44 MB in 3.00 seconds = 14.67 MB/sec
Timing cached reads: 528 MB in 2.01 seconds = 262.69 MB/sec
Timing buffered disk reads: 84 MB in 3.08 seconds = 27.27 MB/sec
Timing cached reads: 520 MB in 2.00 seconds = 260.00 MB/sec
Timing...
2015 Nov 02
2
NOUVEAU(0): DRI3 on EXA enabled
An interesting results.
DRI2:
$ vblank_mode=0 glxgears
ATTENTION: default value of option vblank_mode overridden by environment.
6321 frames in 5.0 seconds = 1264.103 FPS
6380 frames in 5.0 seconds = 1275.943 FPS
6369 frames in 5.0 seconds = 1273.629 FPS
6377 frames in 5.0 seconds = 1275.322 FPS
6387 frames in 5.0 seconds = 1277.330 FPS
6407 frames in 5.0 seconds = 1281.337 FPS
6381 frames in 5.0 seconds = 1276.053 FPS
6410 frames in 5.0 seconds = 12...
2006 Nov 13
3
Mysql 6 second rounding
This is more of mysql question then asterisk :D . Most voip providers use 6
second rounding for costing . My asterisk server stores call cdr's in mysql
properly with billsec field containing number of billed seconds . I want to
know some function to round this to 6 seconds ( or any custom valud like 30
seconds ) ..Suppose if billsec field is 3 seconds then it should round to...
2015 Nov 05
0
NOUVEAU(0): DRI3 on EXA enabled
...Martin Peres wrote:
>> On 02/11/15 08:28, poma wrote:
>>> An interesting results.
>>>
>>> DRI2:
>>>
>>> $ vblank_mode=0 glxgears
>>> ATTENTION: default value of option vblank_mode overridden by environment.
>>> 6321 frames in 5.0 seconds = 1264.103 FPS
>>> 6380 frames in 5.0 seconds = 1275.943 FPS
>>> 6369 frames in 5.0 seconds = 1273.629 FPS
>>> 6377 frames in 5.0 seconds = 1275.322 FPS
>>> 6387 frames in 5.0 seconds = 1277.330 FPS
>>> 6407 frames in 5.0 seconds = 1281.337 FPS
>>...
2012 Feb 27
3
[LLVMdev] Microsoft constructors implementation problem.
Hi all.
I am working on constructors implementation for MS ABI. Itanium ABI has
2 constructor types - base & complete. MS ABI has only 1 type.
How it works I'll show on example.
class first {
public:
virtual void g(){}
};
class second : public virtual first {
public :
virtual void g(){}
};
When construct instance of second we will have next code
push 1
lea ecx,[f]
call second::second ; ctor call
And in ctor
................................................................................
012B19E0 mov...
2010 Feb 07
0
[LLVMdev] [PATCH] FoldingSetNodeID: use MurmurHash2 instead of SuperFastHash
While I've not reviewed the patch in too much detail, it looks
promising. Can you run some end-to-end benchmarks to make sure that
cache pressure in the full program or other variables not accounted
for in a micro-benchmark don't dominate performance? Specifically the
nightly tester includes a number of real programs and machinery to
measure total compile time.
On Sat, Feb 6, 2010 at 7:09
2010 Feb 07
3
[LLVMdev] [PATCH] FoldingSetNodeID: use MurmurHash2 instead of SuperFastHash
...39;t dominate performance? Specifically the
> nightly tester includes a number of real programs and machinery to
> measure total compile time.
Ok, now with some kinda-hard numbers!
murmurhash2 | superfasthash
|
- 6.6404 seconds (6.6697 wall clock) | 6.6204 seconds (6.8557 wall clock)
+ 2.6722 seconds (2.7064 wall clock) | 2.7962 seconds (2.7502 wall clock)
+ 8.6725 seconds (8.6662 wall clock) | 8.7526 seconds (8.7162 wall clock)
+ 2.7362 seconds (2.7729 wall clock) | 2.8242 seconds (2.8146 wall clock)
+ 1.4281 seconds (...
2001 Sep 10
1
on.exit processing
...ven if only the first 'on.exit' was
called, it was still executing the one with the 'add=T'.
I am using Version 1.3.0 (2001-06-22) on Windows 2000.
Here is a small sample of what is happening. The function conditionally
sets up the on.exit, and as you can see, each time the 'second' one is
setup, it just keeps adding to what is output:
> x.func <- function(x=0){
+ on.exit({cat('first exit call\n')})
+ if (x == 1) on.exit({cat('second exit call\n')}, add=T)
+ invisible(NULL)
+ }
> x.func(0) # only the 'first' exit
first exit...
2012 Feb 27
0
[LLVMdev] Microsoft constructors implementation problem.
...wrote:
> Hi all.
>
> I am working on constructors implementation for MS ABI. Itanium ABI has
> 2 constructor types - base & complete. MS ABI has only 1 type.
> How it works I'll show on example.
> class first {
> public:
> virtual void g(){}
> };
>
> class second : public virtual first {
> public :
> virtual void g(){}
> };
> When construct instance of second we will have next code
> push 1
> lea ecx,[f]
> call second::second ; ctor call
>
> And in ctor
> ....................................................
2010 Feb 06
4
[LLVMdev] [PATCH] FoldingSetNodeID: use MurmurHash2 instead of SuperFastHash
Some additional info can be found at:
http://murmurhash.googlepages.com/
http://en.wikipedia.org/wiki/MurmurHash
http://www.codeproject.com/KB/recipes/hash_functions.aspx
as well as in the patch description itself. Patch and benchmark attached.
Gregory
-------------- next part --------------
A non-text attachment was scrubbed...
Name:
2017 Dec 27
5
Exact purpose of network.ping-timeout
Hi,
> If you set it to 10 seconds, and a node goes down, you'll see a 10 seconds freez in all I/O for the volume.
Exactly! ONLY 10 seconds instead of the default 42 seconds :-)
As I said before the problem with the 42 seconds is that a Windows Samba Client will disconnect (and therefore interrupt any read/write operation) af...
2002 Jun 11
2
Puzzled by what Rprof is telling me
I am using Rprof() to help find ways to improve performance.
I found a function whose total seconds and self seconds were large. I
replaced it with something else. The something else had a small
number of total seconds and self seconds. But the total time did not
decrease.
I don't understand how that could be, and would appreciate any suggestions.
Thanks
-Don
Details, unfortunately le...
2018 May 30
0
[SROA][DebugInfo][GSoC] Testing SROA on amalgamated sqlite source
...rd Fibonacci example with clang and lldb from this
afternoon:
1 #ifdef _MSC_VER
2 # define DEX_NOINLINE __declspec(noinline)
3 #else
4 # define DEX_NOINLINE __attribute__((__noinline__))
5 #endif
6
7 DEX_NOINLINE
8 void Fibonacci(int terms, int& total)
9 {
10 int first = 0;
11 int second = 1;
12
13 for (int i = 0; i < terms; ++i)
14 {
15 int next = first + second; // DexWatch('i', 'first', 'second',
'total')
16 total += first; // DexWatch('i', 'first', 'second',
'total', 'next')
17...
2023 Aug 29
2
[PATCH] virtio_balloon: Fix endless deflation and inflation on arm64
...\
: \
-device virtio-balloon-pci,id=balloon0,bus=pcie.10
{ "execute" : "balloon", "arguments": { "value" : 1073672192 } }
{"return": {}}
{"timestamp": {"seconds": 1693272173, "microseconds": 88667}, \
"event": "BALLOON_CHANGE", "data": {"actual": 1073610752}}
{"timestamp": {"seconds": 1693272174, "microseconds": 89704}, \
"event": "BALLOON_CHANG...
2018 Mar 09
2
llvm-cov: Combined report for multiple executables
...{
std::cout << "1" << msg;
}
void Print2(const std::string& msg) {
std::cout << "2" << msg;
}
////////// end
////////// first.cc
#include "shared.h"
int main() {
Print1("First\n");
return 0;
}
////////// end
////////// second.cc
#include "shared.h"
int main() {
Print2("Second\n");
return 0;
}
////////// end
I use the following commands to build 'first' and 'second' binaries:
clang++ -O0 -c -fprofile-instr-generate -fcoverage-mapping shared.cc
-o ./out/shared.o
clang++ -O0 -f...
2007 Jul 10
1
[LLVMdev] VirtRegMap GLIBCXX assert
...ues are available in the specific register.
void addLastUse(unsigned PhysReg, MachineInstr *Use) {
std::multimap<unsigned, int>::iterator I =
PhysRegsAvailable.lower_bound(PhysReg);
while (I != PhysRegsAvailable.end() && I->first == PhysReg) {
int Slot = I->second;
I++;
std::map<int, SSInfo>::iterator II = SpillSlotsAvailable.find(Slot);
assert(II != SpillSlotsAvailable.end() && "Slot not available!");
unsigned Val = II->second.first;
assert((Val >> 1) == PhysReg && "Bidirectional m...