Vladimir
Vladimir
Input: ```cpp struct CamInfo { float projM[16]; float width; float height; }; void VertexShader(const CamInfo& u, float vx, float vy, float vz, float output[2]) { const float W = vx...
Hello! I took an example of jacobian from main page (h). If i make the first parameter array, clad crashes :( Input: ```cpp //void h(float a, float b, float output[])...
The problem is in "error_reporting.ipp", line 80 ``` //settings_inp->opt_fn_value = opt_objfn(x_p,nullptr,opt_data); ``` https://drive.google.com/file/d/1XyAOyllOcnY3q10nHETtd6gvrWqGU4ov/view?usp=sharing https://drive.google.com/file/d/12qemu3_UEhJGcZ21mwypk5RPIFuXCXgf/view?usp=sharing Seems something was "std::moved" out of memory. Probably this is Eigen problem but may be you...
Input: ``` __attribute__((reqd_work_group_size(1, 1, 1))) __kernel void kernel1D_Test1(__global uint* restrict a_data) { a_data[get_local_id(0)] = 3; } __attribute__((reqd_work_group_size(32, 8, 1))) __kernel void kernel2D_Test2(__global uint* restrict a_data) { const uint localId =...
Use latest release 1.1 code: ``` static inline void mat4_colmajor_mul_vec4(float* __restrict RES, const float* __restrict B, const float* __restrict V) // modern gcc compiler succesfuly vectorize such implementation! { RES[0]...
Greetings! I have a project on differential rendering (path tracer) which uses Enzyme. While working with it I encounter some Enzyme bugs and i'm not sure how to report them...
1) The source code to reproduce the bug: https://drive.google.com/file/d/1HaSsqCharKF2mdg8wMA6IrPDwy3fL848/view?usp=sharing 2) The error from validation layer: ``` UNASSIGNED-CoreValidation-Shader-InconsistentSpirv(ERROR / SPEC): msgNum: 7060244 - Validation Error: [ UNASSIGNED-CoreValidation-Shader-InconsistentSpirv ] Object 0: handle...
It would be nice to have a doc page with list of features which should not be used at all (due to some fundamental restrictions of SPIR-V) or should not...