search for: gohlis

Displaying 20 results from an estimated 36 matches for "gohlis".

Did you mean: goals
2005 Feb 17
4
multiple crypto accelerator cards in one FreeBSD box
Hi there! we are thinking of deploying a IPSEC VPN concentrator using multiple PCI bus version VPN1401 cards in a FreeBSD box using hifn support.. From the technical specs in Soekris website http://www.soekris.com/vpn1401.htm, each card can support 24 to 70 connections. The question is if we put 3 VPN1401 cards in a single box, does this mean the FreeBSD box can support 3 x (24 to 70) IPSEC
2006 Sep 26
2
VPN in IPV6
I am a university student from Malaysia.This is my final year and i need to do final year project.I would like to try by applying the VPN in a IPV6 enviroment.Can sir give me some comments and idea on this topic?Thanks. --------------------------------- Try the all-new Yahoo! Mail . "The New Version is radically easier to use" ? The Wall Street Journal -------------- next part
2006 Sep 26
0
tinc-devel Digest, Vol 12, Issue 1
Can i know where can i get into the digest?Got any links?Can sir recommend some journal or related works for me to refer?Thanks. tinc-devel-request@tinc-vpn.org wrote: Send tinc-devel mailing list submissions to tinc-devel@tinc-vpn.org To subscribe or unsubscribe via the World Wide Web, visit http://brouwer.uvt.nl/cgi-bin/mailman/listinfo/tinc-devel or, via email, send a message with subject or
2012 Sep 03
2
erb syntaxes
Hi guys, I''m trying to do the following in my template: location <%= location %> { proxy_pass <%= proxy %>; <% if scope.lookupvar(''nginx::resource::location::proxy_header'') then scope.lookupvar(''nginx::resource::location::proxy_header'').each do |header| %> proxy_set_header <%= header %> <% end
2006 Nov 02
2
Simple question about Lists
Hello, I know this must be a very simple problem, but I can't work it out from the documentation that is available. I've got a list of data I would like to plot (the weights of a single neuron that was trained using the neural package). The problem I'm encountering is that this set of weights, are in the form of a list. > network$weigth[1] [[1]] [,1] [1,]
2011 Apr 26
1
Public Apology to Minister Mentor Lee Kuan Yew and Prime Minister Lee Hsien Loong, Singapore
I was misconstrued as having insulted Minister Mentor Lee Kuan Yew. My words were twisted and misinterpreted and I feel that there is a need to explain myself and set the record straight. [b]What really happened[/b] It was sometime in Aug/Sep in the year 2009. The setting was in the Tampines Central office of Asiasoft Online Pte Ltd. I was having a ***verbal*** conversation with Melvin Lee,
2006 Nov 02
3
Complex plotting problem
Hello, I would like to make a plot (preferably lines, but points will do too), where the line segment changes color depending on the value of the y-axis. For example, let's suppose the y-axis range is from -1 to 1. Points close to -1 would be colored blue, while points close to 1 will be colored red. Points in between will be varying degrees of blue/red depending on how close they
2006 Oct 05
2
A statement over multiple lines (i.e. the ... feature in Matlab)
Hello again list, I thought I'd start a new thread, seeing as it's completely different from my previous question. Some functions I have written require many parameters, and so do not fit nicely into an 80 column width display. This is usually avoided, by spreading that particular statement over a few lines. This is something that I do in Matlab with the following: myFunc(
2009 Oct 06
2
[LLVMdev] Functions: sret and readnone
On 5 Okt., 23:33, Dan Gohman <goh... at apple.com> wrote: > > Is there a reason it needs to be an array? A vector of four floats > wouldn't have this problem, if that's an option. > Unfortunately that's not an option. At the moment I'm restricting myself to the use of scalar code only, in order to be able to vectorize the code easily later (e.g., float4 as it is
2009 Oct 05
0
[LLVMdev] Functions: sret and readnone
On Oct 5, 2009, at 7:21 AM, Stephan Reiter wrote: > Hi all, > > I'm currently building a DSL for a computer graphics project that is > not unlike NVIDIA's Cg. I have an intrinsic with the following > signature > > float4 sample(texture tex, float2 coords); > > that is translated to this LLVM IR code: > > declare void @"sample"(%float4* noalias
2006 Nov 22
1
What training algorithm does nnet package use?
Greetings list, I've just swapped from the "neural" package to the "nnet" package and I've noticed that the training is orders of magnitude faster, and the results are way more accurate. This leads me to wonder, what training algorithm is "nnet" using? Is it a modification on the standard backpropagation? Or a completely different algorithm? I'm
2003 Nov 22
1
performance gain in data journalling mode
hi, If I understand correctly, full journalling mode gives better performance for applications that do a lot of updates in O_SYNC. Could you please explain how this is possible? Doesn't full data journalling do twice as many writes as meta data journalling? han
2017 Nov 03
1
as.spikeTrain
Hi all, I have recently used the as.spikeTrain function in the STAR Packages but instead of using the CAL1S data that could be found in the package, I used data from other sources. I am able to convert the data into the required data frame but when I execute the as.spikeTrain function: datafile <- lapply(list_data,as.spikeTrain) It will give this error: Error in FUN(X[[i]], ...) : The
2006 Nov 24
1
Re : View code of function
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible Url : https://stat.ethz.ch/pipermail/r-help/attachments/20061124/c670126c/attachment.pl
2007 Apr 12
2
Tweaking my plot of matrix as image
Greetings list, I have a rectangular 20 x 20 matrix with values in the range of [0 , 1]. I'd like to plot it as an image. To that end, I have used the image() function that seems to do what I want. Now, I just want to tweak it to look perfect. So here is my question: At the moment, the values of the axis range from [0, 1]. I want it to show the row and column of the matrix. How do I
2010 Jul 16
1
ESX - How to create a new domain
Hi, I've been trying to figure out how to create a new domain(create a new virtual machine) using the ESX driver. The documentation at http://libvirt.org/drvesx.html says: To define a new domain the driver converts the domain XML into a VMware VMX file and uploads it to a datastore known to the ESX server. Because multiple datastores may be known to an ESX server the driver needs to decide
2006 Dec 02
1
Trouble passing arrays to C code
Hello, I'm having more trouble with interfacing with C code. I have a function in C that will return the result of its computation as 3 arrays. The signature of the function is as follows: void lorenz_run(double x0, double y0, double z0, double h, int steps, double *res_x, double *res_y, double *res_z) The function works, as I've tested it from within C itself and the results
2008 Apr 25
0
[LLVMdev] Status of use-diet so far (NO API CHANGES)
On Apr 24, 2008, at 9:03 AM, Gabor Greif wrote: > > As you can see, the use-diet changes actually lower the build time > of kimwitu++! (this is as of yesterday's r50182). > Parity is not only reached, but surpassed. Thanks for these numbers. Do you know how much of this increase is due to co-allocating Use arrays with their users, and how much is due to the actual shrinking of
2011 Jun 05
1
file rights for dictionary file
...server.kokoma.de { ssl_cert = </etc/ssl/certs/mailserver2-cert.pem ssl_key = </etc/ssl/private/mailserver2-key.pem } local_name mailserver.grooveb.de { ssl_cert = </etc/ssl/certs/mailserver3-cert.pem ssl_key = </etc/ssl/private/mailserver3-key.pem } local_name mailserver.koehler-gohlis.de { ssl_cert = </etc/ssl/certs/mailserver4-cert.pem ssl_key = </etc/ssl/private/mailserver4-key.pem } local_name mailserver.koehler-schroeder.de { ssl_cert = </etc/ssl/certs/mailserver5-cert.pem ssl_key = </etc/ssl/private/mailserver5-key.pem } Greetings, Michael
2008 Apr 16
5
[LLVMdev] PATCH: Use size reduction -- wave2
On Apr 16, 2:13 am, Dan Gohman <goh... at apple.com> wrote: > Hi Gabor, > > Can you provide performance data for this? I'd > like to know what affect these changes have on > compile time. Hi Dan, Unfortunately, no. I can feed you with some speculation, though, see below. The reason why I cannot do measurements (at the moment) is that - I have no experience with