-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstant.c
More file actions
69 lines (61 loc) · 2.04 KB
/
constant.c
File metadata and controls
69 lines (61 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Copyright 2026 Daniel Cederberg and William Zhang
*
* This file is part of the DNLP-differentiation-engine project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "atoms/affine.h"
#include <stdlib.h>
#include <string.h>
static void forward(expr *node, const double *u)
{
/* Constants don't depend on u; values are already set */
(void) node;
(void) u;
}
static void jacobian_init_impl(expr *node)
{
/* Constant jacobian is all zeros: size x n_vars with 0 nonzeros.
* new_csr_matrix uses calloc for row pointers, so they're already 0. */
node->jacobian = new_csr_matrix(node->size, node->n_vars, 0, &node->bytes);
}
static void eval_jacobian(expr *node)
{
/* Constant jacobian never changes - nothing to evaluate */
(void) node;
}
static void wsum_hess_init_impl(expr *node)
{
/* Constant Hessian is all zeros: n_vars x n_vars with 0 nonzeros. */
node->wsum_hess = new_csr_matrix(node->n_vars, node->n_vars, 0, &node->bytes);
}
static void eval_wsum_hess(expr *node, const double *w)
{
/* Constant Hessian is always zero - nothing to compute */
(void) node;
(void) w;
}
static bool is_affine(const expr *node)
{
(void) node;
return true;
}
expr *new_constant(int d1, int d2, int n_vars, const double *values)
{
expr *node = (expr *) calloc(1, sizeof(expr));
init_expr(node, d1, d2, n_vars, forward, jacobian_init_impl, eval_jacobian,
is_affine, wsum_hess_init_impl, eval_wsum_hess, NULL);
memcpy(node->value, values, node->size * sizeof(double));
return node;
}