Displaying 20 results from an estimated 21 matches for "architecures".
Did you mean:
architectures
2006 Oct 30
1
Asterisk architecure
Dear all,
I've recently installed Asterisk and am trying to understand where exactly
Asterisk 'fits' in my VOIP architecture. Can/does Asterisk work as a proxy.
I am specifically interested in SIP. Could anyone perhaps point me out to a
diagram with SIP users and Asterisk to better understand how I should set up
my network?
Thank you
2009 Apr 18
1
Neural Networks in R - Query
Dear R users,
I'd like to ask your guidance regarding the following two questions: (i) I
just finished reading Chris Bishop's book "Neural Networks for Pattern
Recognition". Although the book gave me good theoretical foundation about
NN, I'm now looking for something more practical regarding architecture
selection strategies. Is there any good reference about "best
2015 Oct 07
2
Are pointers to FLAC__int32 and int interchangeable?
There are following functions in bitreader.c:
FLAC__bool FLAC__bitreader_read_unary_unsigned(FLAC__BitReader *br, unsigned *val);
FLAC__bool FLAC__bitreader_read_rice_signed(FLAC__BitReader *br, int *val, unsigned parameter);
FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter);
* function FLAC__bitreader_read_rice_signed():
2008 Apr 25
3
Samba segs when serving files from a windows partition on OpenBSD-4.2
Hi,
Before I file a bug report, I just wanted to check that samba is capable
of serving files from a FAT32 partition. I have here an OpenBSD-4.2
i386 machine here with a second disk containting files that I will be
sharing via both NFS and samba. The NFS share work great, but samba seg
faults upon a windows client connecting. This occurs when using the
OpenBSD package, and also when built from
2019 Nov 28
2
SLP example not being vectorized
Hi,
I am new to llvm with a particular interested in the optimization area,
specially on SLP. While working through the tutorial, I ran this example
[1] with the hope to see SLP vectorization in action but for some
reason, I do not see it on the LLVM assembly as seen below. Is there
anything I am missing? I am using Clearlinux as build machine and this
has clang version 9.0.0.
2012 May 18
0
[LLVMdev] ReleaseNotes typos
In the long list of globals that are now in the TargetOptions struct, I noticed this one was misspelled.
llvm::LessPrecideFPMAD()
And now that I look it over w/ spellcheck:
ARM Architecural Reference
pre-unfied
returns_twice fo functions
2015 Oct 07
0
Are pointers to FLAC__int32 and int interchangeable?
lvqcl wrote:
> Is it Ok to pass FLAC__int32* in a function that expects int* ?
Well FLAC__int32 is just a 32 bit integer and on all the platforms/
architecures/compilers that FLAC supports FLAC__int32 and int are
the same.
As for pointers, all pointers are the same until you try an increment
them. If you have some type, lets call it sometype_t, and a pointer to
types of sometype_t :
sometype_t * ptr = 0 ;
and you then increment it using...
2015 Oct 08
1
Are pointers to FLAC__int32 and int interchangeable?
Erik de Castro Lopo wrote:
> Well FLAC__int32 is just a 32 bit integer and on all the platforms/
> architecures/compilers that FLAC supports FLAC__int32 and int are
> the same.
>
> Personally I think the FLAC__xxxx stuff should go, to be replaced with
> C standard int32_t, uint32_t, int16_t etc, at least for internal code.
> I am slowly doing that when I touch code.
>
> I don't think...
2008 Jul 14
0
Can't compile in HPUX 11.31 on IA64
I'm trying to compile R, not getting pass the configure step.
R version is 2.7.1 from source tarball.
Machine is HPUX 11.31, 32-CPUs of Itanium II.
Compilers are HPUX C, C++ and Fortran.
(B3910B A.06.15, May 2007)
My config string:
./configure --prefix=/apps/INTEL/R --enable-R-shlib CC=/opt/aCC/bin/cc CXX=/opt/aCC/bin/aCC FC=/opt/fortran90/bin/f90 --prefix=/apps/INTEL/R --enable-R-shlib
2006 Jul 14
0
ld -r failed with status 256
Hi,
I'm trying to compile (windows) cpp-sources on a Sun Fire X2100 using
wineg++.
I have managed that all sources are compiled without complain, but
finally
ld aborts with an error message about i386 and x86-64 architecures.
Any idea, what I should do?
thx,
teb
$wineg++ *.cpp
ld: Relocatable linking with relocations from format elf32-i386
(/usr/lib/wine/libwinecrt0.a(exe_entry.o)) to format elf64-x86-64
(a.EjEWYl.o) is not supported
winebuild: ld -r failed with status 256
winegcc: winebuild failed.
2018 Jan 17
0
[RFC] [TargetTransformInfo] Introduce hook to tell middle-end to not worry about register pressure
Hi all,
Currently in the llvm middle-end, we disable some optimizations because we
worry about the register pressure, (e.g. GVNHoist and ArgumentPromotion).
However, in the architecture that are register-rich, e.g. FPGAs, we do not
need to worry about the register pressure at all. For these architecures,
we may want to optimization the LLVM IR without worrying about the register
pressure.
I suggest that we introduce a hook in the TargetTransformInfo to tell if
the current target architecture is register-rich or not. With this hook, we
can enable the optimizations that increase register pressure i...
2010 Aug 23
1
Internal state indicating if a data object has NAs/no NAs/not sure (Was: Re: Speeding up matrix multiplies)
Hi, I'm just following your messages the overhead that the code for
dealing with possible NA/NaN values brings. When I was setting up
part of the matrixStats package, I've also though about this. I was
thinking of having an additional logical argument 'hasNA'/'has.na'
where you as a user can specify whether there is NA/NaN:s or not,
allowing the code to avoid it or not.
2008 Jul 18
2
Need suggestion regarding index file and Quota settings.
Dear All,
My system has about 30,000 accounts and these accounts are
created as unix system users. Each account has its own entry
in /etc/passwd with different UID and home directory.
We plan to deploy an Layer 4 switch as a load balancer. Proposed
architecure is as the following:
---- internet ---- Layer 4 switch ---- mail server1 ---- NFS storage
|
2010 Aug 23
1
Speeding up matrix multiplies
I've looked at the code for matrix multiplies in R, and found that it
can speeded up quite a bit, for multiplies that are really vector dot
products, and for other multiplies in which the result matrix is small.
Here's my test program:
u <- seq(0,1,length=1000)
v <- seq(0,2,length=1000)
A2 <- matrix(2.1,2,1000)
A5 <- matrix(2.1,5,1000)
B3 <- matrix(3.2,1000,3)
A4 <-
2007 Sep 27
9
[RFC] KVM Source layout Proposal to accommodate new CPU architecture
Zhang, Xiantao wrote:
> Hi Folks,
> We are working on enabling KVM support on IA64 platform, and now
> Linux, Windows guests get stable run and achieve reasonable performance
> on KVM with Open GFW. But you know, the current KVM only considers x86
> platform, and is short of cross-architecture framework. Currently, we
> have a proposal for KVM source layout to accommodate new
2007 Sep 27
9
[RFC] KVM Source layout Proposal to accommodate new CPU architecture
Zhang, Xiantao wrote:
> Hi Folks,
> We are working on enabling KVM support on IA64 platform, and now
> Linux, Windows guests get stable run and achieve reasonable performance
> on KVM with Open GFW. But you know, the current KVM only considers x86
> platform, and is short of cross-architecture framework. Currently, we
> have a proposal for KVM source layout to accommodate new
2020 Jun 27
0
[centos/centos.org] branch master updated: Updated page for AWS AMI images ID and link
...k: /:path/:basename/index.html
---
-Amazon AMI information here
+CentOS Amazon AMI images
===========================
-Basic info on Amazon images here
+Here is the list of current/up2date AMI images IDs that we made public.
+
+So far we build/update/maintain the following CentOS variants and architecures:
+
+ * CentOS Linux 8 (x86_64 and aarch64)
+ * CentOS Linux 7 (x86_64 and aarch64)
+
+You can search for architecture or region through search bar.
+
+Please note that you can also directly use then the "Deploy Link" function to deploy in specific region, one click away.
<input typ...
2015 May 29
0
[PATCH v3] RFC: New virt-dib tool
virt-dib is a new tool to run the elements of diskimage-builder using
libguestfs.
---
More or less stable now, although with debug stuff here and there;
needs initial review, for being included. I would like to have it
reviewed at this point, so it can be broadly used.
TODO items open:
- improve the documentation
- review
- getting more testing (although it has been successfully tested for
2015 Jul 03
1
[PATCH v5] New tool: virt-dib
virt-dib is a new tool to run the elements of diskimage-builder using
libguestfs.
---
.gitignore | 5 +
Makefile.am | 3 +-
appliance/packagelist.in | 12 +
configure.ac | 1 +
dib/Makefile.am | 144 ++++++++
dib/cmdline.ml | 242 +++++++++++++
dib/dib.ml | 920 +++++++++++++++++++++++++++++++++++++++++++++++
2015 Mar 31
0
[PATCH] WIP: New virt-dib tool
virt-dib is a new tool to run the elements of diskimage-builder using
libguestfs.
---
Work in progress (debug stuff here and there), although I've submitting
it for initial review, for being included later when polished for good.
TODO items open:
- move Uname from builder to mllib
- improve the documentation
- review
- getting more testing (although it has been successfully tested for