Emanuel Rietveld
Emanuel Rietveld
Would it be better to use https://github.com/umdjs/umd, specifically, https://github.com/umdjs/umd/blob/master/templates/returnExports.js so this also works in webpack?
I have been running with this patch to pfsensible.core: ``` diff --git a/ansible/collections/ansible_collections/pfsensible/core/plugins/module_utils/__impl/interfaces.py b/ansib le/collections/ansible_collections/pfsensible/core/plugins/module_utils/__impl/interfaces.py index fb3e4b9e..1d142e8a 100644 --- a/ansible/collections/ansible_collections/pfsensible/core/plugins/module_utils/__impl/interfaces.py +++ b/ansible/collections/ansible_collections/pfsensible/core/plugins/module_utils/__impl/interfaces.py @@ -119,6 +119,18 @@ def parse_interface(self, interface, fail=True,...
Hi - found this issue from Google. My own helper functions in my own DSC modules are also not printing verbose messages. Just curious if you have found a better...
According to discussion in https://github.com/golang/go/issues/15924 reflect.StructOf might be taught to create wrapper methods for "special cases that allow reusing the existing methods of embedded fields" which is exactly the special...
Recently I learned about the github.com/cosmos72/gomacro/xreflect package that works around many limitations in reflect. Unsuccessfully, I tried using it to work around the "reflect: embedded type with methods not implemented...
Hi SyamGadde: Is it possible to use constant memory with the new Deferred SourceModule? I tried to add get_global here: https://github.com/inducer/pycuda/pull/173 I think any memcpy to a constant memory symbol...
By the way, get_texrefs and get_module are not documented yet, so we could decide to remove those altogether if it makes adding noncontiguous support easier.
I'm a beginner with CUDA. So far as I understand, globals work like this: First you declare some data \_\_constant\_\_ in your kernel source code Then (from host code) you...
Hmm. What's a good place to document this? ElementwiseKernel is only mentioned briefly in doc/source/array.rst. I suppose I could add a sentence there that .get_global() works on ElementwiseKernel. There's also...
related: #73483