Sem Mulder

Results 15 comments of Sem Mulder

#736 is relevant to this as well it seems :)

I get something similar with `keras @ 2.4.2` on `master`: Traceback ``` warning: Git tree '/home/sem/git/amflow/vision' is dirty error: infinite recursion encountered at /nix/store/wxn6cfj8p7kf720jyz3r3xfw3xvn6kdh-source/lib/attrsets.nix:312:41: 311| */ 312| nameValuePair = name:...

Precisely! So the quoting results in the following: ``` :9:9: error: macro name must be an identifier In file included from stringInput.cl:2: main.cl:193:57: error: use of undeclared identifier 'NEIGHBOURHOOD_ARRAY' main.cl:348:57:...

Looking at [the ROCm OpenCL build options parser](https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/blob/master/compiler/lib/utils/options.cpp#L607) it indeed looks like the only unsafe character is a space, and it should be escaped by double quotes. I couldn't find...

I finally managed to squeeze out a PR, please have a look.

+1, I'm running into this when converting third party API responses into properly typed dataclasses. I want to be able to write: ```python raw_response: JsonDict @dataclass class ResponseDataclass: field: str...

As an aside, if we could declare lower bounds based on TypeVars we could implement `downcast` as follows: ```python TargetType = TypeVar('TargetType') ValueType = TypeVar('ValueType', lower_bound=TargetType) def downcast(target: Type[TargetType], value:...

> That is gonna force people using newer versions of AGP, that could be a problem for a portion of Android users, but the majority of the problem would come...