Skip to content

Instantly share code, notes, and snippets.

<core_client_version>7.4.36</core_client_version>
<![CDATA[
<stderr_txt>
_MODULE_NOT_FOUND
00:00:00.195493 VMSetError: Failed to register ourselves as a PCI Bus
00:00:00.195560 PDM: Failed to construct 'pci'/0! VERR_MODULE_NOT_FOUND (-610) - Module not found.
00:00:00.375107 ERROR [COM]: aRC=E_FAIL (0x80004005) aIID={8ab7c520-2442-4b66-8d74-4ff1e195d2b6} aComponent={Console} aText={Cannot load R0 module C:\Program Files\Oracle\VirtualBox/VBoxDDR0.r0: SUPR3LoadModule: supLoadModule returned VERR_LDR_MISMATCH_NATIVE (VERR_LDR_MISMATCH_NATIVE).
00:00:00.375158 Failed to register ourselves as a PCI Bus (VERR_MODULE_NOT_FOUND)}, preserve=false
00:00:00.388008 Power up failed (vrc=VERR_MODULE_NOT_FOUND, rc=E_FAIL (0X80004005))
@marius311
marius311 / fftbench.jl
Created December 16, 2016 12:05
Some simple parallel FFT benchmarks in Julia
using BenchmarkTools
x = rand(Complex{Float64}, 2048,2048);
y = similar(x)
times = map(1:8) do i
FFTW.set_num_threads(i)
p = plan_fft(x, flags=FFTW.MEASURE)
median((@benchmark A_mul_B!($y,$p,$x)).times)/1e6
end
@marius311
marius311 / waf-f2py.py
Created October 28, 2012 21:12
Use waf to build an f2py extension instead of f2py's built in compiler based on scons.
import os.path as osp, numpy
from waflib.Utils import to_list
def build_f2py(bld, source, module_name, extra_sources, skip=None, only=None, symlink=False, **kwargs):
"""
Build an f2py extension with waf.
Arguments:
----------
@marius311
marius311 / ipyn.carv
Created October 11, 2012 22:40
Get an IPython notebook running on Carver.
#!/usr/bin/env python
#Specify this:
username = ''
"""
Get an IPython notebook running on Carver.
Usage: