search for: interpretors

Displaying 20 results from an estimated 42 matches for "interpretors".

Did you mean: interpreters
2010 Dec 15
1
[LLVMdev] example of language with vector as first class type
To state my objective again because I was unclear about it. I want to write a interpretor/compiler that can handles mathematical vector/matrix with linear algebra operation on llvm. Something like matlab/R. I am thinking at a higher level like performing type, and shape inference on matrix/vector type, unrolling the inner loop of matrix operation of full algebraic expression instead of computing
2013 Oct 20
1
How to format the command output like MySQL output
Hello everylinuxers: I am now focusing on the development of a script interpretor (some thing like shell) in embedded environment, and its functions mainly output the data in specified address. In order to make it seems better, I want to format the output result like MySQL output listed below for example ||+--------+-------------+ | address| value | +--------+-------------+| | 0x1110|
2000 Jan 25
1
core dump involving function closure (PR#402)
A user has crashed R90.1 on MS Windows by succesive calls to two of my formula/function interpretors in an order that I had not foreseen. I have checked and this also occurs with Intel RH5.2. I have distilled the problem down to its bare bones as the following set of instructions: func <- function(.mu){ .ch1 <- deparse(.mu,width=500)[-1] .fn <- eval(parse(text=paste("function()&qu...
2004 Nov 17
2
[LLVMdev] Re: questions about LLVM
Prof. Adve, The idea is to develop a memory model where each byte is extended with 3 extra bits. Programs are running on this memory model. Load/store instructions, including those in LibC functions, needs to deal with the extra bits in a certain manner. Basically, my questions are: (1) Is it feasible to implement the memory model where each byte is extended with 3 extra bit? (2) Is there a
2006 Sep 04
11
balancer://mongrel_cluster
A couple of questions please: What is the benefit of having more than one Mongrel/Rails instance on the same machine, could one instance not serve as many requests as say three instances? Is Mongrel Cluster a Apache add-in (like mod_*) or a separately running load balancer which runs on a separate port, I could not work it out from the sample Apache config... |# Redirect all non-static
2023 Mar 11
3
Multiple Assignment built into the R Interpreter?
Dear R Core, working on my dynamic factor modelling package, which requires several subroutines to create and update several system matrices, I come back to the issue of being annoyed by R not supporting multiple assignment out of the box like Matlab, Python and julia. e.g. something like A, C, Q, R = init_matrices(X, Y, Z) would be a great addition to the language. I know there are several
2004 Nov 18
0
[LLVMdev] Re: questions about LLVM
Shuo Chen wrote: >Prof. Adve, > >The idea is to develop a memory model where each byte is extended with >3 extra bits. Programs are running on this memory model. >Load/store instructions, including those in LibC functions, >needs to deal with the extra bits in a certain manner. Basically, my >questions are: >(1) Is it feasible to implement the memory model where each
2023 Mar 11
1
Multiple Assignment built into the R Interpreter?
I think the standard way to do this in R is given by list2env(), as described in a couple of answers on the SO page you linked. The syntax you proposed would be likely to be confusing in complex expressions, e.g. f(A, C, Q, R = init_matrices(X, Y, Z)) would obviously not work but wouldn't trigger a syntax error, and f((A, C, Q, R = init_matrices(X, Y, Z))) could work, but looks
2023 Mar 11
3
Multiple Assignment built into the R Interpreter?
Thanks Duncan and Ivan for the careful thoughts. I'm not sure I can follow all aspects you raised, but to give my limited take on a few: > your proposal violates a very basic property of the language, i.e. that all statements are expressions and have a value. > What's the value of 1 + (A, C = init_matrices()). I'm not sure I see the point here. I evaluated 1 + (d =
2010 Dec 15
0
[LLVMdev] example of language with vector as first class type
On Dec 15, 2010, at 9:08 AM, Leon Sit wrote: > When you say vector in GCC, do you mean vector in the mathematical sense or the low level array sense? In the approximately mathematical sense of "the sort of object manipulated by a processor with vector extensions", i.e. a generally small, fixed-size tuple of integer or floating-point element type. I don't mean the C++
2012 Mar 05
0
[LLVMdev] LLVM for automatic differentiation or linear algebra?
Dear all, I am the author of an open-source package for mathematical optimization and automatic differentiation called CasADi (www.casadi.org) and have recently started realize the potential of the LLVM project. At the core of CasADi are two fast interpretors for mathematical expressions and I'm now planning to complement these with JIT-compilation using LLVM. Does anyone know if there is someone using LLVM for either automatic differentiation or (sparse) linear algebra (two of the things CasADi is capable of doing)? One thing particularly interest...
2011 Apr 20
1
Application for joining Chinese (simplified) Team
Hello all, Thank you very much for viewing the letter. This is Haowei (English name: Cyrus Evans) from China, who is a professiona IT editor and English interpretor. As I have gained more than 3 years' experience of localizatioin work and so much experience opensource software (including mybboard, smf etc.). As an experienced contributor, I wirte this letter to apply for joining
2005 Jan 28
1
R for CGI
Dear R Users; Perl is the common language to write CGI scripts which handle Forms. My question is that can R be as fast as perl to do the same job(with using CGIwithR package). Is it an optimal solution to connect R directly to a commercial HTML webpages, Sincerely, Sean
2007 Apr 04
0
R and bash script problem
Hi, I have a problem with R package and bash. I have the package scatterplot3d installed and working. I'm using bash as the command line interpretor. When I open R interactively I can load scatterplot3d without problem and use it. When I create an R script it also works and execute it interactively in bash it works [xavier at coyote DIR.3thTry_1]$ cat test.R
2012 Jan 06
1
Python bindings for libvirt
Hi, I referred to the developer guide in libvirt.org regarding python bindings. But the document says TBD and it was last updated in 2010. Could you point to any sources regarding python bindings to call libvirt APIs? -- Regards Ananth -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Jul 12
0
Bundler problems
hi there, I have a few issues with bundler. 1) running "gem install bundler" in my project directory as a regular user is impossible due to permissions problem. I had to use sudo 2) running "bundle install" in my project directory as a regular user, I got the following permission problem. "Installing rspec (1.3.0) from .gem files at /home/ct9a/projects/myApp/
2004 Nov 17
0
[LLVMdev] Re: questions about LLVM
Shuo, >> I have a few questions about LLVM: >> (1) The LLVM tutorial says LLVM can be used in architecture research. >> If I want to run my program on an instruction set defined by myself, >> is LLVM a right tool to do that? What kind of instruction set do you have in mind? The closer it is to one we already target, the easier this is, but it is quite possible to
2004 Nov 18
0
[LLVMdev] Re: questions about LLVM
Shuo Chen wrote: >John, > >Thank you very much. > > >>Dinakar is correct; the SAFECode website is a version of Apache compiled >>with LLVM and running on the LLVM x86 JIT. >> >> >This is exciting. Do you mean that the Apache server is compiled to the VM >code format, which gets executed one instruction by another by the >interpretor? x86
2010 Dec 15
2
[LLVMdev] example of language with vector as first class type
When you say vector in GCC, do you mean vector in the mathematical sense or the low level array sense? Leon On Wed, Dec 15, 2010 at 11:06 AM, John McCall <rjmccall at apple.com> wrote: > On Dec 15, 2010, at 8:37 AM, Leon Sit wrote: > > Does anyone know any example compiler where it has vector/matrix as first > class type like matlab using llvm? If not, does anyone have idea
2008 Aug 25
2
centos wiki doc in Chinese now start !
Hi?all friends here. I am Nathanael Lee from China.All of you can find my ID Nathanael in our community.It's very nice for me to meet all of you here. I am an English interpretor freely worked in China.I am so lucky that in this year,I got Microsoft Community Influencer Certificate. In these 2 years,I keep my mind to focus on centos and make so many progress both in its daily use and server