Displaying 17 results from an estimated 17 matches for "27659".
Did you mean:
2659
2017 Sep 08
5
Optimize code to read text-file with digits
...looks like this:
00000 10097 32533 76520 13586 34673 54876 80959 09117 39292 74945
00001 37542 04805 64894 74296 24805 24037 20636 10402 00822 91665
00002 08422 68953 19645 09303 23209 02560 15953 34764 35080 33606
00003 99019 02529 09376 70715 38311 31165 88676 74397 04436 27659
00004 12807 99970 80157 36147 64032 36653 98951 16877 12171 76833
My program which is slow looks like this:
filename <- "digits.txt"
lines <- readLines(filename)
numbers <- vector('numeric')
for (i in 1:length(lines)) {
# remove first column
lines[i] <...
2007 Jul 10
1
Get journal position
Hi,
There is any way to figure out where physically is the journal on a ext3
fs and it's size?
Thanks!
Jordi
2017 Sep 08
0
Optimize code to read text-file with digits
...t; 00000 10097 32533 76520 13586 34673 54876 80959 09117 39292 74945
> 00001 37542 04805 64894 74296 24805 24037 20636 10402 00822 91665
> 00002 08422 68953 19645 09303 23209 02560 15953 34764 35080 33606
> 00003 99019 02529 09376 70715 38311 31165 88676 74397 04436 27659
> 00004 12807 99970 80157 36147 64032 36653 98951 16877 12171 76833
>
> My program which is slow looks like this:
>
> filename <- "digits.txt"
> lines <- readLines(filename)
>
> numbers <- vector('numeric')
> for (i in 1:length(lines))...
2017 Sep 08
0
Optimize code to read text-file with digits
...t; 00000 10097 32533 76520 13586 34673 54876 80959 09117 39292 74945
> 00001 37542 04805 64894 74296 24805 24037 20636 10402 00822 91665
> 00002 08422 68953 19645 09303 23209 02560 15953 34764 35080 33606
> 00003 99019 02529 09376 70715 38311 31165 88676 74397 04436 27659
> 00004 12807 99970 80157 36147 64032 36653 98951 16877 12171 76833
>
> My program which is slow looks like this:
>
> filename <- "digits.txt"
> lines <- readLines(filename)
why you do not read a file as a whole e.g. by
lines<-read.table("digits.txt...
2014 Nov 28
0
[PATCH 2/2] volt: add support for GK20A
...c3;
+ int c4;
+ int c5;
+};
+
+struct gk20a_volt_priv {
+ struct nouveau_volt base;
+ struct regulator *vdd;
+};
+
+const struct cvb_coef gk20a_cvb_coef[] = {
+ /* MHz, c0, c1, c2, c3, c4, c5 */
+ /* 72 */ { 1209886, -36468, 515, 417, -13123, 203},
+ /* 108 */ { 1130804, -27659, 296, 298, -10834, 221},
+ /* 180 */ { 1162871, -27110, 247, 238, -10681, 268},
+ /* 252 */ { 1220458, -28654, 247, 179, -10376, 298},
+ /* 324 */ { 1280953, -30204, 247, 119, -9766, 304},
+ /* 396 */ { 1344547, -31777, 247, 119, -8545, 292},
+ /* 468 */ { 1420168, -34227, 26...
2014 Nov 28
0
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...c3;
+ int c4;
+ int c5;
+};
+
+struct gk20a_volt_priv {
+ struct nouveau_volt base;
+ struct regulator *vdd;
+};
+
+const struct cvb_coef gk20a_cvb_coef[] = {
+ /* MHz, c0, c1, c2, c3, c4, c5 */
+ /* 72 */ { 1209886, -36468, 515, 417, -13123, 203},
+ /* 108 */ { 1130804, -27659, 296, 298, -10834, 221},
+ /* 180 */ { 1162871, -27110, 247, 238, -10681, 268},
+ /* 252 */ { 1220458, -28654, 247, 179, -10376, 298},
+ /* 324 */ { 1280953, -30204, 247, 119, -9766, 304},
+ /* 396 */ { 1344547, -31777, 247, 119, -8545, 292},
+ /* 468 */ { 1420168, -34227, 26...
2014 Nov 28
2
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...20a_volt_priv {
> + struct nouveau_volt base;
> + struct regulator *vdd;
> +};
> +
> +const struct cvb_coef gk20a_cvb_coef[] = {
> + /* MHz, c0, c1, c2, c3, c4, c5 */
> + /* 72 */ { 1209886, -36468, 515, 417, -13123, 203},
> + /* 108 */ { 1130804, -27659, 296, 298, -10834, 221},
> + /* 180 */ { 1162871, -27110, 247, 238, -10681, 268},
> + /* 252 */ { 1220458, -28654, 247, 179, -10376, 298},
> + /* 324 */ { 1280953, -30204, 247, 119, -9766, 304},
> + /* 396 */ { 1344547, -31777, 247, 119, -8545, 292},
> + /* 468...
2018 Mar 15
0
Asterisk 15.3.0 Now Available
...- core: Add support for timelen parsing to
ast_parse_arg and ACO.
(Reported by Corey Farrell)
Bugs fixed in this release:
-----------------------------------
* ASTERISK-27703 - AMI Action VoicemailUsersList returns 0
MessageCount
(Reported by S??bastien Duthil)
* ASTERISK-27659 - Output from rawman truncated if output is
long enough
(Reported by Bojan Nem??i??)
* ASTERISK-27692 - bridging: Sometimes cloning the stream
topology causes a crash
(Reported by Richard Mudgett)
* ASTERISK-27488 - core: If frame with unnegotiated format is
read cra...
2014 Nov 28
8
[RESEND V2 PATCH 1/3] soc/tegra: fuse: export tegra_sku_info for module use
Some Tegra drivers might be complied as kernel modules, and
they need the fuse information for initialization. One
example is the GK20A Nouveau driver. It needs the GPU speedo
value to calculate frequency-voltage table. So export
the tegra_sku_info.
Signed-off-by: Vince Hsu <vinceh at nvidia.com>
---
v2: add more description why we need this patch
drivers/soc/tegra/fuse/fuse-tegra.c | 1
2014 Nov 28
0
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...lt base;
>> + struct regulator *vdd;
>> +};
>> +
>> +const struct cvb_coef gk20a_cvb_coef[] = {
>> + /* MHz, c0, c1, c2, c3, c4, c5 */
>> + /* 72 */ { 1209886, -36468, 515, 417, -13123, 203},
>> + /* 108 */ { 1130804, -27659, 296, 298, -10834, 221},
>> + /* 180 */ { 1162871, -27110, 247, 238, -10681, 268},
>> + /* 252 */ { 1220458, -28654, 247, 179, -10376, 298},
>> + /* 324 */ { 1280953, -30204, 247, 119, -9766, 304},
>> + /* 396 */ { 1344547, -31777, 247, 119,...
2014 Nov 28
2
[PATCH 1/2] volt: allow non-bios voltage scaling
Signed-off-by: Vince Hsu <vinceh at nvidia.com>
---
nvkm/subdev/volt/base.c | 67 ++++++++++++++++++++++++++++---------------------
1 file changed, 38 insertions(+), 29 deletions(-)
diff --git a/nvkm/subdev/volt/base.c b/nvkm/subdev/volt/base.c
index 32794a999106..26ccd8df193f 100644
--- a/nvkm/subdev/volt/base.c
+++ b/nvkm/subdev/volt/base.c
@@ -101,6 +101,41 @@ nouveau_volt_set_id(struct
2014 Dec 01
2
[V3 PATCH 1/3] soc/tegra: fuse: export tegra_sku_info
Some Tegra drivers might be compiled as kernel modules, and they need the
fuse information for initialization. One example is the GK20A Nouveau
driver. It needs the GPU speedo value to calculate frequency-voltage
table. So export the tegra_sku_info.
Signed-off-by: Vince Hsu <vinceh at nvidia.com>
Acked-by: Alexandre Courbot <acourbot at nvidia.com>
Acked-by: Thierry Reding <treding
2014 Dec 02
3
[V3 PATCH 1/4] soc/tegra: fuse: export tegra_sku_info
Some Tegra drivers might be compiled as kernel modules, and they need the
fuse information for initialization. One example is the GK20A Nouveau
driver. It needs the GPU speedo value to calculate frequency-voltage
table. So export the tegra_sku_info.
Signed-off-by: Vince Hsu <vinceh at nvidia.com>
Acked-by: Alexandre Courbot <acourbot at nvidia.com>
Acked-by: Thierry Reding <treding
2018 Oct 09
2
Asterisk 16.0.0 Now Available
...-26688 - Documentation: voicemail.conf.sample shows
512 limit for emailbody field, however this is only true if
compiled with LOW_MEMORY option
(Reported by Fran Vicente)
* ASTERISK-27568 - PJSIP: Crash during SIP attended transfer.
(Reported by Bryan Walters)
* ASTERISK-27659 - Output from rawman truncated if output is
long enough
(Reported by Bojan Nem��i��)
* ASTERISK-27692 - bridging: Sometimes cloning the stream
topology causes a crash
(Reported by Richard Mudgett)
* ASTERISK-27488 - core: If frame with unnegotiated format is
read cra...
2016 Mar 11
16
[PATCH 00/16] clk/gm20b: add basic driver
This series does some refactoring in the GK20A's volt and clk drivers
(fixing a few things while we are at it) to let GM20B benefit from the
GK20A's logic with which it is compatible.
GM20B is capable of more sophisticated (and power-efficient) reclocking
which will follow later. Even after this more fancy reclocking is merged,
the present logic will remain used in the lowest speedo of
2018 Oct 09
0
Asterisk 16.0.0 Now Available
...-26688 - Documentation: voicemail.conf.sample shows
512 limit for emailbody field, however this is only true if
compiled with LOW_MEMORY option
(Reported by Fran Vicente)
* ASTERISK-27568 - PJSIP: Crash during SIP attended transfer.
(Reported by Bryan Walters)
* ASTERISK-27659 - Output from rawman truncated if output is
long enough
(Reported by Bojan Nem��i��)
* ASTERISK-27692 - bridging: Sometimes cloning the stream
topology causes a crash
(Reported by Richard Mudgett)
* ASTERISK-27488 - core: If frame with unnegotiated format is
read cra...
2019 Dec 24
0
Certified Asterisk 16.3-cert1 Now Available
...s 512 limit for emailbody field,
however this is only true if compiled with LOW_MEMORY option
(Reported by Fran Vicente)
- [ASTERISK-27568
<https://issues.asterisk.org/jira/browse/ASTERISK-27568>] -
PJSIP: Crash during SIP attended transfer.
(Reported by Bryan Walters)
- [ASTERISK-27659
<https://issues.asterisk.org/jira/browse/ASTERISK-27659>] -
Output from rawman truncated if output is long enough
(Reported by Bojan Nemčić)
- [ASTERISK-27692
<https://issues.asterisk.org/jira/browse/ASTERISK-27692>] -
bridging: Sometimes cloning the stream topology causes a...