Displaying 20 results from an estimated 96 matches for "connex".
2018 Apr 04
2
LLVM back end for the research Connex SIMD processor
Hello.
I'd like to advertise the LLVM back end I developed in the last 2 years for the
research Connex wide SIMD processor, which can have up to 4096 lanes. The Connex SIMD
processor is designed to run efficiently BLAS routins, is an easily reconfigurable
low-power processor with scratchpad memory, a shift register for inter-lane communication,
a hardware sum-reduction tree and predictable perfor...
2019 Apr 28
2
[GSoC] Supporting Efficiently the Shift-vector Instructions of the Connex Vector Processor
Hello, Anton,
I'd like to add a small reply regarding this GSoC project that I would like to mentor
and I discussed also with Andrei.
A good part of our GSoC project is indeed related to this Connex back end that it's
not yet part of the LLVM source repository - an important thing proposed in the project is
that we plan to perform efficient realignment for this Connex vector processor.
I looked a bit in LLVM and I see that support for realignment of misaligned vector
memory access...
2019 Apr 08
2
[GSoC] Supporting Efficiently the Shift-vector Instructions of the Connex Vector Processor
Hello,
I am applying for Google Summer of Code with a project related to LLVM and Connex SIMD processor and I would appreciate some feedback on the proposal.
The proposal can be found here:
https://docs.google.com/document/d/1pBRbW8pU9GV8zWCJQrILhynNEBpGXJKtev1j7ekXfqs/edit?usp=sharing
Thank you,
Andrei Popa
2008 Mar 13
3
Local network access to VPN
Hi,
I have a linux box with vpn client.
shorewall version 3.4.0
I can connect to a remote vpn network with the nortel vpn client.
Can I allow local machines on my network to access remote vpn using
Linux box as a gateway?
Thanks and Regards
Anuj
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges.
2019 Jul 16
4
Scalable Vector Types in IR - Next Steps?
...on no support for stepvector (or vscale). Arm will start upstreaming those soon.
-Graham
> On 13 Jul 2019, at 14:32, Alex Susu via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> Hello.
> I am very interested in adding scalable vector support in my LLVM 8.0 compiler for the Connex SIMD research processor - but the patches discussed on llvm-dev don't work well. So can you help me?
> The reason I need scalable vector types is our Connex SIMD/vector processor can be synthesized in different instances with different number of lanes. Using a non-scalable vector type in...
2016 Jun 28
2
Instruction selection problem with type i64 - mistaken as v8i64?
...[(set i64:$dst, (OpNode ADDRri:$addr))]>;
So I am surprised that the instruction selector finds as match for operand i64:$dst
the vector register REGVEC0, which has type v8i64 as defined below, inspired from
lib/Target/Mips/MipsRegisterInfo.td:
def MSA128D: RegisterClass<"Connex", [v8i64], 512,
(sequence "Wd%u", 0, 31)>;
Can anybody help with an idea what I can do to fix this problem?
Below are a few possibly useful lines from the output of llc, related to the instr.
selection and register allocation of the above p...
2008 Jul 05
1
Re: Shorewall-users Digest, Vol 26, Issue 9
>
> ---------- Mensaje reenviado ----------
> From: Roberto C. Sánchez <roberto@connexer.com>
> To: shorewall-users@lists.sourceforge.net
> Date: Fri, 4 Jul 2008 18:52:36 -0400
> Subject: Re: [Shorewall-users] Shaper
> On Fri, Jul 04, 2008 at 04:47:31PM -0500, RokeFeler wrote:
> > Saludos, Tengo 3 inferfaces eth0, eth1, eth2
> > eth0 - Net
> > eth1 -...
2010 Mar 19
6
noob question
Hi list,
thank you for Shorewall :)
I''m trying to get a simple config to work but i can''t seem to work out how
to gain access via ssh to the protected remote machine. But that doesn''t
surprise me really as i have just spend well over an hour to find how to
limit the lograte AND fill in the logburst in shorewall.conf.
I have specified a logfile (not messages) in
2019 Mar 29
2
Scalable Vector Types in IR - Next Steps?
I had a phone conversation yesterday with Graham, Francesco,
and Kristof.
There is one more reason to go with the native type change:
ARM has already written the code with the SV types, and they
have patches ready to be reviewed and integrated in LLVM.
As I don't want to stand in the way of getting SVE in LLVM
as soon as possible, I will also support the integration of the
existing patches
2016 Jun 02
2
BPF backend with vector operations - error "Could not infer all types in, pattern!"
...he previous email).)
>
> Got inspired from http://comments.gmane.org/gmane.comp.compilers.llvm.devel/73619,
> (also https://groups.google.com/forum/#!topic/llvm-dev/LfltBGG9ru0),
> http://lists.llvm.org/pipermail/llvm-dev/2007-April/008843.html
>
> What I did was to edit ConnexInstrInfo.td and replaced all occurrences:
> PatLeaf<(imm)
> %(which were ambiguous since the variable name ("in dag operator") does not have a
> type and this poses issues to the Type inference algorithm, since I added in
> ConnexRegisterInfo.td a second Re...
2007 May 28
3
Log questions
Hello,
Can anyone tell me my shorewall is get hacked ? or local Lan computers
got Virus ? please see the following log.
http://www.wilson-kwok.com/shorewall.txt
Please help
---------------------------------
現在你可輕易阻擋垃圾郵件,立即使用Yahoo! Mail 你就會相信!
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
2007 Feb 27
4
Outgoing rules
Hi,
How can only allow http,ftp,smtp define on outgoing rules ?
Thanks
_______________________________________
YM - 離線訊息
就算你沒有上網,你的朋友仍可以留下訊息給你,當你上網時就能立即看到,任何說話都冇走失。
http://messenger.yahoo.com.hk
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net''s Techsay panel and
2016 Jun 29
0
Instruction selection problem with type i64 - mistaken as v8i64?
...addr))]>;
>
> So I am surprised that the instruction selector finds as match for operand
> i64:$dst
> the vector register REGVEC0, which has type v8i64 as defined below, inspired
> from
> lib/Target/Mips/MipsRegisterInfo.td:
> def MSA128D: RegisterClass<"Connex", [v8i64], 512,
> (sequence "Wd%u", 0, 31)>;
>
> Can anybody help with an idea what I can do to fix this problem?
>
> Below are a few possibly useful lines from the output of llc, related to the
> instr.
> selection and...
2015 Dec 29
2
TableGen - cryptic error messages (~feature request)
...har>, std::basic_string<char> >*>&, unsigned int, unsigned
int) const: Assertion `Matches.size() == 1 && "Had duplicate keys to match on"' failed.
[...]
Stack dump:
0. Program arguments: ~/llvm/build3/bin/llvm-tblgen -gen-asm-matcher -I
~/llvm/include Connex.td
./run_tblgen.sh: line 13: 27011 Aborted (core dumped)
~/llvm/build3/bin/llvm-tblgen -gen-asm-matcher -I ~/llvm/include Connex.td >
ConnexGenAsmMatcher.inc
It took me quite a few hours to find the source of the error, namely the fact I had
defined two registers with th...
2004 Nov 12
0
Vif only accepts connex after talking out of domain.
My domains dont see any traffic until you try to connect out
from within the domain. Tried this several times and it was
consistent. I have no firewall either. running each domain
on different cpu probably doesn''t help, although Im no
network expert.
Here is some info.
================
[root@a root]# xm info
system : Linux
host : a.b.com
release
2016 Jun 13
2
LLVM IR intrinsics placeholder for strings [was Re: Back end with special loop instructions (using LLVM IR intrinsics)]
...M = Preheader->getParent()->getParent();
> Value *MTCTRFunc = Intrinsic::getDeclaration(M, Intrinsic::ppc_mtctr,CountType);
> CountBuilder.CreateCall(MTCTRFunc, ECValue);
>
> I have defined also some intrinsics for my loop instructions in my file
> Intrinsics_Connex.td: 1 intrinsic for REPEAT_X_TIMES and 1 for END_REPEAT.
> /* following Intrinsics.td:
> class Intrinsic<list<LLVMType> ret_types,
> list<LLVMType> param_types = [],
> list<IntrinsicProperty> properties = [],
>...
2007 Dec 10
5
One interface rfc1918 address. Connection via DSL router
I have several computers connected to the internet through a DSL router that
assigns rfc1918 (192.168.1.x) addresses to the systems connected. I have a
server where shorewall is installed with one interface eth0, with a static
ip (192.168.1.3). The router is configured to forward all connections from
the internet to the linux server.
I''d like to know how I can configure shorewall to
2008 Jun 18
8
Expanding SSHKnock shell script, a few questions please
Hi all,
Another Debian Etch fan here, running shorewall (shell) 3.2.6-2 (and Yes I''m going to upgrade when Lenny goes stable).
I already have the SSHKnock working, as documented on the website:
http://www.shorewall.net/PortKnocking.html
Thanks, works great!
In addition to the knock to open 22, I want to also ADD a redirect, from 2222 to 22 on an internal box. So, when I knock on 1600
2007 May 25
49
Problem with ssh limit and scp stalling
Hi,
I have a very simple server setup, using shorewall as my firewall. I
have a line like this at the top of my rules file to allow ssh
connections, but limited to 3 connection per minute with a burst rate
of 3:
SSH/ACCEPT net $FW - - -
- 3/min:3 -
Now when I have that in place, and from a remote machine run scp
server:/some/file ., I find
2004 Apr 13
2
Possible SPAM (accuracy low): Shorewall accept connection on port 139
...ut still i cannot see this port from outside.
>From inside the netowork everything is ok. Can someone tell me what i am doing worng? or what i need to do to be able to gain access from the internet to the linux box on port 139?
Thanks.
-------------------------------------------------------
Connex scaneaza automat toate mesajele impotriva virusilor folosind RAV AntiVirus.
Connex automatically scans all messages for viruses using RAV AntiVirus.
Nota: RAV AntiVirus poate sa nu detecteze toti virusii noi sau toate variantele lor.
Pentru a inlatura efectele nedorite si din dorinta de a va ofer...