Dmitry Mikushin

Results 78 issues of Dmitry Mikushin

This works around the crash due to the NULL value of `module->debug_info`.

In tools/flang2/flang2exe/llutil.cpp:1707: ```c++ 1705 #ifdef OMP_OFFLOAD_LLVM 1706 if(flg.omptarget) 1707 ll_write_module_header(gbl.ompaccfile, gpu_llvm_module); 1708 #endif ``` The `gbl.ompaccfile` value is uninitialized ``` (gdb) p gbl.ompaccfile $4 = (FILE *) 0x0 ```

By testing ``` flang -O2 -fopenmp -fopenmp-targets=x86_64 /openmp-offload-example/src/example.f90 -o /openmp-offload-example/build/example ``` I get a linking error: ``` /usr/bin/ld: /tmp/example-49d1c7.o:(.rodata+0x0): undefined reference to `.omp_offloading.img_start.nvptx64-nvidia-cuda' /usr/bin/ld: /tmp/example-49d1c7.o:(.rodata+0x8): undefined reference to `.omp_offloading.img_end.nvptx64-nvidia-cuda' /usr/bin/ld:...

In order for this project to ever be useful and accepted by the community, you have to develop a way to integrate it into LLVM toolchain in a non-destructive way....

Guys, this code is really bad quality. Someone who wrote it does not really understand how to write C/C++ code. I'm sorry to say this, but look for yourself: ```...

Hi @mikedh , I apologize for first posting [this question](https://github.com/mmatl/pyrender/issues/273) to pyrender, however it more likely belongs to trimesh. I've been desperately trying to render the GBL model of an...

Hello, thank you for this project! This PR fixes some TypeScript compile errors when compiing for source.

When running bwrap within a job of a SLURM cluster node, I get the following error: ``` $ srun user bwrap: pivot_root: Invalid argument ``` It's highly desirable to let...

help wanted

In #594 I've found that bubblewrap fails due to `pivot_root()`, when binding folder on an NFS filesystem. It would be a pity to fail the entire bubblewrap due to this...

Nobody would ever spot it, but I have luck: it creates a strange compile error on nvcc with -ccbin=clang: ``` /usr/lib/llvm-14/lib/clang/14.0.0/include/omp.h(496): error: function omp_is_initial_device has already been defined ``` Anyway,...