Home
last modified time | relevance | path

Searched refs:auto (Results 1 – 25 of 1199) sorted by relevance

12345678910>>...48

/third_party/mindspore/patches/
D0012-add-mindir-ops.patch284 - auto ops_offset = schema::CreateQuantDTypeCast(fbb, src_t, dst_t);
285 + auto ops_offset = schema::CreateQuantDTypeCast(fbb, src_t, dst_t, axis);
286 auto prim_offset =
290 auto value = prim->value_as_QuantDTypeCast();
293 - auto ops_offset = schema::CreateQuantDTypeCast(fbb, src_t, value->dst_t());
294 + auto ops_offset = schema::CreateQuantDTypeCast(fbb, src_t, value->dst_t(), value->axis());
295 auto prim_offset =
299 auto value = prim->value_as_QuantDTypeCast();
302 - auto ops_offset = schema::CreateQuantDTypeCast(fbb, value->src_t(), dst_t);
303 + auto ops_offset = schema::CreateQuantDTypeCast(fbb, value->src_t(), dst_t, value->axis());
[all …]
D0021-add-mindir-ops.patch630 + auto ops_offset = schema::CreateBatchToSpace(fbb, fbb.CreateVector(block_size.data(), block_size…
632 + auto prim_offset =
635 + auto new_addr = MindIRMemoryManager::GetInstance()->CreatePrimitiveFromBuilder(fbb, nullptr);
636 + auto ret_value = flatbuffers::GetMutableRoot<schema::Primitive>(new_addr);
642 + auto prim = static_cast<const schema::Primitive *>(primitive);
643 + auto value = prim->value_as_BatchToSpace();
646 + auto src = value->block_size();
663 + auto prim = static_cast<schema::Primitive *>(*primitive);
664 + auto value = prim->value_as_BatchToSpace();
667 + auto ops_offset = schema::CreateBatchToSpace(fbb, fbb.CreateVector(block_size.data(), block_…
[all …]
D0008-upgrade-flatbuffers-fix_crash.patch415 + auto ops_offset = schema::CreateAbs(fbb);
416 + auto prim_offset = schema::CreatePrimitive(fbb, static_cast<schema::PrimitiveType>(NODE_TYPE_ABS…
418 + auto new_addr = MindIRMemoryManager::GetInstance()->CreatePrimitiveFromBuilder(fbb, nullptr);
419 + auto ret_value = flatbuffers::GetMutableRoot<schema::Primitive>(new_addr);
426 + auto ops_offset = schema::CreateBroadcastTo(fbb, fbb.CreateVector(shape.data(), shape.size()));
427 + auto prim_offset = schema::CreatePrimitive(fbb, static_cast<schema::PrimitiveType>(NODE_TYPE_BRO…
429 + auto new_addr = MindIRMemoryManager::GetInstance()->CreatePrimitiveFromBuilder(fbb, nullptr);
430 + auto ret_value = flatbuffers::GetMutableRoot<schema::Primitive>(new_addr);
436 + auto prim = static_cast<const schema::Primitive *>(primitive);
437 + auto value = prim->value_as_BroadcastTo();
[all …]
D0018-nnrt-litegraph-dequant.patch97 auto src = value->kernel_size();
107 auto src = value->strides();
117 auto src = value->pad();
127 auto src = value->block_shape();
137 auto src = value->crops();
141 for (auto sub_list : *src->data()) {
147 auto src = value->kernel_size();
157 auto src = value->stride();
167 auto src = value->dilation();
177 auto src = value->pad_list();
[all …]
D0009-npu-zero-copy.patch74 for (auto out : outputs_train_) {
94 + auto handle_num = outputs->handle_num;
115auto ret = impl->model_->Predict(ms_tensor_inputs, &ms_tensor_outputs, before_call_back, after_cal…
129 auto impl = static_cast<mindspore::TrainCfg *>(train_cfg);
130 auto loss_name = impl->GetLossName();
161 auto impl = static_cast<mindspore::MSTensor *>(tensor);
170 + auto impl = static_cast<mindspore::MSTensor *>(tensor);
185 + auto impl = static_cast<mindspore::MSTensor *>(tensor);
231 + auto ori_output_tensors = GetOutputs();
241 + auto ori_output = ori_output_tensors[i];
[all …]
D0006-remove-lite-expression-fix-double-loadso.patch185 - kExpressionGraph = 0, ///< graph as expression - can auto grad
562 - auto *param = static_cast<CustomTensorScatterMaxParameter *>(malloc(sizeof(CustomTensorScatterMa…
563 + auto *param = static_cast<ScatterNDParameter *>(malloc(sizeof(ScatterNDParameter)));
696 - auto itr = outmap_.find(expr);
698 - for (auto expr : itr->second) {
699 - auto node = expr->node();
708 - for (auto &in : inputs) {
709 - auto id = GetOutput(in);
712 - for (auto &out : outputs) {
713 - auto id = GetOutput(out);
[all …]
D0007-deobfuscator.patch256 auto name__ = name ? _fbb.CreateString(name) : 0;
257 auto version__ = version ? _fbb.CreateString(version) : 0;
258 auto inputIndex__ = inputIndex ? _fbb.CreateVector<uint32_t>(*inputIndex) : 0;
260auto allTensors__ = allTensors ? _fbb.CreateVector<flatbuffers::Offset<mindspore::schema::Tensor>>…
261auto subGraph__ = subGraph ? _fbb.CreateVector<flatbuffers::Offset<mindspore::schema::SubGraph>>(*…
262 auto obfMetaData__ = obfMetaData ? _fbb.CreateVector<uint8_t>(*obfMetaData) : 0;
263 + auto decryptTable__ = decryptTable ? _fbb.CreateVector<uint8_t>(*decryptTable) : 0;
279 …{ auto _e = allTensors(); if (_e) { _o->allTensors.resize(_e->size()); for (flatbuffers::uoffset_t…
280 …{ auto _e = subGraph(); if (_e) { _o->subGraph.resize(_e->size()); for (flatbuffers::uoffset_t _i …
281 { auto _e = obfuscate(); _o->obfuscate = _e; }
[all …]
D0004-cross-compile-ndkso-fp16-nnrt-train_capi.patch2077 + auto prim = static_cast<const schema::Primitive *>(primitive);
2078 + auto value = prim->value_as_Conv2DFusion();
2093 + auto prim = static_cast<schema::Primitive *>(*primitive);
2094 + auto value = prim->value_as_Conv2DFusion();
2097 + auto ops_offset = schema::CreateConv2DFusion(
2105 + auto prim_offset =
2108 + auto new_addr = MindIRMemoryManager::GetInstance()->CreatePrimitiveFromBuilder(fbb, prim);
2109 + auto ret_value = flatbuffers::GetMutableRoot<schema::Primitive>(new_addr);
2125 auto ops_offset =
2130 auto new_addr = MindIRMemoryManager::GetInstance()->CreateTensorFromBuilder(fbb, value);
[all …]
/third_party/ltp/testscripts/
Dautofs1.sh124 echo "/AUTOFS/MEDIA /etc/auto.media" > /etc/auto.master
125 echo "floppy -fstype=ext2 :$floppy_dev" > /etc/auto.media
140 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
150 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
163 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
174 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
183 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
206 cp /etc/auto.master /etc/auto.media /AUTOFS/MEDIA/floppy/test
220 echo "/AUTOFS/DISK /etc/auto.disk" >> /etc/auto.master
221 echo "disk -fstype=auto,rw,sync :$disk_partition " > /etc/auto.disk
[all …]
Dautofs4.sh116 echo "/AUTOFS/MEDIA /etc/auto.media " > /etc/auto.master
117 echo "floppy -fstype=ext2 :$floppy_dev" > /etc/auto.media
132 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
142 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
154 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
165 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
174 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
195 cp /etc/auto.master /etc/auto.media /AUTOFS/MEDIA/floppy/test
209 echo "/AUTOFS/DISK /etc/auto.disk " >> /etc/auto.master
210 echo "disk -fstype=ext2 :$disk_partition " > /etc/auto.disk
[all …]
/third_party/libdrm/
Dmeson_options.txt24 value : 'auto',
25 choices : ['true', 'false', 'auto'],
31 value : 'auto',
32 choices : ['true', 'false', 'auto'],
38 value : 'auto',
39 choices : ['true', 'false', 'auto'],
45 value : 'auto',
46 choices : ['true', 'false', 'auto'],
53 choices : ['true', 'false', 'auto'],
60 choices : ['true', 'false', 'auto'],
[all …]
/third_party/mesa3d/
Dmeson_options.txt24 value : ['auto'],
26 'auto', 'x11', 'wayland', 'haiku', 'android', 'windows', 'ohos',
28 …description : 'window systems to support. If this is set to `auto`, all platforms applicable will …
33 value : 'auto',
35 'auto', 'x11', 'wayland', 'haiku', 'android', 'windows',
50 value : 'auto',
51 choices : ['auto', 'true', 'false', 'disabled', 'enabled'],
57 …description : 'DEPRECATED: List of dri drivers to build. If this is set to auto all drivers applic…
74 value : ['auto'],
76 'auto', 'kmsro', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno',
[all …]
/third_party/nghttp2/m4/
Dax_cxx_compile_stdcxx.m4244 auto
256 auto ac = c;
257 auto av = v;
258 auto sumi = ac + av + 'x';
259 auto sumf = ac + av + 1.0;
350 auto lambda1 = [](){};
351 auto lambda2 = lambda1;
359 auto a = [](int i, int j){ return i + j; }(1, 2);
360 auto b = []() -> int { return '0'; }();
361 auto c = [=](){ return a + b; }();
[all …]
/third_party/pulseaudio/
Dmeson_options.txt82 type : 'feature', value : 'auto',
85 type : 'feature', value : 'auto',
88 type : 'feature', value : 'auto',
91 type : 'feature', value : 'auto',
94 type : 'feature', value: 'auto',
103 type : 'feature', value : 'auto',
106 type : 'feature', value : 'auto',
109 type : 'feature', value : 'auto',
112 type : 'feature', value : 'auto',
115 type : 'feature', value : 'auto',
[all …]
/third_party/skia/third_party/externals/harfbuzz/m4/
Dax_cxx_compile_stdcxx.m4254 auto
266 auto ac = c;
267 auto av = v;
268 auto sumi = ac + av + 'x';
269 auto sumf = ac + av + 1.0;
360 auto lambda1 = [](){};
361 auto lambda2 = lambda1;
369 auto a = [](int i, int j){ return i + j; }(1, 2);
370 auto b = []() -> int { return '0'; }();
371 auto c = [=](){ return a + b; }();
[all …]
/third_party/cups-filters/m4/
Dax_cxx_compile_stdcxx.m4254 auto
266 auto ac = c;
267 auto av = v;
268 auto sumi = ac + av + 'x';
269 auto sumf = ac + av + 1.0;
360 auto lambda1 = [](){};
361 auto lambda2 = lambda1;
369 auto a = [](int i, int j){ return i + j; }(1, 2);
370 auto b = []() -> int { return '0'; }();
371 auto c = [=](){ return a + b; }();
[all …]
/third_party/elfutils/m4/
Dax_cxx_compile_stdcxx.m4234 auto
246 auto ac = c;
247 auto av = v;
248 auto sumi = ac + av + 'x';
249 auto sumf = ac + av + 1.0;
340 auto lambda1 = [](){};
341 auto lambda2 = lambda1;
349 auto a = [](int i, int j){ return i + j; }(1, 2);
350 auto b = []() -> int { return '0'; }();
351 auto c = [=](){ return a + b; }();
[all …]
/third_party/node/deps/cares/m4/
Dax_cxx_compile_stdcxx.m4284 auto
296 auto ac = c;
297 auto av = v;
298 auto sumi = ac + av + 'x';
299 auto sumf = ac + av + 1.0;
390 auto lambda1 = [](){};
391 auto lambda2 = lambda1;
399 auto a = [](int i, int j){ return i + j; }(1, 2);
400 auto b = []() -> int { return '0'; }();
401 auto c = [=](){ return a + b; }();
[all …]
/third_party/curl/docs/cmdline-opts/
Dproxy-ssl-auto-client-cert.md4 Long: proxy-ssl-auto-client-cert
5 Help: Use auto client certificate for proxy (Schannel)
10 - ssl-auto-client-cert
13 - --proxy-ssl-auto-client-cert -x https://proxy $URL
16 # `--proxy-ssl-auto-client-cert`
18 Same as --ssl-auto-client-cert but used in HTTPS proxy context.
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/shaders/
Dmtl_default_shaders_src_autogen.inc2885auto color = readR5G6B5_UNORM(bufferOffset, buffer); textureWrite(gIndices, options, color, dstTex…
2899auto color = readR8_SINT(bufferOffset, buffer); textureWrite(gIndices, options, color, dstTexture2…
2913auto color = readR8_UINT(bufferOffset, buffer); textureWrite(gIndices, options, color, dstTexture2…
2928auto color = textureRead(gIndices, options, srcTexture2d, srcTexture2dArray, srcTexture3d, srcText…
2942auto color = textureRead(gIndices, options, srcTexture2d, srcTexture2dArray, srcTexture3d, srcText…
2956auto color = textureRead(gIndices, options, srcTexture2d, srcTexture2dArray, srcTexture3d, srcText…
3020auto data = readR8_UNORM(bufferOffset, srcBuffer); writeFloatVertex(options, index, data, dstBuffe…
3229auto tmpIndex = readIdx(indexBufferUint16, indexBufferUint32, restartIndex, indexCount, onIndex, f…
3241auto tmpIndex0 = readIdx(indexBufferUint16, indexBufferUint32, restartIndex, indexCount, onIndex +…
3242auto tmpIndex1 = readIdx(indexBufferUint16, indexBufferUint32, restartIndex, indexCount, onIndex +…
[all …]
Drewrite_indices.metal90 auto tmpIndex = READ_IDX(onIndex);
102 auto tmpIndex0 = READ_IDX(onIndex + 0);
103 auto tmpIndex1 = READ_IDX(onIndex + 1);
125 auto tmpIndex0 = READ_IDX(onIndex + 0);
126 auto tmpIndex1 = READ_IDX(onIndex + 1);
147 auto tmpIndex0 = READ_IDX(onIndex + 0);
148 auto tmpIndex1 = READ_IDX(onIndex + 1);
149 auto tmpIndex2 = READ_IDX(onIndex + 2);
174 auto tmpIndex0 = READ_IDX(onIndex + 0 + isOdd);
175 auto tmpIndex1 = READ_IDX(onIndex + 1 - isOdd);
[all …]
/third_party/skia/third_party/externals/freetype/
Dmeson_options.txt17 value: 'auto',
22 value: 'auto',
27 value: 'auto',
28 description: 'Use Harfbuzz library to improve auto-hinting;'
34 value: 'auto',
39 value: 'auto',
50 value: 'auto',
/third_party/skia/third_party/externals/harfbuzz/
Dmeson_options.txt2 option('glib', type: 'feature', value: 'auto',
4 option('gobject', type: 'feature', value: 'auto',
6 option('cairo', type: 'feature', value: 'auto',
8 option('chafa', type: 'feature', value: 'auto',
10 option('icu', type: 'feature', value: 'auto',
16 option('freetype', type: 'feature', value: 'auto',
28 option('introspection', type: 'feature', value: 'auto', yield: true,
30 option('docs', type: 'feature', value: 'auto', yield: true,
/third_party/mesa3d/.gitlab-ci/lava/utils/
Dlog_section.py4 from enum import Enum, auto
11 UNKNOWN = auto()
12 LAVA_BOOT = auto()
13 TEST_SUITE = auto()
14 TEST_CASE = auto()
15 LAVA_POST_PROCESSING = auto()
/third_party/json/docs/mkdocs/docs/features/
Djson_pointer.md51 auto p = "/nested/one"_json_pointer;
64 auto j = json::parse(R"({
74 auto val = j["/"_json_pointer]; // {"array":["A","B","C"],...}
75 auto val1 = j["/nested/one"_json_pointer]; // 1
76 auto val2 = j.at[json::json_pointer("/nested/three/1")]; // false
77 auto val3 = j.value[json::json_pointer("/nested/four", 0)]; // 0
88 auto j = json::parse(R"({
98 auto j_flat = j.flatten();
118 auto j_original = j_flat.unflatten();

12345678910>>...48