This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- address: Phillips Auditorium at the Center for Astrophysics, 60 Garden Street | |
contact: [email protected] | |
country: United-States | |
enddate: 2013-08-24 | |
humandate: August 23-24, 2013 | |
humantime: 9:00 am - 4:30 pm | |
instructor: [Erik Bray, Jessica McKellar, R. David Murray, Mike Selik] | |
latlng: 42.381705,-71.127904 | |
layout: bootcamp | |
registration: restricted |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Warning: no access to tty (Bad file descriptor). | |
Thus no job control in this shell. | |
ModuleCmd_Switch.c(172):ERROR:152: Module 'PrgEnv-pgi' is currently not loaded | |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
testing import | |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
Application 22407609 resources: utime ~0s, stime ~0s | |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
testing import on all mpi processes | |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test_import | |
testing poisson on 1 node (8 mpi tasks) | |
Initializing NumericalSolution for poisson_3d_c0p1pe8 | |
System includes: | |
poisson_3d_c0p1pe8 | |
Setting Archiver(s) | |
Setting up MultilevelMesh | |
Building one multilevel mesh for all models | |
Generating mesh for poisson_3d_c0p1pe8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALL OUTPUT FROM NOSETESTS | |
============================================================ | |
/Users/aron/sandbox/clawpack/amrclaw/tests/acoustics_2d_radial | |
============================================================ | |
rm -f xamr qinit.f.html setprob.f.html regression_tests.py.html setplot.py.html setrun.py.html regression_data_test2.html regression_data_test3.html regression_data_test4.html Makefile.html | |
rm -f .data .output .plots .htmls | |
gfortran -c /Users/aron/sandbox/clawpack/amrclaw/src/2d/amr_module.f90 -J/Users/aron/sandbox/clawpack/amrclaw/src/2d -I/Users/aron/sandbox/clawpack/amrclaw/src/2d/ -I/Users/aron/sandbox/clawpack/amrclaw/src/2d/ -I/Users/aron/sandbox/clawpack/amrclaw/src/2d/ -I/Users/aron/sandbox/clawpack/amrclaw/tests/acoustics_2d_radial/ -o /Users/aron/sandbox/clawpack/amrclaw/src/2d/amr_module.o | |
gfortran -c /Users/aron/sandbox/clawpack/amrclaw/src/2d/gauges_module.f90 -J/Users/aron/sandbox/clawpack/amrclaw/src/2d -I/Users/aron/sandbox/clawpack/amrclaw/src/2d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Fortran f2py related magics. | |
Author: | |
* David Trémouilles | |
""" | |
#----------------------------------------------------------------------------- | |
# Copyright (C) 2010-2012, IPython Development Team. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from timeit import timeit | |
try: | |
import numpypy as np | |
except: | |
import numpy as np | |
import math | |
def window_floor(idx, radius): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r _site_maruku/1900-01-01-example-page/index.html _site_rdiscount/1900-01-01-example-page/index.html | |
30c30 | |
< <h1 id='an_example'>An Example</h1> | |
--- | |
> <h1>An Example</h1> | |
32,34c32,39 | |
< <p>Our posturings, our imagined self-importance, the delusion that we have some privileged position in the Universe, are challenged by this point of pale light. Our planet is a lonely speck in the great enveloping cosmic dark. In our obscurity, in all this vastness, there is no hint that help will come from elsewhere to save us from ourselves.</p> | |
< <div class='highlight'><pre><code class='python'><span class='k'>def</span> <span class='nf'>hello_world</span><span class='p'>():</span> | |
< <span class='k'>print</span> <span class='s'>'Hello, world!'</span> | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
"""C magic. | |
This is a very simple magic for compiling and importing C code with ctypes. | |
This derives from biteymagic.py, by Bradley Froehle: | |
https://gist.github.com/bfroehle/3458310 | |
You must provide the function names you would like exported. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.py[oc] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
#!/usr/bin/python | |
# | |
# Created by Albert Au Yeung (2010) | |
# http://www.quuxlabs.com/blog/2010/09/matrix-factorization-a-simple-tutorial-and-implementation-in-python/#source-code | |
# | |
# Modifications by Josh Hemann and Aron Ahmadia | |
# | |
# An implementation of matrix factorization | |
# |