Suryanarayanan Manoj Sanu

Results 21 issues of Suryanarayanan Manoj Sanu

Hey guys, I was trying to use haiku to create a convolutional neural network architecture (to reproduce a paper, whose implementation was in TF2.0). The CNN works correctly, however, when...

I was trying to use the `custom_root` decorator to differentiate through a solver. When I try to take the gradients, it works well. However, if I try to use `jax.hessian`,...

enhancement

I was trying to use `jaxopt.LBFGS` with `linesearch='hager-zhang'`. The following error appeared ``` Attempted boolean conversion of traced array with shape bool[].. The error occurred while tracing the function _update_interval...

When I run a DOE with f3dasm, **sometimes**, a few nodes produce the following error and quit. ``` Error executing job with overrides: ['++hpc.jobid=4', 'hp_tune.model=baseline', 'hp_tune.model_seed=-1'] Traceback (most recent call...

``` rsampler = f3dasm.sampling.RandomUniformSampling(design, seed = 5) samples_random = rsampler.get_samples(2) ``` gives the result ![image](https://user-images.githubusercontent.com/72760812/202544462-92b407a1-5056-4783-9131-7f7d01f4b992.png) If I run `samples_random = rsampler.get_samples(2)` again, it gives a different set of samples. ![image](https://user-images.githubusercontent.com/72760812/202544754-dc50a280-d40c-41bc-9e2a-30ac1d47594a.png)...

Hey, Thank you for the implementation. From the guide, I saw that I have to register loss functions to be able to use K-FAC. For my specific case, the loss...

It seems there is come memory leakage somewhere. It can be clearly seen if the topopt example is run and you monitor the memory. It is steadily increasing. This results...

bug

- If we try to run a simple linear elastic problem with

In `solver.py`, the following lines ``` tol = 1e-6 while res_val > tol: dofs = linear_incremental_solver(problem, res_vec, A_fn, dofs, precond, use_petsc) res_vec, A_fn = newton_update_helper(dofs) # test_jacobi_precond(problem, jacobi_preconditioner(problem, dofs), A_fn)...

- At the moment, for some BCs (especially in TopOpt), the petsc version converges but the jax_solve does not. - From our tests, we understood that this is due to...