Simeon Ehrig

Results 72 issues of Simeon Ehrig

# Problem The following code doesn't works in cuda mode: ``` C++ [cling]$ __constant__ int array[1024]; ``` The following error is thrown: ``` input_line_3:2:2: error: __constant__ variables must be global...

# Problem ```c++ $ cling -std=c++14 -xcuda ****************** CLING ****************** * Type C++ code and press enter to run it * * Type .q to exit * ******************************************* [cling]$ auto...

# Problem Following code is valid, but the result is wrong: ``` C++ [cling]$ __device__ int deviceGlobal; [cling]$ [cling]$ .rawInput 1 [cling]! __global__ void gKernel1(int * output){ [cling]! ? *output...

# Input `cling -xcuda` ``` c++ #include std::random_device dev; std::mt19937 rng(dev()); std::uniform_real_distribution dist(0.f, 10.f); dist(rng) ``` # Message ``` IncrementalExecutor::executeFunction: symbol '_ZSt3loge' unresolved while linking function '__cuda_module_ctor_cling_module_5'! You are probably...

# Problem If the metacommand `.L` is used to load source code from a file, the device compiler returns an error. But the host works fine. ```bash $ cat getCudaVersion.cpp...

To be consistent, the tags for cling 0.7 and 0.8 should also be added to the llvm repository. At the moment the latest tag is `cling-v0.6`. "Related" to issue: #378

Hi, i have a problem with `std::future`. If I run the following code, I get the following error: ```C++ cling -pthread ****************** CLING ****************** * Type C++ code and press...

Modifying the `kernel.json` is the only way I know to set cling arguments in xeus-cling. This way is unfortunately not comfortable and causes many similar kernels in Jupyter Notebook. For...

# Problem When I try to run the `Button Widget` section of the example in Jupyter Lab, the output of `foo()` is printed to the log. ![xwidgts_log](https://user-images.githubusercontent.com/10682583/77637008-3debfa80-6f55-11ea-951e-c1f25976ee48.png) (Kernel C++14) #...

Hi, nice project. Is it possible that `conda.el` automatically deactivates the conda environment if no `conda-project-env-name` is activated in `conda-env-autoactivate-mode`? I develop many different projects with different languages and dependencies...

enhancement