Cuda Chen

Results 63 comments of Cuda Chen

Hi @ealoshinsky, I use multiple inheritance to solve the problem in ease: ```python class MyObtainJSONWebTokenMixin(Output): # check is_manual_verified field additionally class MyObtainJSONWebToken(MutationMixin, MyObtainJSONWebTokenMixin, graphql_jwt.JSONWebTokenMutation): __doc__ = MyObtainJSONWebTokenMixin.__doc__ user = graphene.Field(UserNode)...

Hi @mangokingTW , Thanks for your help! your script really helps me to compile!

Hi, I have port some function of this library to C++. https://github.com/Cuda-Chen/gaze-tracking-cpp If you are interested, you can take it a shot.

> Can't understand why my prometheus have no dramatiq metrics It means that Prometheus does not show any metrics of `dramatiq`. > Did you solve this problem? I solve the...

@k578fgr taking the following `docker-compose.yml` as example: ```yml worker: # Use Dockerfile of your Django app build: . environment: - dramatiq_prom_host=worker - dramatiq_prom_port=9191 - prometheus_multiproc_dir=/tmp/dramatiq-prometheus - dramatiq_prom_db=/tmp/dramatiq-prometheus - command: bash...

Currently, sse2neon supports these SSE4.2 text processing intrinsics: - PCMPESTR - _mm_cmpestri - _mm_cmpestrm - _mm_cmpestra - _mm_cmpestrc - _mm_cmpestro - _mm_cmpestrs - _mm_cmpestrz - PCMPISTR - _mm_cmpistri - _mm_cmpistrm

Hi @shord , For the `SSE2NEON_PRECISE_MINMAX` usage, it is used for exact behavior of SSE conversion when handling with NaN value. For the infinity comparison test, let me do some...

Hi @shord , for the initial test of infinity, both Arm targets passes the test of positive infinity. Hi @jserv , in this initial test, I find sse2neon lacks of...

Hi @jserv and @jonathanhue, For ARMv8-A 32-bit CI build, maybe we can use [Cortex-A32](https://developer.arm.com/Processors/Cortex-A32) as this processor only supports AArch32 (the thought is inspired by [this simde issue](https://github.com/simd-everywhere/simde/issues/1106)). You may...

> I am not sure if `ARMV8_A_32BIT` is a good name to refer to the 32-bit ISA in ARMv8-A. Would it be better to specify `A32` instead? > > [Wikipedia](https://en.wikipedia.org/wiki/AArch64)...