fo40225
fo40225
@RoyiAvital You can write a wrapper dll that export all function in MKL but static link the mkl.lib and patch. It should work.
change ```C #ifndef _MSC_VER // adapted from https://github.com/01org/linux-sgx/blob/master/common/inc/internal/linux/cpuid_gnu.h void __cpuidex(int cpuid[4], int func_id, int subfunc_id) ``` to ```C #if !defined(_MSC_VER) && !defined(__INTEL_LLVM_COMPILER) // adapted from https://github.com/01org/linux-sgx/blob/master/common/inc/internal/linux/cpuid_gnu.h void __cpuidex(int cpuid[4], int...
Have you tried using CUDA 11 (skipping driver installation during installation)?
Do you have `C++ Clang Compiler for Windows`, `MSBuild support for LLVM (clang-cl) toolset` and `C++ Clang tools for Windows` installed? (in Visual Studio installer) Can you change the compiler...
Sorry, I haven't compiled TensorFlow in a while. You can refer to this link https://www.tensorflow.org/install/source_windows#cpu-only to use msvc or clang. Try using msvc or make sure that your clang-cl and...
You've misunderstood the issue. My computer has 2TB of memory, so `-Xmx1794G` is not the cause of the problem. When using the original BAM file (447GB) as input, `SortSamSpark` runs...
@jonn-smith The original BAM (containing short reads) will run normally. The filtered BAM (containing only long reads) will crash. @lbergelson Is there a way to keep the file in `--conf...