Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
9
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
PALISADE
PALISADE Development
Commits
9a50da40
Commit
9a50da40
authored
Jun 14, 2018
by
Gerard Ryan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'small-ramparts-glitches' into 'master'
remove extra traces See merge request !427
parents
6402ca43
3a67ee74
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/circuit/lib/circuitnode.cpp
src/circuit/lib/circuitnode.cpp
+7
-7
No files found.
src/circuit/lib/circuitnode.cpp
View file @
9a50da40
...
...
@@ -405,21 +405,21 @@ void EvalInnerProdNodeWithValue<Element>::eval(EvaluateMode mode, CryptoContext<
}
else
if
(
mode
==
Evaluate
)
{
TimeVar
t
;
TIC
(
t
);
//
TimeVar t;
//
TIC(t);
auto
arg1
=
cc
->
EvalMerge
(
vec1
);
cout
<<
"first merge of "
<<
vecsize
<<
" takes "
<<
TOC_MS
(
t
)
<<
endl
;
TIC
(
t
);
//
cout << "first merge of " << vecsize << " takes " << TOC_MS(t) << endl;
//
TIC(t);
auto
arg2
=
cc
->
EvalMerge
(
vec2
);
cout
<<
"second merge of "
<<
vecsize
<<
" takes "
<<
TOC_MS
(
t
)
<<
endl
;
//
cout << "second merge of " << vecsize << " takes " << TOC_MS(t) << endl;
if
(
CircuitOpTrace
)
{
ss
<<
"}
\n
EvalInnerProduct of results, depth "
<<
innerProdDepth
;
}
TIC
(
t
);
//
TIC(t);
this
->
value
=
cc
->
EvalInnerProduct
(
arg1
,
arg2
,
innerProdDepth
);
cout
<<
"inner prod takes "
<<
TOC_MS
(
t
)
<<
endl
;
//
cout << "inner prod takes " << TOC_MS(t) << endl;
if
(
CircuitOpTrace
)
{
cout
<<
ss
.
str
()
<<
endl
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment