vmasyagin
vmasyagin
Good day. I am trying to apply the distributed matrix loading approach from the example AMGX / examples / amgx_mpi_capi_cla.c in my code. The peculiarity of my code is that...
{ AMGX_matrix_handle A1; AMGX_vector_handle rhs; AMGX_vector_handle sln; AMGX_matrix_create(&A1, rsrc, AMGX_mode_dDDI); AMGX_vector_create(&rhs, rsrc, AMGX_mode_dDDI); AMGX_vector_create(&sln, rsrc, AMGX_mode_dDDI); double data[] = {1, -2, -3, 1, 1, -4, -5, 1}; AMGX_pin_memory(data, sizeof(double) *...
Good afternoon. I'm trying to use your code as a library in the code. In file go.mod I write the dependency github.com/golang-migrate/migrate/v4 v4.15.2. Everything is regular, but only the dependency...
Good afternoon. Please suggest what is wrong with my request. Execute command in code _, err = cs.V2().Artifact.DeleteTag(context.TODO(), &artifact.DeleteTagParams{ Reference: reference, TagName: reference, ProjectName: *r.Project, RepositoryName: repositoryName, }) and i...