Displaying 20 results from an estimated 39 matches for "snorm".
Did you mean:
rnorm
2016 Feb 15
1
[PATCH 09/23] nv50-: separate vertex formats from surface format descriptions
...32G32B32_SINT, NONE, C0, C1, C2, xx, SINT, 32_32_32, tV),
> + I3A(R32G32B32_UINT, NONE, C0, C1, C2, xx, UINT, 32_32_32, tV),
> +
> F2A(R32G32_FLOAT, RG32_FLOAT, C0, C1, xx, xx, FLOAT, 32_32, IBV),
> F2A(R32G32_UNORM, NONE, C0, C1, xx, xx, UNORM, 32_32, TV),
> F2A(R32G32_SNORM, NONE, C0, C1, xx, xx, SNORM, 32_32, TV),
> @@ -381,64 +381,191 @@ const struct nv50_format
> nv50_format_table[PIPE_FORMAT_COUNT] =
> C0, C1, C2, ONE_FLOAT, SNORM, SNORM, UNORM, UNORM, 8_8_8_8,
> T),
> TBLENT_B_(R5SG5SB6U_NORM, 0,
> C0, C1, C2, ONE...
2016 Feb 15
24
[PATCH 01/23] nv50: import updated g80_defs.xml.h from rnndb
...ERO 0x00000000
+#define G80_TIC_SOURCE_R 0x00000002
+#define G80_TIC_SOURCE_G 0x00000003
+#define G80_TIC_SOURCE_B 0x00000004
+#define G80_TIC_SOURCE_A 0x00000005
+#define G80_TIC_SOURCE_ONE_INT 0x00000006
+#define G80_TIC_SOURCE_ONE_FLOAT 0x00000007
+#define G80_TIC_TYPE_SNORM 0x00000001
+#define G80_TIC_TYPE_UNORM 0x00000002
+#define G80_TIC_TYPE_SINT 0x00000003
+#define G80_TIC_TYPE_UINT 0x00000004
+#define G80_TIC_TYPE_SNORM_FORCE_FP16 0x00000005
+#define G80_TIC_TYPE_UNORM_FORCE_FP16 0x00000006
+#define G80_TIC_TYPE_FLOAT 0x00000007
+#define...
2016 Feb 15
0
[PATCH 09/23] nv50-: separate vertex formats from surface format descriptions
...32_32_32, tV),
+ I3A(R32G32B32_SINT, NONE, C0, C1, C2, xx, SINT, 32_32_32, tV),
+ I3A(R32G32B32_UINT, NONE, C0, C1, C2, xx, UINT, 32_32_32, tV),
+
F2A(R32G32_FLOAT, RG32_FLOAT, C0, C1, xx, xx, FLOAT, 32_32, IBV),
F2A(R32G32_UNORM, NONE, C0, C1, xx, xx, UNORM, 32_32, TV),
F2A(R32G32_SNORM, NONE, C0, C1, xx, xx, SNORM, 32_32, TV),
@@ -381,64 +381,191 @@ const struct nv50_format nv50_format_table[PIPE_FORMAT_COUNT] =
C0, C1, C2, ONE_FLOAT, SNORM, SNORM, UNORM, UNORM, 8_8_8_8, T),
TBLENT_B_(R5SG5SB6U_NORM, 0,
C0, C1, C2, ONE_FLOAT, SNORM, SNORM, UNORM, U...
2003 Apr 25
4
Kinderman-Ramage (PR#2846)
...on of the
Kinderman-Ramage generator for normal random variates in version
1.7.0, which can be seen from the below R session.
(Consecutive calls for chisq.test(...) always gives p-values very
close to 0.)
We have already encountered this bug in version 1.6.2
The error is in file
R-1.7.0/src/nmath/snorm.c
Here is a patch for this file to correct the error
(the added two lines are crucial):
--- R-1.7.0/src/nmath/snorm.c Wed Feb 26 16:51:17 2003
+++ snorm.c Fri Apr 25 09:22:28 2003
@@ -197,7 +197,9 @@
u1 = unif_rand();
if(u1 < 0.884070402298758) {
u2 = unif_rand();
- return A*(1.1...
1999 Feb 24
2
Compiling R on Sunos
...as well) machines, it crashes during the
compile. I'm using gcc 2.8.1 on there. It gets to this point:
gcc -g -O2 -I../include -I../../src/include -c bessel_y.c -o bessel_y.o
gcc -g -O2 -I../include -I../../src/include -c choose.c -o choose.o
gcc -g -O2 -I../include -I../../src/include -c snorm.c -o snorm.o
gcc -g -O2 -I../include -I../../src/include -c sunif.c -o sunif.o
sunif.c: In function `unif_rand':
sunif.c:131: `RAND_MAX' undeclared (first use in this function)
sunif.c:131: (Each undeclared identifier is reported only once
sunif.c:131: for each function it appears in.)
sun...
2015 Dec 19
2
[PATCH] nvc0: add hardware ETC2 and ASTC support where possible
...),
+ C4B(ETC2_SRGB8A1, NONE, C0, C1, C2, C3, UNORM, ETC2_RGBA1, t),
+ C4B(ETC2_RGBA8, NONE, C0, C1, C2, C3, UNORM, ETC2_RGBA, t),
+ C4B(ETC2_SRGBA8, NONE, C0, C1, C2, C3, UNORM, ETC2_RGBA, t),
+ F1B(ETC2_R11_UNORM, NONE, C0, xx, xx, xx, UNORM, ETC2_R11, t),
+ F1B(ETC2_R11_SNORM, NONE, C0, xx, xx, xx, SNORM, ETC2_R11, t),
+ F2B(ETC2_RG11_UNORM, NONE, C0, C1, xx, xx, UNORM, ETC2_RG11, t),
+ F2B(ETC2_RG11_SNORM, NONE, C0, C1, xx, xx, SNORM, ETC2_RG11, t),
+
+ C4B(ASTC_4x4, NONE, C0, C1, C2, C3, UNORM, ASTC_2D_4X4, t),
+ C4B(ASTC_5x4, NONE, C0, C1...
2011 Nov 03
3
Plotting skewed normal distribution with a bar plot
Hi,
I need to create a plot (type = "h") and then overlay a skewed-normal
curve on this distribution, but I'm not finding a procedure to accomplish
this. I want to use the plot function here in order to control the bin
distributions.
I have explored the sn library and found the dsn function. dsn uses known
location, scaling and shape parameters associated with a given input
1999 May 04
1
rnorm
Brian
I've been playing a bit with the Wichmann-Hill RNG. I would prefer to have
normally distributed random numbers and I think I have things generally worked
out to use Wichmann-Hill and then Box-Muller. In the process, I was looking at
R's rnorm.c, but could not figure out what transformation is used in R to
convert uniform rv's to normal rv's. Do you know? It looks like there
2002 Mar 08
1
Random data with correlation
...d to generate new random samples. However, for them
to be any good they need to have a similar correlation to the original
samples. Searching the net I found that this could be accomplished by
calculating random samples with
Random-sample = M + R L
where M = vector of means
R = a vector of snorm values
L = the upper triangle matrix of the Choleski decomposition of the
covariance matrix.
I verified this with a simple hand made example and it works. But trying
this with the real data got me into trouble. chol() tells me that the
covariance matrix of my test data is not positive defini...
2015 Dec 19
0
[PATCH] nvc0: add hardware ETC2 and ASTC support where possible
...8A1, NONE, C0, C1, C2, C3, UNORM, ETC2_RGBA1, t),
> + C4B(ETC2_RGBA8, NONE, C0, C1, C2, C3, UNORM, ETC2_RGBA, t),
> + C4B(ETC2_SRGBA8, NONE, C0, C1, C2, C3, UNORM, ETC2_RGBA, t),
> + F1B(ETC2_R11_UNORM, NONE, C0, xx, xx, xx, UNORM, ETC2_R11, t),
> + F1B(ETC2_R11_SNORM, NONE, C0, xx, xx, xx, SNORM, ETC2_R11, t),
> + F2B(ETC2_RG11_UNORM, NONE, C0, C1, xx, xx, UNORM, ETC2_RG11, t),
> + F2B(ETC2_RG11_SNORM, NONE, C0, C1, xx, xx, SNORM, ETC2_RG11, t),
> +
> + C4B(ASTC_4x4, NONE, C0, C1, C2, C3, UNORM, ASTC_2D_4X4, t),
> + C4B(ASTC...
2013 Feb 28
7
[Bug 61635] New: glVertexAttribPointer(id, GL_UNSIGNED_BYTE, GL_FALSE, ...) does not work
https://bugs.freedesktop.org/show_bug.cgi?id=61635
Priority: medium
Bug ID: 61635
Assignee: nouveau at lists.freedesktop.org
Summary: glVertexAttribPointer(id, GL_UNSIGNED_BYTE,
GL_FALSE,...) does not work
Severity: normal
Classification: Unclassified
OS: All
Reporter: rodrigorivascosta at
2005 Aug 26
3
.Call and Segmentation Fault
Hello to everyone!
I use .Call to call a C function without arguments wich calls a
fortran optimization package. My C function uses others C and Fortran
functions and it works fine when I call it from a main() in a C
program. But when I call it from R with
.Call("name_of_the_c_function"), R gives me some weird output.
This weird output is a worng answer to my optimization problem
2009 Mar 17
3
R does not compile any more on FreeBSD 8.0-CURRENT
...ar cr libnmath.a mlutils.o d1mach.o i1mach.o fmax2.o fmin2.o fprec.o
fround.o ftrunc.o sign.o fsign.o imax2.o imin2.o chebyshev.o log1p.o
expm1.o lgammacor.o gammalims.o stirlerr.o bd0.o gamma.o lgamma.o
gamma_cody.o beta.o lbeta.o polygamma.o bessel_i.o bessel_j.o bessel_k.o
bessel_y.o choose.o snorm.o sexp.o dgamma.o pgamma.o qgamma.o rgamma.o
dbeta.o pbeta.o qbeta.o rbeta.o dunif.o punif.o qunif.o runif.o dnorm.o
pnorm.o qnorm.o rnorm.o dlnorm.o plnorm.o qlnorm.o rlnorm.o df.o pf.o
qf.o rf.o dnf.o dt.o pt.o qt.o rt.o dnt.o dchisq.o pchisq.o qchisq.o
rchisq.o rnchisq.o dbinom.o pbinom.o qbino...
2018 Sep 13
0
Wine release 3.0.3
...statement inside for loop
44953 Adobe Premiere Elements 14 (trial) crashes inside winmm.dll
44976 ConEmu-Maximus5 Windows console emulator causes crash of builtin 'wineconsole.exe' (division by zero)
45051 cmd.exe for loop does not resolve wildcards with subdirectory
45067 UNORM/SNORM immediate constants not supported for UAV stores (Claybook, Just Cause 3)
45078 UFOHD2 crashes inside devenum
45081 DsEnumerateDomainTrusts stubbed without A/W suffix
45118 Microsoft Windows PowerShell 6.x reports 'PowerShell Gallery is currently unavailable.' (WinHttpSetOption re...
2011 Apr 06
0
Project Discussion for GSOC
...m
hierarchy of algorithms if he has knowledge about them or this can be
automated in cases where the user doesn't know about these algorithms.
Vector space models, TF-IDF schemes can be implemented and in case of
hyperlinked documents link analysis algorithms like Pagerank, HITS, Distance
rank, Snorm , Trust rank could be brought into picture.
I would love to discuss about the project and would love any advice given
to me on how to break it down the timeline. Please let me know if I need to
add in any more information aswell.
Thanks
Regards
Prateek
-------------- next part --------------
A...
2018 Jul 09
0
Wine release 3.12
...ix issue in WCMD_assoc highlighted by valgrind.
xcopy: Add support for xcopy /k.
Julian Rüger (1):
po: Update German translation.
Józef Kucia (4):
include/d3d12: Fix typos.
dxgi: Avoid possible NULL pointer access in d3d11_swapchain_SetFullscreenState().
wined3d: Fix snorm/unorm immediate values for UAV writes.
d3d11/tests: Add test for unorm/snorm immediate constants.
Kim Malmo (1):
po: Update Norwegian translation.
Lauri Kenttä (2):
po: Update Finnish translation.
po: Update Finnish translation.
Louis Lenders (1):
ntoskrnl.exe: Add...
1997 Dec 13
1
R-beta: Compile error; R-0.60.1, Solaris 2.6, gcc 2.7.2.1
....o
gcc -g -I../include -c lbeta.c -o lbeta.o
gcc -g -I../include -c lgamma.c -o lgamma.o
gcc -g -I../include -c choose.c -o choose.o
gcc -g -I../include -c dpsifn.c -o dpsifn.o
gcc -g -I../include -c digamma.c -o digamma.o
gcc -g -I../include -c sexp.c -o sexp.o
gcc -g -I../include -c snorm.c -o snorm.o
gcc -g -I../include -c sunif.c -o sunif.o
gcc -g -I../include -c dbeta.c -o dbeta.o
gcc -g -I../include -c pbeta.c -o pbeta.o
gcc -g -I../include -c qbeta.c -o qbeta.o
gcc -g -I../include -c rbeta.c -o rbeta.o
gcc -g -I../include -c dbinom.c -o dbinom.o
gcc -g -I../include...
2004 Jul 04
1
Rmetrics 191.10057
...tions "[dpqr]std" and "[dpqr]sstd" have been added which
compute density, distribution function, quantile function and
generate random variates for the symmetric and skew Student-t
distribution with unit variance.
2004-06-25 fSeries/R
New functions "[dpqr]snorm" have been added which compute density,
distribution function, quantile function and generate random
variates for the skew normal distribution.
2004-06-25 fSeries/demo
A new example file "xmpDistTESTskew.R" has been added with
integration tests for the skew n...
2014 May 20
14
[PATCH 00/12] Cherry-pick nv50/nvc0 patches from gallium-nine
I went through the gallium-nine tree and picked out nouveau patches that are
general bug-fixes. The first bunch I'd like to also get into 10.2. I've
reviewed all of them and they make sense to me, but sending them out for
public review as well in case there are any objections.
Unless I hear objections, I'd like to push this by Friday.
Christoph Bumiller (11):
nv50,nvc0: always pull
1999 May 03
1
problems compiling R-0.63.3 on alpha
...-I../include -I../../src/include -c bessel_k.c -o
bessel_k.o
gcc -ieee_with_inexact -g -I../include -I../../src/include -c bessel_y.c -o
bessel_y.o
gcc -ieee_with_inexact -g -I../include -I../../src/include -c choose.c -o
choose.o
gcc -ieee_with_inexact -g -I../include -I../../src/include -c snorm.c -o
snorm.o
gcc -ieee_with_inexact -g -I../include -I../../src/include -c sunif.c -o
sunif.o
gcc -ieee_with_inexact -g -I../include -I../../src/include -c sexp.c -o sexp.o
gcc -ieee_with_inexact -g -I../include -I../../src/include -c dgamma.c -o
dgamma.o
gcc -ieee_with_inexact -g -I../includ...