Home
last modified time | relevance | path

Searched +full:build +full:- +full:opts (Results 1 – 25 of 539) sorted by relevance

12345678910>>...22

/external/flac/.github/workflows/
Daction.yml7 - cron: '0 0 1 * *'
10 build:
15 ubuntu-latest-gcc-autotools,
16 ubuntu-latest-clang-autotools,
17 ubuntu-latest-gcc-cmake,
18 ubuntu-latest-clang-cmake,
19 macos-latest-clang-autotools,
20 macos-latest-clang-cmake,
21 windows-latest-cmake,
22 ubuntu-latest-gcc-autotools-64-bit-words,
[all …]
/external/crosvm/tools/windows/
Dbuild_test.py3 # Use of this source code is governed by a BSD-style license that can be
11 To test changes more quickly, set the --noclean option. This prevents the target directories from
14 For easy binary size comparison, use the --size-only option to only do builds that will result in a
15 binary size output, which are non-test release builds.
18 structure with Cargo.toml files. Only top-level crates are tested directly. To skip a top-level
20 tests run single-threaded, add an empty .build_test_serial file to the directory.
41 ARM_TRIPLE = os.getenv("ARM_TRIPLE", "armv7a-cros-linux-gnueabihf")
42 AARCH64_TRIPLE = os.getenv("AARCH64_TRIPLE", "aarch64-cros-linux-gnu")
43 X86_64_TRIPLE = os.getenv("X86_64_TRIPLE", "x86_64-unknown-linux-gnu")
44 X86_64_WIN_MSVC_TRIPLE = os.getenv("X86_64_WIN_MSVC_TRIPLE", "x86_64-pc-windows-msvc")
[all …]
/external/mesa3d/
Dcommon.py80 subprocess.call(['llvm-config', '--version'],
90 def AddOptions(opts): argument
99 opts.Add(EnumOption('build', 'build type', 'debug',
102 opts.Add(BoolOption('verbose', 'verbose output', 'no'))
103 opts.Add(EnumOption('machine', 'use machine-specific assembly code',
106 opts.Add(EnumOption('platform', 'target platform', host_platform,
109 opts.Add(BoolOption('embedded', 'embedded build', 'no'))
110 opts.Add(BoolOption('analyze',
112 opts.Add(BoolOption('asan', 'enable Address Sanitizer', 'no'))
113 opts.Add('toolchain', 'compiler toolchain', default_toolchain)
[all …]
/external/tensorflow/tensorflow/python/profiler/
Dmodel_analyzer_test.py7 # http://www.apache.org/licenses/LICENSE-2.0
58 opts = builder(builder.trainable_variables_parameter()).with_file_output(
59 outfile).build()
63 model_analyzer.profile(sess.graph, options=opts)
68 '_TFProfRoot (--/451 params)\n'
78 opts = (
83 ]).build())
96 pctx.profiler.profile_name_scope(options=opts)
99 # pylint: disable=line-too-long
138 # pylint: enable=line-too-long
[all …]
Dmodel_analyzer.py7 # http://www.apache.org/licenses/LICENSE-2.0
56 """Build tfprof.OptionsProto.
64 opts = tfprof_options_pb2.OptionsProto()
65 opts.max_depth = options.get('max_depth', 10)
66 opts.min_bytes = options.get('min_bytes', 0)
67 opts.min_peak_bytes = options.get('min_peak_bytes', 0)
68 opts.min_residual_bytes = options.get('min_residual_bytes', 0)
69 opts.min_output_bytes = options.get('min_output_bytes', 0)
70 opts.min_micros = options.get('min_micros', 0)
71 opts.min_accelerator_micros = options.get('min_accelerator_micros', 0)
[all …]
/external/libwebm/infra/
Dcompile.sh32 set -e
33 shopt -s inherit_errexit
37 readonly WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webm.XXX)"}
46 BUILD_TYPE supported build type (static, static-debug)
47 TARGET supported target platform compilation: (native, native-clang,
48 clang-i686, i686-w64-mingw32, x86_64-w64-mingw32,
49 native-Makefile.unix)
51 WORKSPACE directory where the build is done
59 if command -v ccache 2> /dev/null; then
68 if [[ ! -d "${WORKSPACE}" ]]; then
[all …]
/external/mesa3d/src/gallium/frontends/clover/api/
Dprogram.cpp35 auto opts = std::string(p_opts ? p_opts : ""); in build_options() local
38 return detokenize(std::vector<std::string>{opts, extra_opts}, " "); in build_options()
121 [](const unsigned char *p, size_t l) -> std::pair<cl_int, module> { in clCreateProgramWithBinary()
170 // No currently supported built-in kernels. in clCreateProgramWithBuiltInKernels()
207 const auto opts = build_options(p_opts, "CLOVER_EXTRA_BUILD_OPTIONS"); in clBuildProgram() local
214 prog.compile(devs, opts); in clBuildProgram()
215 prog.link(devs, opts, { prog }); in clBuildProgram()
217 return prog.build(dev).binary_type() != CL_PROGRAM_BINARY_TYPE_EXECUTABLE; in clBuildProgram()
241 const auto opts = build_options(p_opts, "CLOVER_EXTRA_COMPILE_OPTIONS"); in clCompileProgram() local
265 prog.compile(devs, opts, headers); in clCompileProgram()
[all …]
/external/deqp-deps/amber/kokoro/scripts/linux/
Dbuild-docker.sh9 # http://www.apache.org/licenses/LICENSE-2.0
17 set -e # fail on error
21 set -x # show commands
25 using cmake-3.17.2
26 using ninja-1.10.0
28 if [ ! -z "$COMPILER" ]; then
42 DEPS_ARGS+=" --with-clspv"
45 DEPS_ARGS+=" --with-dxc"
48 DEPS_ARGS+=" --with-swiftshader"
52 ./tools/git-sync-deps $DEPS_ARGS
[all …]
/external/skia/tools/skqp/
Dcreate_apk.py3 # Use of this source code is governed by a BSD-style license that can be
20 run 'python tools/git-sync-deps' in the root of the skia checkout.
28 intermediate build objects will be placed here.
46 m = re.compile('[^A-Za-z0-9_./-]')
67 return subprocess.call(['ninja', '--version'],
106 [android_home + '/tools/bin/sdkmanager', '--licenses'],
112 # pylint: disable=bad-whitespace
113 skia_to_android_arch_name_map = {'arm' : 'armeabi-v7a',
114 'arm64': 'arm64-v8a' ,
118 def create_apk_impl(opts): argument
[all …]
/external/tensorflow/tensorflow/c/eager/
Dc_api_unified_experimental_test.cc7 http://www.apache.org/licenses/LICENSE-2.0
39 // - a string representing the tracing implementation: "mlir" or "graphdef".
40 // - a boolean that when true enables TFRT as the execution engine.
55 TFE_ContextOptions* opts = TFE_NewContextOptions(); in TEST_P() local
56 TFE_ContextOptionsSetTfrt(opts, std::get<1>(GetParam())); in TEST_P()
57 TF_ExecutionContext* ctx = TF_NewEagerExecutionContext(opts, status.get()); in TEST_P()
59 TFE_DeleteContextOptions(opts); in TEST_P()
63 // Build an abstract input tensor. in TEST_P()
71 // Build an abstract operation. in TEST_P()
76 // Build inputs and outputs. in TEST_P()
[all …]
/external/mesa3d/src/gallium/frontends/clover/core/
Dprogram.cpp45 program::compile(const ref_vector<device> &devs, const std::string &opts, in compile() argument
55 compiler::compile_program(_source, headers, dev, opts, log); in compile()
56 _builds[&dev] = { m, opts, log }; in compile()
58 _builds[&dev] = { module(), opts, log }; in compile()
66 program::link(const ref_vector<device> &devs, const std::string &opts, in link() argument
72 return prog.build(dev).binary; in link()
77 const module m = compiler::link_program(ms, dev, opts, log); in link()
78 _builds[&dev] = { m, opts, log }; in link()
80 _builds[&dev] = { module(), opts, log }; in link()
97 program::build::status() const { in status()
[all …]
/external/python/parse_type/tasks/
Drelease.py1 # -*- coding: UTF-8 -*-
10 twine register dist/{project}-{version}.tar.gz
13 twine upload --skip-existing dist/*
16 # -- DEPRECATED: No longer supported -> Use RTD instead
17 # -- DEPRECATED: python setup.py upload_docs
27 .. code-block:: init
29 # -- FILE: $HOME/.pypirc
31 index-servers =
49 * https://packaging.python.org/tutorials/distributing-packages/
58 # -----------------------------------------------------------------------------
[all …]
/external/webp/infra/
Dcompile.sh32 set -xe
34 WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.XXX)"}
43 BUILD_TYPE supported build type: (shared, static, static-debug)
45 aarch64-linux-clang
46 aarch64-linux-gnu
47 arm-linux-gnueabi
48 arm-neon-linux-gnueabi
50 cmake-aarch64
51 cmake-arm
52 cmake-clang
[all …]
/external/nanopb-c/tests/without_64bit/
DSConscript8 opts = env.Clone()
9 opts.Append(CPPDEFINES = {'PB_WITHOUT_64BIT': 1, 'HAVE_STDINT_H': 0, 'PB_SYSTEM_HEADER': '\\"no_64b…
10 opts.Append(CPPPATH = "#without_64bit")
12 if 'SYSHDR' in opts:
13 opts.Append(CPPDEFINES = {'PB_OLD_SYSHDR': opts['SYSHDR']})
15 # Build new version of core
16 strict = opts.Clone()
22 # Now build and run the test normally.
23 enc = opts.Program(["encode_alltypes.c", "alltypes.pb.c", "pb_encode_no64bit.o", "pb_common_no64bit…
24 dec = opts.Program(["decode_alltypes.c", "alltypes.pb.c", "pb_decode_no64bit.o", "pb_common_no64bit…
[all …]
/external/llvm/utils/llvm-build/llvmbuild/
Dmain.py15 cmake_quote_string(value) -> str
28 cmake_quote_path(value) -> str
43 mk_quote_string_for_target(target_name) -> str
54 make_install_dir(path) -> None
103 """validate_components() -> None
105 Validate that the project components are well-defined. Among other
107 - Components have valid references.
108 - Components references do not form cycles.
142 cycle_description = ' -> '.join(
145 fatal("found cycle to %r after following: %s -> %s" % (
[all …]
/external/rust/crates/jni/src/wrapper/java_vm/
Dinit_args.rs22 /// see ["Launching JVM from Rust"](struct.JavaVM.html#launching-jvm-from-rust).*
25 opts: Vec<String>, field
31 fn default() -> Self { in default()
33 opts: vec![], in default()
42 pub fn new() -> Self { in new()
49 pub fn option(self, opt_string: &str) -> Self { in option()
57 s.opts.push(opt_string.into()); in option()
65 pub fn version(self, version: JNIVersion) -> Self { in version()
74 /// begin with "-X" or "_". If ignoreUnrecognized is false, JavaVM::new returns Err as soon as
78 pub fn ignore_unrecognized(self, ignore: bool) -> Self { in ignore_unrecognized()
[all …]
/external/gflags/
DCMakeLists.txt5 ## can be overridden either on the CMake command-line using the -D option of
6 ## the cmake command or in a super-project which includes the gflags source
9 ## the non-cached variable GFLAGS_IS_SUBPROJECT has a value equivalent to FALSE,
13 ## file, i.e., the top-level directory of the gflags project source tree.
16 ## settings are such that only the static single-threaded library is built without
31 ## Example CMakeLists.txt of user project which requires separate single-threaded static gflags ins…
41 ## Example CMakeLists.txt of super-project which contains gflags source tree:
52 ## - GFLAGS_IS_A_DLL
53 ## - GFLAGS_NAMESPACE
54 ## - GFLAGS_ATTRIBUTE_UNUSED
[all …]
/external/webrtc/net/dcsctp/socket/
Dstream_reset_handler_test.cc4 * Use of this source code is governed by a BSD-style license
139 // Handles the passed in RE-CONFIG `chunk` and returns the responses
140 // that are sent in the response RE-CONFIG.
143 handler_->HandleReConfig(std::move(chunk)); in HandleAndCatchResponse()
157 if (p->descriptors().size() != 1) { in HandleAndCatchResponse()
162 ReConfigChunk::Parse(p->descriptors()[0].data); in HandleAndCatchResponse()
167 for (const auto& desc : response_chunk->parameters().descriptors()) { in HandleAndCatchResponse()
182 EXPECT_TRUE(handler_->GetHandoverReadiness().IsReady()); in PerformHandover()
183 EXPECT_TRUE(data_tracker_->GetHandoverReadiness().IsReady()); in PerformHandover()
184 EXPECT_TRUE(reasm_->GetHandoverReadiness().IsReady()); in PerformHandover()
[all …]
/external/nanopb-c/tests/field_size_16_proto3/
DSConscript8 match = re.search('([0-9]+).([0-9]+).([0-9]+)', env['PROTOC_VERSION'])
19 opts = env.Clone()
20 opts.Append(CPPDEFINES = {'PB_FIELD_16BIT': 1})
22 # Build new version of core
23 strict = opts.Clone()
29 # Now build and run the test normally.
30 …enc = opts.Program(["encode_alltypes.c", "alltypes.pb.c", "pb_encode_fields16.o", "pb_common_field…
31 …dec = opts.Program(["decode_alltypes.c", "alltypes.pb.c", "pb_decode_fields16.o", "pb_common_field…
/external/tensorflow/tensorflow/core/profiler/g3doc/
Dpython_api.md3 * [Parameters and Shapes](#parameters-and-shapes)
4 * [Float Operations](#float-operations)
5 * [Time and Memory](#time-and-memory)
7 * [Multi-step Profiling](#multi-step-profiling)
21 opts = ProfileOptionBuilder(
24 ).build()
28 options=opts)
74 opts = ProfileOptionBuilder(ProfileOptionBuilder.time_and_memory()
75 ).with_node_names(show_name_regexes=['.*my_code.py.*']).build()
81 options=opts)
[all …]
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_stats.cc7 http://www.apache.org/licenses/LICENSE-2.0
42 def->set_name(name); in CreateRunMetadataNode()
46 def->set_op(name); in CreateRunMetadataNode()
61 if (run_meta && run_meta->has_step_stats()) { in TFStats()
67 for (const auto& v : ckpt_reader_->GetVariableToShapeMap()) { in TFStats()
70 node->second->AddOpType("_checkpoint_variables"); in TFStats()
112 scope_view_->AddNode(it->second.get()); in BuildView()
114 scope_view_->Build(); in BuildView()
119 graph_view_->AddNode(it->second.get()); in BuildView()
121 graph_view_->Build(); in BuildView()
[all …]
Dtfprof_code.h7 http://www.apache.org/licenses/LICENSE-2.0
16 // Build a tree structure based on the TensorFlow model's python code stacks.
58 // Add nodes to the code view. Called before Build()
61 // Build the code view structure. Called after all nodes
63 void Build() override;
66 const ShowMultiNode* ShowInternal(const Options& opts,
73 const Options& opts, int depth,
77 const Options& opts);
80 const Options& opts, string* display_str,
83 string FormatNode(CodeNode* node, const Options& opts, int64_t indent) const;
/external/robolectric/integration_tests/ctesque/src/sharedTest/java/android/graphics/
DBitmapFactoryTest.java9 import android.os.Build;
85 * -1. This tests fails in Robolectric due to legacy BitmapFactory behavior of always returning a
92 TruthJUnit.assume().that(Build.FINGERPRINT).isNotEqualTo("robolectric"); in decodeStream_options_setsOutWidthToMinusOne()
95 BitmapFactory.Options opts = new Options(); in decodeStream_options_setsOutWidthToMinusOne() local
96 Bitmap result = BitmapFactory.decodeStream(inputStream, null, opts); in decodeStream_options_setsOutWidthToMinusOne()
98 assertThat(opts.outWidth).isEqualTo(-1); in decodeStream_options_setsOutWidthToMinusOne()
99 assertThat(opts.outHeight).isEqualTo(-1); in decodeStream_options_setsOutWidthToMinusOne()
104 BitmapFactory.Options opts = new BitmapFactory.Options(); in decodeFile_scaledDensity_shouldHaveCorrectWidthAndHeight() local
105 opts.inScaled = true; in decodeFile_scaledDensity_shouldHaveCorrectWidthAndHeight()
106 opts.inDensity = 2; in decodeFile_scaledDensity_shouldHaveCorrectWidthAndHeight()
[all …]
/external/skia/bazel/exporter/
Dgni_exporter_test.go3 // Use of this source code is governed by a BSD-style license that can be
16 "go.skia.org/skia/bazel/exporter/build_proto/build"
27 # //src/core/BUILD.bazel
28 # //src/opts/BUILD.bazel
30 # To update this file, run make -C bazel generate_gni
36 # //src/opts:private_hdrs
41 "$_src/opts/SkBitmapProcState_opts.h",
42 "$_src/opts/SkBlitMask_opts.h",
43 "$_src/opts/SkBlitRow_opts.h",
58 "//src/opts:private_hdrs",
[all …]
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBitmapFactory.java15 import android.os.Build;
57 Resources res, TypedValue value, InputStream is, Rect pad, BitmapFactory.Options opts) { in decodeResourceStream() argument
59 reflector(BitmapFactoryReflector.class).decodeResourceStream(res, value, is, pad, opts); in decodeResourceStream()
62 // todo: better support for nine-patches in decodeResourceStream()
82 options.outWidth = -1; in decodeResource()
83 options.outHeight = -1; in decodeResource()
113 options.outWidth = -1; in decodeFile()
114 options.outHeight = -1; in decodeFile()
127 FileDescriptor fd, Rect outPadding, BitmapFactory.Options opts) { in decodeFileDescriptor() argument
139 if (opts != null) { in decodeFileDescriptor()
[all …]

12345678910>>...22