public inbox for gentoo-science@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Xavier Fernández i Marín" <xfim.ll@gmail.com>
To: gentoo-science@lists.gentoo.org
Subject: Re: [gentoo-science] sci-libs/atlas from science overlay - is it multithreaded?
Date: Tue, 9 Apr 2013 16:17:38 +0200	[thread overview]
Message-ID: <20130409141738.GA24971@deu.xfim> (raw)
In-Reply-To: <51641C4E.2090502@gentoo.org>

justin vas escriure el dia dt, 09 abr 2013:

> Could you provide me a sample script which should run jags in parallel?

This file generates data and samples (call it desc-000.bug)

-----8<---------------
data {
  Alpha <- 3
  Beta <- 5
  Sigma <- 0.5 
  N <- 500
  for (i in 1:500) {
  epsilon[i] ~ dnorm(0, 1/Sigma^2)
  x[i] ~ dunif(0, 10)
  y[i] <- Alpha + Beta*x[i] + epsilon[i]
  }
}
model {
  for (i in 1:500) {
  y[i] ~ dnorm(mu[i], tau)
  mu[i] <- alpha + beta * x[i]
  }
  alpha ~ dnorm(0, 0.001)
  beta ~ dnorm(0, 0.001)
  tau <- pow(sigma, -2)
  sigma ~ dgamma(0.001, 0.001)
}
-----8<---------------

The sample script with 3 chains (m-000.jmd) that calls the previous file.
-----8<---------------
model in "desc-000.bug"
compile, nchains(3)
initialize
update 10000
monitor alpha
monitor beta
monitor sigma
update 10000
coda *, stem(coda_m-000-)
parameters to "outs-000"
exit
-----8<---------------

HTH,

-- 
-  Xavier  -


      reply	other threads:[~2013-04-09 14:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-09 13:40 [gentoo-science] sci-libs/atlas from science overlay - is it multithreaded? Xavier Fernández i Marín
2013-04-09 13:49 ` justin
2013-04-09 14:17   ` Xavier Fernández i Marín [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130409141738.GA24971@deu.xfim \
    --to=xfim.ll@gmail.com \
    --cc=gentoo-science@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox