suppress ocloc output

Change-Id: Ifab9b9c07e278062547581556da9b41ae3da9960
This commit is contained in:
chmielew
2019-07-04 15:10:36 +02:00
committed by sys_ocldev
parent fac8c94c1e
commit 7acfe9c935
2 changed files with 4 additions and 4 deletions

View File

@@ -243,7 +243,7 @@ void BinaryDecoder::parseTokens() {
}
void BinaryDecoder::printHelp() {
printf(R"===(Disassembles Intel OpenCL GPU device binary files.
messagePrinter.printf(R"===(Disassembles Intel OpenCL GPU device binary files.
Output of such operation is a set of files that can be later used to
reassemble back a valid Intel OpenCL GPU device binary (using ocloc 'asm'
command). This set of files contains:
@@ -289,7 +289,7 @@ Examples:
Disassemble Intel OpenCL GPU device binary
ocloc disasm -file source_file_Gen9core.bin
)===",
NEO::getDevicesTypes().c_str());
NEO::getDevicesTypes().c_str());
}
int BinaryDecoder::processBinary(void *&ptr, std::ostream &ptmFile) {

View File

@@ -139,7 +139,7 @@ int BinaryEncoder::createElf() {
}
void BinaryEncoder::printHelp() {
printf(R"===(Assembles Intel OpenCL GPU device binary from input files.
messagePrinter.printf(R"===(Assembles Intel OpenCL GPU device binary from input files.
It's expected that input files were previously generated by 'ocloc disasm'
command or are compatible with 'ocloc disasm' output (especially in terms of
file naming scheme). See 'ocloc disasm --help' for additional info.
@@ -165,7 +165,7 @@ Examples:
Assemble to Intel OpenCL GPU device binary
ocloc asm -out reassembled.bin
)===",
NEO::getDevicesTypes().c_str());
NEO::getDevicesTypes().c_str());
}
int BinaryEncoder::encode() {