Where can I find missed hpccinf.txt for hpcc?
I have installed hpcc
package to benchmark my system. Its description is as follows:
Description-en: HPC Challenge benchmark
The High Performance Computing (HPC) Challenge benchmark runs a suite
of 7 tests that measure the performance of CPU, memory and network for
HPC clusters. Amongst others, it includes the High-Performance LINPACK
(HPL) benchmark, used by the Top500 ranking (http://www.top500.org/).
It has executable named hpcc
and placed in /usr/bin/hpcc
.
If I run it - I get error message:
$ hpcc
HPL WARNING from process # 0, on line 313 of function HPL_pdinfo:
>>> cannot open file hpccinf.txt <<<
How to correctly run hpcc
and where can I get hpccinf.txt
file?
performance benchmarks
add a comment |
I have installed hpcc
package to benchmark my system. Its description is as follows:
Description-en: HPC Challenge benchmark
The High Performance Computing (HPC) Challenge benchmark runs a suite
of 7 tests that measure the performance of CPU, memory and network for
HPC clusters. Amongst others, it includes the High-Performance LINPACK
(HPL) benchmark, used by the Top500 ranking (http://www.top500.org/).
It has executable named hpcc
and placed in /usr/bin/hpcc
.
If I run it - I get error message:
$ hpcc
HPL WARNING from process # 0, on line 313 of function HPL_pdinfo:
>>> cannot open file hpccinf.txt <<<
How to correctly run hpcc
and where can I get hpccinf.txt
file?
performance benchmarks
add a comment |
I have installed hpcc
package to benchmark my system. Its description is as follows:
Description-en: HPC Challenge benchmark
The High Performance Computing (HPC) Challenge benchmark runs a suite
of 7 tests that measure the performance of CPU, memory and network for
HPC clusters. Amongst others, it includes the High-Performance LINPACK
(HPL) benchmark, used by the Top500 ranking (http://www.top500.org/).
It has executable named hpcc
and placed in /usr/bin/hpcc
.
If I run it - I get error message:
$ hpcc
HPL WARNING from process # 0, on line 313 of function HPL_pdinfo:
>>> cannot open file hpccinf.txt <<<
How to correctly run hpcc
and where can I get hpccinf.txt
file?
performance benchmarks
I have installed hpcc
package to benchmark my system. Its description is as follows:
Description-en: HPC Challenge benchmark
The High Performance Computing (HPC) Challenge benchmark runs a suite
of 7 tests that measure the performance of CPU, memory and network for
HPC clusters. Amongst others, it includes the High-Performance LINPACK
(HPL) benchmark, used by the Top500 ranking (http://www.top500.org/).
It has executable named hpcc
and placed in /usr/bin/hpcc
.
If I run it - I get error message:
$ hpcc
HPL WARNING from process # 0, on line 313 of function HPL_pdinfo:
>>> cannot open file hpccinf.txt <<<
How to correctly run hpcc
and where can I get hpccinf.txt
file?
performance benchmarks
performance benchmarks
asked Jul 4 '18 at 16:28
N0rbert
21.3k547100
21.3k547100
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
According to man hpcc
The High Performance Computing (HPC) Challenge benchmark runs a suite of tests that
measure the performance of CPU, memory and network for HPC clusters. hpcc takes its
parameters from a hpccinf.txt file. An example can be found in
/usr/share/doc/hpcc/examples/_hpccinf.txt
.
So we need to copy /usr/share/doc/hpcc/examples/_hpccinf.txt
to current directory with name hpccinf.txt
, edit it and run it with mpirun.openmpi hpcc
as described in /usr/share/doc/hpcc/README.Debian
:
HPC Challenge Benchmark for Debian
Please read
/usr/share/doc/hpcc/README.txt.gz
, especially section
'Runtime configuration'.
An
hpccinf.txt
input file is provided as
/usr/share/doc/hpcc/examples/_hpccinf.txt
. Copy it into your current
dir, tune it and launchhpcc
usingmpirun.openmpi
: $mpirun.openmpi
hpcc
-- Lucas Nussbaum Sat, 13 Jun 2009
16:04:17 +0200
So we have two options:
use default
hpccinf.txt
from repository and run benchmark
cp /usr/share/doc/hpcc/examples/_hpccinf.txt hpccinf.txt
mpirun.openmpi -np $(nproc) hpcc
The results will be saved in
hpccoutf.txt
file.
customize
hpccinf.txt
for modern systems with 4-8 cores (solving matrix with 10000x10000 dimmensions):
cat << EOF > hpccinf.txt
HPLinpack benchmark input file
Innovative Computing Laboratory, University of Tennessee
HPL.out output file name (if any)
6 device out (6=stdout,7=stderr,file)
1 # of problems sizes (N)
10000 Ns
1 # of NBs
128 NBs
0 PMAP process mapping (0=Row-,1=Column-major)
1 # of process grids (P x Q)
1 Ps
1 Qs
16.0 threshold
1 # of panel fact
2 PFACTs (0=left, 1=Crout, 2=Right)
1 # of recursive stopping criterium
4 NBMINs (>= 1)
1 # of panels in recursion
2 NDIVs
1 # of recursive panel fact.
1 RFACTs (0=left, 1=Crout, 2=Right)
1 # of broadcast
1 BCASTs (0=1rg,1=1rM,2=2rg,3=2rM,4=Lng,5=LnM)
1 # of lookahead depth
1 DEPTHs (>=0)
0 SWAP (0=bin-exch,1=long,2=mix)
1 swapping threshold
1 L1 in (0=transposed,1=no-transposed) form
1 U in (0=transposed,1=no-transposed) form
0 Equilibration (0=no,1=yes)
8 memory alignment in double (> 0)
EOF
Then run benchmark and interpret the results
mpirun.openmpi -np $(nproc) hpcc && grep Gflops$ -A3 hpccoutf.txt
Examples for 64-bit Ubuntu 16.04.4 LTS:
+------------------------+---------|-----------+----|----|
| CPU | Threads | Gflops | Ps | Qs |
+------------------------+---------+-----------|----+----+
| Intel i7-740QM | 8 | 16.4 | 1 | 1 |
| Intel i7-920 | 8 | 28.1 | 2 | 2 |
| Intel i7-4790 | 8 | 137.1 | 1 | 1 |
| Intel i7-3537U | 4 | 14.3 | 2 | 2 |
| AMD A4-4000 | 2 | 6.6 | 2 | 1 |
| Intel Core 2 Duo E8300 | 2 | 16.2 | 2 | 1 |
| Intel Pentium G3420 | 2 | 26.1 | 2 | 1 |
| Raspberry Pi 3B+ | 4 | 1.9 | 1 | 1 |
+------------------------+---------+-----------|----+----+
Note: if have Intel you can use also their optimized LINPACK benchmark. Its results is +25% higher.
1
You also could use the generator here
– Thomas
Jul 5 '18 at 12:51
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1052180%2fwhere-can-i-find-missed-hpccinf-txt-for-hpcc%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to man hpcc
The High Performance Computing (HPC) Challenge benchmark runs a suite of tests that
measure the performance of CPU, memory and network for HPC clusters. hpcc takes its
parameters from a hpccinf.txt file. An example can be found in
/usr/share/doc/hpcc/examples/_hpccinf.txt
.
So we need to copy /usr/share/doc/hpcc/examples/_hpccinf.txt
to current directory with name hpccinf.txt
, edit it and run it with mpirun.openmpi hpcc
as described in /usr/share/doc/hpcc/README.Debian
:
HPC Challenge Benchmark for Debian
Please read
/usr/share/doc/hpcc/README.txt.gz
, especially section
'Runtime configuration'.
An
hpccinf.txt
input file is provided as
/usr/share/doc/hpcc/examples/_hpccinf.txt
. Copy it into your current
dir, tune it and launchhpcc
usingmpirun.openmpi
: $mpirun.openmpi
hpcc
-- Lucas Nussbaum Sat, 13 Jun 2009
16:04:17 +0200
So we have two options:
use default
hpccinf.txt
from repository and run benchmark
cp /usr/share/doc/hpcc/examples/_hpccinf.txt hpccinf.txt
mpirun.openmpi -np $(nproc) hpcc
The results will be saved in
hpccoutf.txt
file.
customize
hpccinf.txt
for modern systems with 4-8 cores (solving matrix with 10000x10000 dimmensions):
cat << EOF > hpccinf.txt
HPLinpack benchmark input file
Innovative Computing Laboratory, University of Tennessee
HPL.out output file name (if any)
6 device out (6=stdout,7=stderr,file)
1 # of problems sizes (N)
10000 Ns
1 # of NBs
128 NBs
0 PMAP process mapping (0=Row-,1=Column-major)
1 # of process grids (P x Q)
1 Ps
1 Qs
16.0 threshold
1 # of panel fact
2 PFACTs (0=left, 1=Crout, 2=Right)
1 # of recursive stopping criterium
4 NBMINs (>= 1)
1 # of panels in recursion
2 NDIVs
1 # of recursive panel fact.
1 RFACTs (0=left, 1=Crout, 2=Right)
1 # of broadcast
1 BCASTs (0=1rg,1=1rM,2=2rg,3=2rM,4=Lng,5=LnM)
1 # of lookahead depth
1 DEPTHs (>=0)
0 SWAP (0=bin-exch,1=long,2=mix)
1 swapping threshold
1 L1 in (0=transposed,1=no-transposed) form
1 U in (0=transposed,1=no-transposed) form
0 Equilibration (0=no,1=yes)
8 memory alignment in double (> 0)
EOF
Then run benchmark and interpret the results
mpirun.openmpi -np $(nproc) hpcc && grep Gflops$ -A3 hpccoutf.txt
Examples for 64-bit Ubuntu 16.04.4 LTS:
+------------------------+---------|-----------+----|----|
| CPU | Threads | Gflops | Ps | Qs |
+------------------------+---------+-----------|----+----+
| Intel i7-740QM | 8 | 16.4 | 1 | 1 |
| Intel i7-920 | 8 | 28.1 | 2 | 2 |
| Intel i7-4790 | 8 | 137.1 | 1 | 1 |
| Intel i7-3537U | 4 | 14.3 | 2 | 2 |
| AMD A4-4000 | 2 | 6.6 | 2 | 1 |
| Intel Core 2 Duo E8300 | 2 | 16.2 | 2 | 1 |
| Intel Pentium G3420 | 2 | 26.1 | 2 | 1 |
| Raspberry Pi 3B+ | 4 | 1.9 | 1 | 1 |
+------------------------+---------+-----------|----+----+
Note: if have Intel you can use also their optimized LINPACK benchmark. Its results is +25% higher.
1
You also could use the generator here
– Thomas
Jul 5 '18 at 12:51
add a comment |
According to man hpcc
The High Performance Computing (HPC) Challenge benchmark runs a suite of tests that
measure the performance of CPU, memory and network for HPC clusters. hpcc takes its
parameters from a hpccinf.txt file. An example can be found in
/usr/share/doc/hpcc/examples/_hpccinf.txt
.
So we need to copy /usr/share/doc/hpcc/examples/_hpccinf.txt
to current directory with name hpccinf.txt
, edit it and run it with mpirun.openmpi hpcc
as described in /usr/share/doc/hpcc/README.Debian
:
HPC Challenge Benchmark for Debian
Please read
/usr/share/doc/hpcc/README.txt.gz
, especially section
'Runtime configuration'.
An
hpccinf.txt
input file is provided as
/usr/share/doc/hpcc/examples/_hpccinf.txt
. Copy it into your current
dir, tune it and launchhpcc
usingmpirun.openmpi
: $mpirun.openmpi
hpcc
-- Lucas Nussbaum Sat, 13 Jun 2009
16:04:17 +0200
So we have two options:
use default
hpccinf.txt
from repository and run benchmark
cp /usr/share/doc/hpcc/examples/_hpccinf.txt hpccinf.txt
mpirun.openmpi -np $(nproc) hpcc
The results will be saved in
hpccoutf.txt
file.
customize
hpccinf.txt
for modern systems with 4-8 cores (solving matrix with 10000x10000 dimmensions):
cat << EOF > hpccinf.txt
HPLinpack benchmark input file
Innovative Computing Laboratory, University of Tennessee
HPL.out output file name (if any)
6 device out (6=stdout,7=stderr,file)
1 # of problems sizes (N)
10000 Ns
1 # of NBs
128 NBs
0 PMAP process mapping (0=Row-,1=Column-major)
1 # of process grids (P x Q)
1 Ps
1 Qs
16.0 threshold
1 # of panel fact
2 PFACTs (0=left, 1=Crout, 2=Right)
1 # of recursive stopping criterium
4 NBMINs (>= 1)
1 # of panels in recursion
2 NDIVs
1 # of recursive panel fact.
1 RFACTs (0=left, 1=Crout, 2=Right)
1 # of broadcast
1 BCASTs (0=1rg,1=1rM,2=2rg,3=2rM,4=Lng,5=LnM)
1 # of lookahead depth
1 DEPTHs (>=0)
0 SWAP (0=bin-exch,1=long,2=mix)
1 swapping threshold
1 L1 in (0=transposed,1=no-transposed) form
1 U in (0=transposed,1=no-transposed) form
0 Equilibration (0=no,1=yes)
8 memory alignment in double (> 0)
EOF
Then run benchmark and interpret the results
mpirun.openmpi -np $(nproc) hpcc && grep Gflops$ -A3 hpccoutf.txt
Examples for 64-bit Ubuntu 16.04.4 LTS:
+------------------------+---------|-----------+----|----|
| CPU | Threads | Gflops | Ps | Qs |
+------------------------+---------+-----------|----+----+
| Intel i7-740QM | 8 | 16.4 | 1 | 1 |
| Intel i7-920 | 8 | 28.1 | 2 | 2 |
| Intel i7-4790 | 8 | 137.1 | 1 | 1 |
| Intel i7-3537U | 4 | 14.3 | 2 | 2 |
| AMD A4-4000 | 2 | 6.6 | 2 | 1 |
| Intel Core 2 Duo E8300 | 2 | 16.2 | 2 | 1 |
| Intel Pentium G3420 | 2 | 26.1 | 2 | 1 |
| Raspberry Pi 3B+ | 4 | 1.9 | 1 | 1 |
+------------------------+---------+-----------|----+----+
Note: if have Intel you can use also their optimized LINPACK benchmark. Its results is +25% higher.
1
You also could use the generator here
– Thomas
Jul 5 '18 at 12:51
add a comment |
According to man hpcc
The High Performance Computing (HPC) Challenge benchmark runs a suite of tests that
measure the performance of CPU, memory and network for HPC clusters. hpcc takes its
parameters from a hpccinf.txt file. An example can be found in
/usr/share/doc/hpcc/examples/_hpccinf.txt
.
So we need to copy /usr/share/doc/hpcc/examples/_hpccinf.txt
to current directory with name hpccinf.txt
, edit it and run it with mpirun.openmpi hpcc
as described in /usr/share/doc/hpcc/README.Debian
:
HPC Challenge Benchmark for Debian
Please read
/usr/share/doc/hpcc/README.txt.gz
, especially section
'Runtime configuration'.
An
hpccinf.txt
input file is provided as
/usr/share/doc/hpcc/examples/_hpccinf.txt
. Copy it into your current
dir, tune it and launchhpcc
usingmpirun.openmpi
: $mpirun.openmpi
hpcc
-- Lucas Nussbaum Sat, 13 Jun 2009
16:04:17 +0200
So we have two options:
use default
hpccinf.txt
from repository and run benchmark
cp /usr/share/doc/hpcc/examples/_hpccinf.txt hpccinf.txt
mpirun.openmpi -np $(nproc) hpcc
The results will be saved in
hpccoutf.txt
file.
customize
hpccinf.txt
for modern systems with 4-8 cores (solving matrix with 10000x10000 dimmensions):
cat << EOF > hpccinf.txt
HPLinpack benchmark input file
Innovative Computing Laboratory, University of Tennessee
HPL.out output file name (if any)
6 device out (6=stdout,7=stderr,file)
1 # of problems sizes (N)
10000 Ns
1 # of NBs
128 NBs
0 PMAP process mapping (0=Row-,1=Column-major)
1 # of process grids (P x Q)
1 Ps
1 Qs
16.0 threshold
1 # of panel fact
2 PFACTs (0=left, 1=Crout, 2=Right)
1 # of recursive stopping criterium
4 NBMINs (>= 1)
1 # of panels in recursion
2 NDIVs
1 # of recursive panel fact.
1 RFACTs (0=left, 1=Crout, 2=Right)
1 # of broadcast
1 BCASTs (0=1rg,1=1rM,2=2rg,3=2rM,4=Lng,5=LnM)
1 # of lookahead depth
1 DEPTHs (>=0)
0 SWAP (0=bin-exch,1=long,2=mix)
1 swapping threshold
1 L1 in (0=transposed,1=no-transposed) form
1 U in (0=transposed,1=no-transposed) form
0 Equilibration (0=no,1=yes)
8 memory alignment in double (> 0)
EOF
Then run benchmark and interpret the results
mpirun.openmpi -np $(nproc) hpcc && grep Gflops$ -A3 hpccoutf.txt
Examples for 64-bit Ubuntu 16.04.4 LTS:
+------------------------+---------|-----------+----|----|
| CPU | Threads | Gflops | Ps | Qs |
+------------------------+---------+-----------|----+----+
| Intel i7-740QM | 8 | 16.4 | 1 | 1 |
| Intel i7-920 | 8 | 28.1 | 2 | 2 |
| Intel i7-4790 | 8 | 137.1 | 1 | 1 |
| Intel i7-3537U | 4 | 14.3 | 2 | 2 |
| AMD A4-4000 | 2 | 6.6 | 2 | 1 |
| Intel Core 2 Duo E8300 | 2 | 16.2 | 2 | 1 |
| Intel Pentium G3420 | 2 | 26.1 | 2 | 1 |
| Raspberry Pi 3B+ | 4 | 1.9 | 1 | 1 |
+------------------------+---------+-----------|----+----+
Note: if have Intel you can use also their optimized LINPACK benchmark. Its results is +25% higher.
According to man hpcc
The High Performance Computing (HPC) Challenge benchmark runs a suite of tests that
measure the performance of CPU, memory and network for HPC clusters. hpcc takes its
parameters from a hpccinf.txt file. An example can be found in
/usr/share/doc/hpcc/examples/_hpccinf.txt
.
So we need to copy /usr/share/doc/hpcc/examples/_hpccinf.txt
to current directory with name hpccinf.txt
, edit it and run it with mpirun.openmpi hpcc
as described in /usr/share/doc/hpcc/README.Debian
:
HPC Challenge Benchmark for Debian
Please read
/usr/share/doc/hpcc/README.txt.gz
, especially section
'Runtime configuration'.
An
hpccinf.txt
input file is provided as
/usr/share/doc/hpcc/examples/_hpccinf.txt
. Copy it into your current
dir, tune it and launchhpcc
usingmpirun.openmpi
: $mpirun.openmpi
hpcc
-- Lucas Nussbaum Sat, 13 Jun 2009
16:04:17 +0200
So we have two options:
use default
hpccinf.txt
from repository and run benchmark
cp /usr/share/doc/hpcc/examples/_hpccinf.txt hpccinf.txt
mpirun.openmpi -np $(nproc) hpcc
The results will be saved in
hpccoutf.txt
file.
customize
hpccinf.txt
for modern systems with 4-8 cores (solving matrix with 10000x10000 dimmensions):
cat << EOF > hpccinf.txt
HPLinpack benchmark input file
Innovative Computing Laboratory, University of Tennessee
HPL.out output file name (if any)
6 device out (6=stdout,7=stderr,file)
1 # of problems sizes (N)
10000 Ns
1 # of NBs
128 NBs
0 PMAP process mapping (0=Row-,1=Column-major)
1 # of process grids (P x Q)
1 Ps
1 Qs
16.0 threshold
1 # of panel fact
2 PFACTs (0=left, 1=Crout, 2=Right)
1 # of recursive stopping criterium
4 NBMINs (>= 1)
1 # of panels in recursion
2 NDIVs
1 # of recursive panel fact.
1 RFACTs (0=left, 1=Crout, 2=Right)
1 # of broadcast
1 BCASTs (0=1rg,1=1rM,2=2rg,3=2rM,4=Lng,5=LnM)
1 # of lookahead depth
1 DEPTHs (>=0)
0 SWAP (0=bin-exch,1=long,2=mix)
1 swapping threshold
1 L1 in (0=transposed,1=no-transposed) form
1 U in (0=transposed,1=no-transposed) form
0 Equilibration (0=no,1=yes)
8 memory alignment in double (> 0)
EOF
Then run benchmark and interpret the results
mpirun.openmpi -np $(nproc) hpcc && grep Gflops$ -A3 hpccoutf.txt
Examples for 64-bit Ubuntu 16.04.4 LTS:
+------------------------+---------|-----------+----|----|
| CPU | Threads | Gflops | Ps | Qs |
+------------------------+---------+-----------|----+----+
| Intel i7-740QM | 8 | 16.4 | 1 | 1 |
| Intel i7-920 | 8 | 28.1 | 2 | 2 |
| Intel i7-4790 | 8 | 137.1 | 1 | 1 |
| Intel i7-3537U | 4 | 14.3 | 2 | 2 |
| AMD A4-4000 | 2 | 6.6 | 2 | 1 |
| Intel Core 2 Duo E8300 | 2 | 16.2 | 2 | 1 |
| Intel Pentium G3420 | 2 | 26.1 | 2 | 1 |
| Raspberry Pi 3B+ | 4 | 1.9 | 1 | 1 |
+------------------------+---------+-----------|----+----+
Note: if have Intel you can use also their optimized LINPACK benchmark. Its results is +25% higher.
edited Dec 29 '18 at 18:57
answered Jul 4 '18 at 16:28
N0rbert
21.3k547100
21.3k547100
1
You also could use the generator here
– Thomas
Jul 5 '18 at 12:51
add a comment |
1
You also could use the generator here
– Thomas
Jul 5 '18 at 12:51
1
1
You also could use the generator here
– Thomas
Jul 5 '18 at 12:51
You also could use the generator here
– Thomas
Jul 5 '18 at 12:51
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1052180%2fwhere-can-i-find-missed-hpccinf-txt-for-hpcc%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown