Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Laurell, Pontus Bengt Johan
dmrgpp
Commits
5213f2a7
Commit
5213f2a7
authored
Aug 20, 2019
by
Alvarez, Gonzalo
Browse files
TjAncillaC:: cannot parallel for now
parent
e0e9183d
Changes
2
Hide whitespace changes
Inline
Side-by-side
TestSuite/postCi.pl
View file @
5213f2a7
...
...
@@ -210,7 +210,12 @@ sub procMemcheck
my
$mode
=
"
OK
";
my
$extra
=
"
UNDEFINED
";
my
%lost
;
open
(
FILE
,
"
<
",
$file1
)
or
die
"
$0: Cannot open
$file1
: $!
\n
";
my
$ret
=
open
(
FILE
,
"
<
",
$file1
);
if
(
!
$ret
)
{
print
STDERR
"
$0: Cannot open
$file1
: $!
\n
";
return
;
}
while
(
<
FILE
>
)
{
if
(
/FATAL: You are requesting/
||
/mandatory label/
)
{
$mode
=
"
FATAL
";
...
...
src/Models/TjAncillaC/TjAncillaC.h
View file @
5213f2a7
...
...
@@ -131,7 +131,10 @@ public:
:
ModelBaseType
(
solverParams
,
geometry
,
io
),
modelParameters_
(
io
),
geometry_
(
geometry
)
{}
{
if
(
PsimagLite
::
Concurrency
::
codeSectionParams
.
npthreads
!=
1
)
err
(
"TjAncillaC:: cannot be run with Threads > 1 sorry
\n
"
);
}
void
write
(
PsimagLite
::
String
label1
,
PsimagLite
::
IoNg
::
Out
::
Serializer
&
io
)
const
{
...
...
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