Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
caisar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
caisar
Commits
958ac548
Commit
958ac548
authored
2 years ago
by
Julien Girard-Satabin
Browse files
Options
Downloads
Patches
Plain Diff
Added meta nn filename for compatibility.
parent
0ed4d922
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/transformations/actual_net_apply.ml
+11
-7
11 additions, 7 deletions
src/transformations/actual_net_apply.ml
with
11 additions
and
7 deletions
src/transformations/actual_net_apply.ml
+
11
−
7
View file @
958ac548
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
open
Why3
open
Why3
open
Base
open
Base
open
Utils
module
IR
=
Ir
.
Nier_cfg
module
IR
=
Ir
.
Nier_cfg
module
G
=
Onnx
.
G
module
G
=
Onnx
.
G
...
@@ -307,12 +308,13 @@ let terms_of_nier g ty_inputs env ~net_output_vars ~net_input_vars =
...
@@ -307,12 +308,13 @@ let terms_of_nier g ty_inputs env ~net_output_vars ~net_input_vars =
(* Create logic symbols for input variables and replace
(* Create logic symbols for input variables and replace
* nnet_apply by control flow terms. *)
* nnet_apply by control flow terms. *)
let
actual_nn_flow
env
=
let
actual_nn_flow
env
=
let
rec
substitute_net_apply
(
term
:
Term
.
term
)
=
let
rec
substitute_net_apply
meta
(
term
:
Term
.
term
)
=
match
term
.
t_node
with
match
term
.
t_node
with
|
Term
.
Tapp
(
ls
,
args
)
->
(
|
Term
.
Tapp
(
ls
,
args
)
->
(
match
Language
.
lookup_loaded_nets
ls
with
match
Language
.
lookup_loaded_nets
ls
with
|
None
->
Term
.
t_map
substitute_net_apply
term
|
None
->
Term
.
t_map
(
substitute_net_apply
meta
)
term
|
Some
nn
->
|
Some
nn
->
meta
:=
nn
.
filename
::
!
meta
;
let
g
=
let
g
=
match
nn
.
nier
with
match
nn
.
nier
with
|
Some
g
->
g
|
Some
g
->
g
...
@@ -333,24 +335,26 @@ let actual_nn_flow env =
...
@@ -333,24 +335,26 @@ let actual_nn_flow env =
]
]
~
net_input_vars
~
net_input_vars
in
in
Stdio
.
printf
"
\n
Obtained term:
\n
%!"
;
Pretty
.
print_term
Fmt
.
stdout
cfg_term
;
Stdio
.
printf
"
\n
%!"
;
cfg_term
)
cfg_term
)
|
_
->
Term
.
t_map
substitute_net_apply
term
|
_
->
Term
.
t_map
(
substitute_net_apply
meta
)
term
in
in
Trans
.
fold
Trans
.
fold
(
fun
task_hd
task
->
(
fun
task_hd
task
->
match
task_hd
.
task_decl
.
td_node
with
match
task_hd
.
task_decl
.
td_node
with
|
Use
_
|
Clone
_
|
Meta
_
->
Task
.
add_tdecl
task
task_hd
.
task_decl
|
Use
_
|
Clone
_
|
Meta
_
->
Task
.
add_tdecl
task
task_hd
.
task_decl
|
Decl
decl
->
|
Decl
decl
->
let
meta
=
ref
[]
in
let
decl
=
let
decl
=
Decl
.
decl_map
Decl
.
decl_map
(
fun
term
->
(
fun
term
->
let
term
=
substitute_net_apply
term
in
let
term
=
substitute_net_apply
meta
term
in
term
)
term
)
decl
decl
in
in
let
task
=
List
.
fold
!
meta
~
init
:
task
~
f
:
(
fun
task
s
->
Task
.
add_meta
task
meta_nn_filename
[
MAstr
s
])
in
Task
.
add_decl
task
decl
)
Task
.
add_decl
task
decl
)
None
None
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment