search for: xdot

Displaying 20 results from an estimated 31 matches for "xdot".

Did you mean: dot
2006 Aug 08
1
Fitting data with optim or nls--different time scales
Hi, I have a system of ODE's I can solve with lsoda. Model=function(t,x,parms) { #parameter definitions lambda=parms[1]; beta=parms[2]; d = parms[3]; delta = parms[4]; p=parms[5]; c=parms[6] xdot[1] = lambda - (d*x[1])- (beta*x[3]*x[1]) xdot[2] = (beta*x[3]*x[1]) - (delta*x[2]) xdot[3] = (p*x[2]) - (c*x[3]) return(list(xdot)) } I want to fit the output out[,4] to experimental data that is only available on days 0, 7, 12, 14, 17, and 20. I don't know how to set up...
2016 Jan 26
2
Having more info, like the ip address of the vpn nodes in the xdot graph file of tinc
Hello Guus, is there a .deb somewhere for tinc 1.1 and ubuntu 15.10 available / instruction on howto build .deb files for ubuntu ? Then I could put something together with python or the shell, inotify of the tinc graph file and tinc info. Thanks+ BR Max. > On Fri, Jan 22, 2016 at 02:12:20PM +0100, Maximilian H. wrote: > >> I am using tinc's feature to dump a graph of the
2016 Jan 22
0
Having more info, like the ip address of the vpn nodes in the xdot graph file of tinc
On Fri, Jan 22, 2016 at 02:12:20PM +0100, Maximilian H. wrote: > I am using tinc's feature to dump a graph of the vpn extensively to view > the machines which are currently part of the vpn. > > I would love to have the ip addresses of the vpn ips of the tinc nodes > in that graph, e.g. if one tinc node is called office00, then I would > like the graph to not only show
2016 Jan 27
0
Having more info, like the ip address of the vpn nodes in the xdot graph file of tinc
Hi Maximilian, > is there a .deb somewhere for tinc 1.1 and ubuntu 15.10 available / > instruction on howto build .deb files for ubuntu ? the Debian package maintainer already prepared a 1.1 package in the experimental suite: https://packages.debian.org/search?keywords=tinc You can download it there for your architecture. The package will probably work on your ubuntu system as well - but
2016 Jan 22
2
Having more info, like the ip address of the vpn nodes in the xdot graph file of tinc
Hello, I am using tinc's feature to dump a graph of the vpn extensively to view the machines which are currently part of the vpn. In my tinc.conf I have this: GraphDumpFile = /tmp/tinc-graph Then I have a desktop starter that executes /usr/bin/xdot /tmp/tinc-graph to open the graph. I would love to have the ip addresses of the vpn ips of the tinc nodes in that graph, e.g. if one tinc node is called office00, then I would like the graph to not only show "office00", but "office00 172.18.0.10". I do not want the "real&q...
2011 Oct 08
0
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...-enable-polly-viewer -mllvm -enable-iv-rewrite Show for every function a graphviz graph that highlights the detected SCoPs. Here we also show for every non-scop region, the reason why it is not a SCoP. (This needs graphviz installed when run LLVM configure is run. You may also consider to install xdot.py [1] as a more convenient .dot file viewer. xdot.py will used automatically, if it is in the PATH during 'configure' of LLVM) 3. OpenMP: RUN: clang test.c -O3 -Xclang -load -Xclang lib/LLVMPolly.so -mllvm -enable-polly-openmp -lgomp This will automatically OpenMP parallelize your cod...
2011 Oct 07
1
[LLVMdev] How to make Polly ignore some non-affine memory accesses
I add also the output of these commands: [hades at artemis examples]$ ./compile_ex.sh super_simple_loop Printing analysis 'Polly - Detect Scops in functions' for function 'main': [hades at artemis examples]$ modifying it in : #include <stdio.h> int main() { int A[1024]; int j, k=10; for (j = 0; j < 1024; j++) A[j] = k;
2011 May 27
0
[LLVMdev] LLVM teaching materials
...use these slides. > > Hey Christian, > > thanks for letting us know. I really like your slides and I am tempted > to steal quite a bit, if I talk about LLVM the next time. ;-) > > One minor suggestion. You use dotty to show the CFG. I did this a long > time and now moved to xdot.py [1]. I like it a lot better. If you put it > in your path at least the cmake build of LLVM will automatically use it. > (It needs to be in the path, before you run the configure) > > Cheers > Tobi > > > [1]http://code.google.com/p/jrfonseca/wiki/XDot > > > >&g...
2012 Feb 16
1
[LLVMdev] Your LLVM email
I believe it's "Dotty", I simply output "opt -view-regions-only". On Thu, Feb 16, 2012 at 8:22 AM, Schuster, Vince J <vinces at lanl.gov> wrote: > Hi Ryan, > > wrt your llvm email. What do you use to get a visual > display of your .obj file? > > thanks, > Vince Schuster > > > ------------------------------ > > Message: 2 >
2007 Sep 03
2
Recommended way for initial backup before rsync calls
Hi rsync'ers. What can you recommend to create the initial backup of a partition before calling rsync (under Linux, 100 GB, 10M files, only normal files and some soft links)? (Using rsync takes too long for this initial copy.) Here are some candidates: 1. star -copy -no-fsync -p -xdot -C $1 . $2 2. tar -C $1 -cf - . | tar -C $2 -xf - 3. cp -a $1 $2 4. cpio ... ... Any experiences? Sven -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://lists.samba...
2011 May 24
1
[LLVMdev] LLVM teaching materials
On 28.02.2011, at 15:44, Tobias Grosser wrote: > On 02/28/2011 05:27 AM, Christian Plessl wrote: >> Hi everyone >> >> I am teaching a lecture on hardware/software codesign which, though not a dedicated compiler course, covers quite a bit of compiler related contents (general introduction, intermediate code, code generation). >> >> I'm currently considering
2011 Oct 03
4
[LLVMdev] How to make Polly ignore some non-affine memory accesses
Hi Tobias, thanks for the answer. I'll try to give a look to the code you pointed me to , and I'll try to make the modification myself. I'm new to LLVM and Polly, but the code of both seem clean and understandable, so I hope to be able to do it myself. In case I'll ask here for support :) Marcello 2011/10/1 Tobias Grosser <tobias at grosser.es>: > On 10/01/2011 03:26
2011 Oct 22
5
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...llvm -enable-iv-rewrite > > Show for every function a graphviz graph that highlights the detected > SCoPs. Here we also show for every non-scop region, the reason why it > is not a SCoP. (This needs graphviz installed when run LLVM configure is > run. You may also consider to install xdot.py [1] as a more convenient .dot > file viewer. xdot.py will used automatically, if it is > in the PATH during 'configure' of LLVM) > > 3. OpenMP: > > RUN: clang test.c -O3 -Xclang -load -Xclang lib/LLVMPolly.so -mllvm > -enable-polly-openmp -lgomp > > This will a...
2012 May 24
1
[LLVMdev] vmkit: Getting Started
...bin/pwd checking for Graphviz... echo Graphviz checking for dot... echo dot checking for fdp... echo fdp checking for neato... echo neato checking for twopi... echo twopi checking for circo... echo circo checking for gv... no checking for gsview32... no checking for dotty... echo dotty checking for xdot.py... echo xdot.py checking for a BSD-compatible install... /usr/bin/install -c checking for bzip2... /usr/bin/bzip2 checking for cat... /bin/cat checking for doxygen... no checking for groff... /usr/bin/groff checking for gzip... /bin/gzip checking for pdfroff... /usr/bin/pdfroff checking for runt...
2015 Aug 11
2
Fwd: [LLVMdev] SelectionDAG viewers, filter-view-dags question
Hi, It's changed a few times over the last year. I believe xdg-open spawns whichever application your desktop environment would use to open the file so you should be able to tell it to use dotty. From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Ryan Taylor via llvm-dev Sent: 11 August 2015 00:30 To: llvm-dev at lists.llvm.org Subject: [llvm-dev] Fwd: [LLVMdev]
2012 May 29
3
[LLVMdev] make error
...bin/pwd checking for Graphviz... echo Graphviz checking for dot... echo dot checking for fdp... echo fdp checking for neato... echo neato checking for twopi... echo twopi checking for circo... echo circo checking for gv... no checking for gsview32... no checking for dotty... echo dotty checking for xdot.py... echo xdot.py checking for a BSD-compatible install... /bin/install -c checking for bzip2... /bin/bzip2 checking for cat... /bin/cat checking for doxygen... no checking for groff... /usr/bin/groff checking for gzip... /bin/gzip checking for pdfroff... /usr/bin/pdfroff checking for runtest... n...
2013 Aug 16
0
[LLVMdev] [Polly] Analysis of extra compile-time overhead for simple nested loops
...loop-simplify -lcssa -loop-rotate -instcombine -scalar-evolution -loop-simplify -lcssa -iv-users -polly-indvars -o out.preopt.ll -S # Show scops with and without preopt ~$ polly-opt -basicaa -view-scops out.preopt.ll -disable-output Writing '/tmp/scops-f3a2fa.dot'... done. Running 'xdot.py' program... done. ~$ polly-opt -basicaa -polly-prepare -view-scops out.preopt.ll -disable-output Writing '/tmp/scops-37f35f.dot'... done. Running 'xdot.py' program... done. # Print the scop info: $ polly-opt -basicaa -polly-prepare -polly-scops out.preopt.ll -analyze #...
2012 May 29
0
[LLVMdev] make error
...z > checking for dot... echo dot > checking for fdp... echo fdp > checking for neato... echo neato > checking for twopi... echo twopi > checking for circo... echo circo > checking for gv... no > checking for gsview32... no > checking for dotty... echo dotty > checking for xdot.py... echo xdot.py > checking for a BSD-compatible install... /bin/install -c > checking for bzip2... /bin/bzip2 > checking for cat... /bin/cat > checking for doxygen... no > checking for groff... /usr/bin/groff > checking for gzip... /bin/gzip > checking for pdfroff... /usr/bi...
2018 Feb 12
0
[Announce] Samba 4.8.0rc3 Available for Download
...ts. In '--distance' mode (default), the distances between DCs are shown in a matrix in the terminal. With '--color=yes', this is depicted as a heatmap. With '--utf8' it is a lttle prettier. In '--dot' mode, Graphviz dot output is generated. When viewed using dot or xdot, this shows the network as a graph with DCs as vertices and connections edges. Certain types of degenerate edges are shown in different colours or line-styles. NT4-style replication based net commands removed ------------------------------------------------ The following commands and sub-commands...
2018 Feb 12
0
[Announce] Samba 4.8.0rc3 Available for Download
...ts. In '--distance' mode (default), the distances between DCs are shown in a matrix in the terminal. With '--color=yes', this is depicted as a heatmap. With '--utf8' it is a lttle prettier. In '--dot' mode, Graphviz dot output is generated. When viewed using dot or xdot, this shows the network as a graph with DCs as vertices and connections edges. Certain types of degenerate edges are shown in different colours or line-styles. NT4-style replication based net commands removed ------------------------------------------------ The following commands and sub-commands...