search for: 44s

Displaying 13 results from an estimated 13 matches for "44s".

Did you mean: 440
2011 Feb 11
1
Help optimizing EMD::extrema()
...ema source('extrema_c.R') Rprof(tmp <- tempfile()) temp = extrema_c(values) Rprof() summaryRprof(tmp) #much faster! .5s total unlink(tmp) #still, it encounters slowdowns with lots of data values = rnorm(1e5) Rprof(tmp <- tempfile()) temp = extrema_c(values) Rprof() summaryRprof(tmp) #44s total, hard to see what's taking up so much time unlink(tmp) #load an rbind-free version of extrema that labels each call to c() source('extrema_c2.R') Rprof(tmp <- tempfile()) temp = extrema_c2(values) Rprof() summaryRprof(tmp) #same time as above, but now we see that it spends mor...
2006 Dec 08
0
Re : formula format for parameter estimation
see nlm or optim Justin BEM Elève Ingénieur Statisticien Economiste BP 294 Yaoundé. Tél (00237)9597295. ----- Message d'origine ---- De : Wayne Delport <wdelport@botzoo.uct.ac.za> À : r-help@stat.math.ethz.ch Envoyé le : Vendredi, 8 Décembre 2006, 8h27mn 44s Objet : [R] formula format for parameter estimation Hello, I am trying to input the following formula into R for parameter estimation. I don't quite have the just of formula syntax. I understand simple basic regression (y ~ x), but how do I do the ff: y = ( b0*x )/(x + b1), where b0 and b1...
1998 Nov 04
0
Help On Multiple Netgroups Across Multiple Subnets
...9;s possible to still use the one WINS server for all of the netgroups. This will save me a lot of trouble. Any hints would be greatly appreciated. Bo Zhang P.S. Anyone know how to interpret the wins.dat file? What is the big number in second column mean? What does "WORKGROUP#1b 0.0.0.0 44S" mean (I know 1b is supposed to be domain master declaration, right)?
2007 Jun 14
1
Problem with Football manager 2007 with Wine
Hi all, I am trying to setup Football manager 2007 on my OpenSuse 10.2, I have everything setup up and when I run the game with wine fm.exe --cache_skin=0, I got the following error message: (wine 0.9.8) preloader: Warning: failed to reserve range 00000000-60000000 err:x11settings:X11DRV_ChangeDisplaySettingsEx No matching mode found! (XRandR) err:x11settings:X11DRV_ChangeDisplaySettingsEx No
2018 Mar 28
2
tftpd server S not responding
...Protocol#/media/File:Tftp-dat1-dwn.svg I do have tftpd running and managed by systemd $ systemctl status -l tftp ? tftp.service - Tftp Server Loaded: loaded (/etc/systemd/system/tftp.service; indirect; vendor preset: disabled) Active: active (running) since Wed 2018-03-28 18:57:42 UTC; 1min 44s ago Docs: man:in.tftpd Main PID: 1685 (in.tftpd) Memory: 136.0K CGroup: /system.slice/tftp.service ??1685 /usr/sbin/in.tftpd --verbose --verbosity 10 --secure /tftpboot --port-range 4069:4169 Mar 28 18:57:42 S.example.net systemd[1]: Started Tftp Server. Mar 28 18:57:42 S.ex...
2011 Dec 02
12
puppet master under passenger locks up completely
I came in this morning to find all the servers all locked up solid: # passenger-status ----------- General information ----------- max = 20 count = 20 active = 20 inactive = 0 Waiting on global queue: 236 ----------- Domains ----------- /etc/puppet/rack: PID: 2720 Sessions: 1 Processed: 939 Uptime: 9h 22m 18s PID: 1615 Sessions: 1 Processed: 947 Uptime: 9h 23m
2013 Feb 01
0
snapshot scripts run on linux to allow samba to export Windows "Previous copies" when looking at a network file?
...Snapshot of Home wanted: y Create snapshot Home-2013.01.19-05.07.08, size 1.0T Logical volume "Home-2013.01.19-05.07.08" created Oldest Snapshot = Home-2013.01.18-05.07.03, @/home/.snapdir/@GMT-2013.01.18-05.07.03 Performing rsync with 7 excludes used from config file. rsync took 175m, 44s Empty-directory removal took 0m, 48s Find size of dir @ /home.diff size=45600841728, minsize=54721010074, extent_size=4194304, nextents=13047 Old volume active: Deactivated. Removed. size=54723084288 Create vol. Home-2013.01.18-05.07.03, size 51.0G Logical volume "Home-2013.01.18-05.07.03&q...
2016 Jul 28
0
[PATCH] Optimize silk_LPC_analysis_filter() for ARM NEON
...*/ + opus_int32 len; /* I Signal length */ + opus_int32 d; /* I Filter order */ + unsigned int i; + + printf("%44s() ...", __func__); + for(d=6;d<=MAX_ORDER;d+=2) + { + for(len=d;len<=MAX_PERIOD;len++) /* len is larger than or equal to d. */ + { + for (i=0;i<MAX_PERIOD+MAX_ORDER;++i) + { + in[i] = (rand() % 32767) - 16384; + } + for (i=0;i&l...
2016 Sep 13
4
[PATCH 12/15] Replace call of celt_inner_prod_c() (step 1)
Should call celt_inner_prod(). --- celt/bands.c | 7 ++++--- celt/bands.h | 2 +- celt/celt_encoder.c | 6 +++--- celt/pitch.c | 2 +- src/opus_multistream_encoder.c | 2 +- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/celt/bands.c b/celt/bands.c index bbe8a4c..1ab24aa 100644 --- a/celt/bands.c +++ b/celt/bands.c
2016 Aug 26
2
[PATCH 9/9] Optimize silk_inner_prod_aligned_scale() for ARM NEON
...nclude "modes.h" +#include "SigProc_FIX.h" + +#define MAX_LEN 240 + +static int test_silk_inner_prod_aligned_scale(int arch) +{ + opus_int16 inVec1[MAX_LEN], inVec2[MAX_LEN]; + opus_int scale, len; + opus_int32 sum_org, sum_opt; + opus_int i; + + printf("%44s() ...", __func__); + for(scale = 0; scale <= 31; scale++) { + for(len = 0; len <= MAX_LEN; len++) { /* len is larger than or equal to d. */ + for (i=0;i<len;++i) { + inVec1[i] = (rand() % 65536) - 32768; + inVec1[i] = (rand() % 65536)...
2015 Sep 24
0
FreeBSD 10 & default_vsz_limit causing reboots?
...: 200335 (boot + 33s/0x0002/info) - Inserted: PD 21(e0xff/s33) Sep 17 11:25:39 romulus kernel: mfi0: 200336 (boot + 33s/0x0002/info) - Inserted: PD 21(e0xff/s33) Info: enclPd=ffff, scsiType=0, portMap=07, sasAddr=db37355566a2b2b9,0000000000000000 Sep 17 11:25:39 romulus kernel: mfi0: 200337 (boot + 44s/0x0020/info) - Cache data recovered successfully Sep 17 11:25:39 romulus kernel: mfi0: 200338 (495539802s/0x0020/info) - Time established as 09/14/15? 9:56:42; (50 seconds since power on) Sep 17 11:25:39 romulus kernel: mfi0: 200339 (495539840s/0x0008/info) - Battery temperature is normal Sep 17 11...
2015 Sep 15
3
FreeBSD 10 & default_vsz_limit causing reboots?
Ok, So this is really more of an observation than anything else.? I had a FreeBSD 10.1 server that was running great. Some SSL issue came up, or I upgrade Dovecot in ports - something occurred and the machine started rebooting randomly.? It would run for 2 weeks, then reboot.? It might run for 5 days and then reboot. So I started doing more FreeBSD upgrades, thinking it was a kernel issue. The
2011 Jun 21
1
builder-debian libguestfs FAILED build step e1e78bcef5e4654bd2456bd696840329359d35cd
...] Get:161 http://ftp.uk.debian.org/debian/ unstable/main zfs-fuse amd64 0.6.9-1+b1 [1407 kB] Get:162 http://ftp.uk.debian.org/debian/ unstable/main libaio1 amd64 0.3.109-1 [8280 B] Get:163 http://ftp.uk.debian.org/debian/ unstable/main zlib1g amd64 1:1.2.3.4.dfsg-3 [79.2 kB] Fetched 63.5 MB in 1min 44s (607 kB/s) febootstrap: aptitude: error: no file was downloaded corresponding to package bsdmainutils make[2]: *** [stamp-supermin] Error 1 make[2]: Leaving directory `/home/rjones/d/libguestfs/appliance' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/rjones/d/libguestfs...