text
stringlengths 0
2.2M
|
---|
|| parse_attr_oscale(s.oscale, argv[0])
|
|| parse_attr_zero_points(s.zero_points, argv[0])
|
|| parse_attr_post_ops(s.post_ops, argv[0])
|
|| parse_attr_scratchpad_mode(
|
s.scratchpad_mode, def.scratchpad_mode, argv[0])
|
|| parse_perf_template(s.perf_template, s.perf_template_def,
|
s.perf_template_csv, argv[0])
|
|| parse_reset(s, argv[0]) || parse_help(argv[0]);
|
if (!parsed_options) {
|
catch_unknown_options(argv[0]);
|
parse_prb_dims(s.prb_dims, argv[0]);
|
check_correctness(s);
|
}
|
}
|
return parse_last_argument();
|
}
|
} // namespace reorder
|
#ifndef BSL_OVERRIDES_STD
|
#define BSL_OVERRIDES_STD
|
#endif
|
#include <csetjmp>
|
#ifndef std
|
# error std was expected to be a macro
|
#endif
|
int main() { return 0; }
|
// ----------------------------------------------------------------------------
|
// Copyright 2013 Bloomberg Finance L.P.
|
//
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
// you may not use this file except in compliance with the License.
|
// You may obtain a copy of the License at
|
//
|
// http://www.apache.org/licenses/LICENSE-2.0
|
//
|
// Unless required by applicable law or agreed to in writing, software
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
// See the License for the specific language governing permissions and
|
// limitations under the License.
|
// ----------------------------- END-OF-FILE ----------------------------------
|
// bdlat_attributeinfo.t.cpp -*-C++-*-
|
// ----------------------------------------------------------------------------
|
// NOTICE
|
//
|
// This component is not up to date with current BDE coding standards, and
|
// should not be used as an example for new development.
|
// ----------------------------------------------------------------------------
|
#include <bdlat_attributeinfo.h>
|
#include <bslim_testutil.h>
|
#include <bsl_cstdlib.h>
|
#include <bsl_cstring.h>
|
#include <bsl_iostream.h>
|
using namespace BloombergLP;
|
using namespace bsl; // automatically added by script
|
//=============================================================================
|
// TEST PLAN
|
//-----------------------------------------------------------------------------
|
// Overview
|
// --------
|
// TBD doc
|
//-----------------------------------------------------------------------------
|
// [ 2]
|
//-----------------------------------------------------------------------------
|
// [ 1] BREATHING TEST
|
// [ 3] USAGE EXAMPLE
|
// ============================================================================
|
// STANDARD BDE ASSERT TEST FUNCTION
|
// ----------------------------------------------------------------------------
|
namespace {
|
int testStatus = 0;
|
void aSsErT(bool condition, const char *message, int line)
|
{
|
if (condition) {
|
cout << "Error " __FILE__ "(" << line << "): " << message
|
<< " (failed)" << endl;
|
if (0 <= testStatus && testStatus <= 100) {
|
++testStatus;
|
}
|
}
|
Subsets and Splits