Displaying 16 results from an estimated 16 matches for "p_a".
Did you mean:
_a
2010 May 06
2
Problem with nested functions - functions nested too deeply in source code
...ror message saying that
functions are nested too deeply in source code. I found out that the problem
is in the so called refinement procedure of the algorithm which consists of
10 different functions, returning an adjacency matrix. I¹m calling the
refinement procedure with
M <- refine1(M, A, B, p_A, p_B, FAIL) (note that all parameters in call
refine1 have been defined previosly)
Then the following steps look like this
#####################################
# Refinement process #
#####################################
refine1 <- function(M, A, B, p_A, p_B, FAIL, elim, i, j,...
2023 Aug 31
2
[PATCH v2] vdpa/mlx5: Fix firmware error on creation of 1k VQs
..._b = MLX5_GET(virtio_emulation_cap, caps, umem_3_buffer_param_b);
+
+out:
+ kfree(out);
+ return 0;
+}
+
static void set_umem_size(struct mlx5_vdpa_net *ndev, struct mlx5_vdpa_virtqueue *mvq, int num,
struct mlx5_vdpa_umem **umemp)
{
- struct mlx5_core_dev *mdev = ndev->mvdev.mdev;
- int p_a;
- int p_b;
+ u32 p_a;
+ u32 p_b;
switch (num) {
case 1:
- p_a = MLX5_CAP_DEV_VDPA_EMULATION(mdev, umem_1_buffer_param_a);
- p_b = MLX5_CAP_DEV_VDPA_EMULATION(mdev, umem_1_buffer_param_b);
+ p_a = ndev->umem_1_buffer_param_a;
+ p_b = ndev->umem_1_buffer_param_b;
*umemp = &mvq...
2005 Jul 21
5
[LLVMdev] Re: Dependence Analysis
...for (int i = 0; ... ; ++i)
> P[i]
>
> If you're interested in dependence analysis, the next important step is
to
> start analyzing distance and direction vectors.
Well, specifically, I was thinking of a mechanism to turn this:
int A[100], B[100], C[100], X, Y, Z;
int *p_a = &A[0];
int *p_b = &B[0];
int *p_c = &C[0];
int i, j, k, f;
for ( k = 0; k < Z; k++ )
{
p_a = &A[0];
for ( i = 0; i < X; i++ )
{
p_b = &B[k*Y];...
2005 Jul 26
1
[LLVMdev] llvm::ConvertibleToGEP
Well, I guess I was hoping soemthing like this would help in the
pointer-to-array transformation for the following code:
> > int A[100], B[100], C[100], X, Y, Z;
> >
> > int *p_a = &A[0];
> > int *p_b = &B[0];
> > int *p_c = &C[0];
> >
> > int i, j, k, f;
> > for ( k = 0; k < Z; k++ )
> > {
> > p_a = &A[0];
> > for ( i = 0; i < X; i++ )
>...
2005 Jul 21
0
[LLVMdev] Re: Dependence Analysis
...bscripts, not arbitrary expressions. To enable
this, remove the two if's at IndVarSimplify.cpp:647 (unconditionally
pushing the discovered indvar on the IndVars list).
See the comments in that code for a justification.
-Chris
> int A[100], B[100], C[100], X, Y, Z;
>
> int *p_a = &A[0];
> int *p_b = &B[0];
> int *p_c = &C[0];
>
> int i, j, k, f;
> for ( k = 0; k < Z; k++ )
> {
> p_a = &A[0];
> for ( i = 0; i < X; i++ )
> {
>...
2017 Dec 04
1
YNT: ggtern and bquote...
...data.frame(A=c(.6,.6,.6),B=c(.20,.20,.20),C=c(0.20,.20,.20))
ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = c(.30,.50,.0),zend =c(.0,.50,0.3)))+
geom_point()+
theme_showarrows()+geom_segment(size=.5)+
geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),label=as.expression("P_a","P_b","P_c"))
ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = c(.30,.50,.0),zend =c(.0,.50,0.3)))+
geom_point()+
theme_showarrows()+geom_segment(size=.5)+
geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),label=as.expression(quote(c("P_a",&...
2017 Dec 04
2
ggtern and bquote...
...wrote:
>>
>> Dear Users,
>>
>> What is the proper way to write symbol, superscript,
>> subscript in ggtern/ggplot? I tried every given example,
>> every possible features of ggplot but couldn?t achived. I
>> just want to write P_a, sigma^2, etc, would you please
>> advise me about this problem.
> Did you try expression(P_a)? I don't do much gg-stuff, but
> I seem to recall that quote() doesn't quite cut it the way
> it does in base graphics.
> -pd
Yes, I vaguely remember that...
2017 Dec 04
0
YNT: ggtern and bquote...
...,.6),B=c(.20,.20,.20),C=c(0.20,.20,.20))
> ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = c(.30,.50,.0),zend =c(.0,.50,0.3)))+
> geom_point()+
> theme_showarrows()+geom_segment(size=.5)+
> geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),label=as.expression("P_a","P_b","P_c"))
>
> ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = c(.30,.50,.0),zend =c(.0,.50,0.3)))+
> geom_point()+
> theme_showarrows()+geom_segment(size=.5)+
> geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),label=as.expression(...
2017 Dec 04
1
ggtern and bquote...
....20,.20),C=c(0.20,.20,.20))
>> ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = c(.30,.50,.0),zend =c(.0,.50,0.3)))+
>> geom_point()+
>> theme_showarrows()+geom_segment(size=.5)+
>> geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),label=as.expression("P_a","P_b","P_c"))
>>
>> ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend = c(.30,.50,.0),zend =c(.0,.50,0.3)))+
>> geom_point()+
>> theme_showarrows()+geom_segment(size=.5)+
>> geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),lab...
2017 Dec 04
2
ggtern and bquote...
Dear Users,
What is the proper way to write symbol, superscript, subscript in ggtern/ggplot? I tried every given example, every possible features of ggplot but couldn?t achived. I just want to write P_a, sigma^2, etc, would you please advise me about this problem.
Thanks in advance,
Levent TERLEMEZ
________________________________
Bu elektronik posta ve onunla iletilen b?t?n dosyalar sadece yukar?da isimleri belirtilen ki?iler aras?nda ?zel haberle?me amac?n? ta??makta olup g?nderici taraf?n...
2017 Dec 04
0
ggtern and bquote...
..., at 11:58 , Levent TERLEMEZ via R-help <r-help at r-project.org> wrote:
>
> Dear Users,
>
> What is the proper way to write symbol, superscript, subscript in ggtern/ggplot? I tried every given example, every possible features of ggplot but couldn?t achived. I just want to write P_a, sigma^2, etc, would you please advise me about this problem.
Did you try expression(P_a)? I don't do much gg-stuff, but I seem to recall that quote() doesn't quite cut it the way it does in base graphics.
-pd
>
> Thanks in advance,
> Levent TERLEMEZ
>
>
>
>
>...
2005 Jul 26
0
[LLVMdev] llvm::ConvertibleToGEP
On Tue, 26 Jul 2005, Naftali Schwartz wrote:
> I'm sorry, it had seemed to me that the documented functionality:
>
> // ConvertibleToGEP - This function returns true if the specified value V is
> // a valid index into a pointer of type Ty. If it is valid, Idx is filled in
> // with the values that would be appropriate to make this a getelementptr
> // instruction. The type
2005 Jul 26
2
[LLVMdev] llvm::ConvertibleToGEP
I'm sorry, it had seemed to me that the documented functionality:
// ConvertibleToGEP - This function returns true if the specified value V
is
// a valid index into a pointer of type Ty. If it is valid, Idx is filled
in
// with the values that would be appropriate to make this a getelementptr
// instruction. The type returned is the root type that the GEP would
point to
would be quite
2020 Jul 16
0
[PATCH vhost next 10/10] vdpa/mlx5: Add VDPA driver for supported mlx5 devices
...gt;buf);
> + mlx5_db_free(ndev->mvdev.mdev, &vcq->db);
> +}
> +
> +static int umem_size(struct mlx5_vdpa_net *ndev, struct mlx5_vdpa_virtqueue *mvq, int num,
> + struct mlx5_vdpa_umem **umemp)
> +{
> + struct mlx5_core_dev *mdev = ndev->mvdev.mdev;
> + int p_a;
> + int p_b;
> +
> + switch (num) {
> + case 1:
> + p_a = MLX5_CAP_DEV_VDPA_EMULATION(mdev, umem_1_buffer_param_a);
> + p_b = MLX5_CAP_DEV_VDPA_EMULATION(mdev, umem_1_buffer_param_b);
> + *umemp = &mvq->umem1;
> + break;
> + case 2:
> + p_a = MLX5_CAP_DEV_...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list.
I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without
modifications.
How did I try it?
Created a (non-root) build environment (not a mock )
Installed the kernel.scr.rpm and did a
rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee
prep-out.log
The build failed at the end:
Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL
Checking
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...TX#3
z&+6tm-TYQJ&+Fy|-TY2BFY0EUZpMwrZ!l-bW^cnRGr(83EEGOPZJu>wRp+PK_ci(T
z_}5))<+l1Oq#bOP+`TB<C3iE*A-%9Wk2OKq4umOcLFR6h$-I*qn at rnIc1kKDuSXvo
z&-2hQq47M}%66neEs^}Kr0{r-I54*h9ZFGsK%Ky&W2vn^#el)^5Fv^1SQYekXCh4^
zq&@YJCK1x!Or&vyw67l0I6~SlknEtqEMfT`$V|78(j64(vh8&K55+p_A=HJUHnPK#
zslW#+Eqr|@DT<=zIH7 at gDplO!%sj at 6JdR{i42%)AdbD0HGes`P>V?f0VV~DaJ6EJV
zUJq}gz&lY7Z;rtGq8{E9fp at YV-e`gMWj(wJ0`IH(Wt%O^cB&p?r9k|;Uf5I-cDi0B
z(?up{>fucmc;84GSJYf56I#Rcf22|yoUNbxG?Du`)U2v`(&t<1mr5S`<!3^eN!|5U
zu_1(b9(`BSDANhD+jl?K3cDMz<_MceTQG^X*LM*(NtR_*%NDe...