Nicholas Christensen

Results 21 comments of Nicholas Christensen

etc/resolv.conf may be regenerated each time the computer starts. I found /etc/resolvconf/resolv.conf.d/head is a more persistent place to put it. (Ignore the warning at the top that file. It is...

Profile guided optimization while compiling isl might modestly improve performance.

Good point. I'll dump out the kernels for the current y3 driver to see if anything has changed in terms of batch sizes. In any case, just setting `default_tag=None` doesn't...

Cool, that would be great! It could definitely use another pair of eyes.

With a brief search, here are the limitations of the free tiers of several APIs (not sure if all have geocoding and which might require a credit card): Apple -...

@Jomme5 > Other functionality? Suggestions? Just tried out the apk on Google Drive. It is looking fairly solid. In sometimes the results are hard to read when they are in...

Odd, it cannot find `mpi4py` or `firedrake`. Any ideas what is wrong here @inducer? ``` SKIPPED [1] test_firedrake_interop.py:52: could not import 'firedrake': No module named 'firedrake' SKIPPED [2] test_chained.py:114: implementation...

@inducer, currently the context factory only works with a PyOpenCLArrayContext which is a problem in Grudge because Grudge needs a GrudgeArrayContext. Should the context factory be modified to accept a...

> What's a context factory? Sorry if I'm being dense. Sorry, I should have been more clear. It is the ArrayContextFactory defined in this chunk of code. The difficulty is...

> ```python > pytest_generate_tests_for_pyopencl_array_context = partial(pytest_generate_tests_for_cl_array_context, ArrayContextFactory) > ``` `partial` seems to interfere with pytest. ``` from meshmode.array_context import ( # noqa pytest_generate_tests_for_pyopencl_array_context as pytest_generate_tests) from meshmode.array_context import PyOpenCLArrayContext from...