| /external/webrtc/audio/utility/ |
| D | channel_mixing_matrix_unittest.cc | 25 // Also ensure that the channel matrix fulfill certain conditions when remapping 57 bool remapping = matrix_builder.CreateTransformationMatrix(&matrix); in TEST() local 59 if (remapping) { in TEST() 60 // Also ensure that (when remapping can take place), a maximum of one in TEST() 93 bool remapping = matrix_builder.CreateTransformationMatrix(&matrix); in TEST() local 99 EXPECT_FALSE(remapping); in TEST() 113 bool remapping = matrix_builder.CreateTransformationMatrix(&matrix); in TEST() local 120 EXPECT_TRUE(remapping); in TEST() 137 bool remapping = matrix_builder.CreateTransformationMatrix(&matrix); in TEST() local 145 EXPECT_FALSE(remapping); in TEST() [all …]
|
| /external/tensorflow/tensorflow/python/training/ |
| D | checkpoint_ops.py | 52 row remapping or only col remapping. If only row remapping is desired, 54 remapping. 78 considered for remapping.Must be smaller than the length of 83 remapping on the row axis. 85 to the new row vocabulary file. Can be None, which represents no remapping 91 remapping on the column axis. 94 remapping on the column axis - in which case, `new_col_vocab_size` works 141 "Must provide either row or column vocab files. If no remapping is " 156 # remapping to account for initializing partitioned Variables (when 215 r"""Returns a var initializer for loading and remapping a 2-D (matrix) tensor. [all …]
|
| /external/tensorflow/tensorflow/core/api_def/base_api/ |
| D | api_def_GenerateVocabRemapping.pbtxt | 16 name: "remapping" 48 summary: "Given a path to new and old vocabulary files, returns a remapping Tensor of" 50 length `num_new_vocab`, where `remapping[i]` contains the row number in the old 64 `num_new_vocab = 3, new_vocab_offset = 1`, the returned remapping would be 69 values to initialize in a weight matrix remapping 74 corresponding to div-partitioned variables. Moreover, the underlying remapping
|
| D | api_def_LoadAndRemapMatrix.pbtxt | 20 `generate_vocab_remapping`). Even if no row remapping is needed, this must 29 `generate_vocab_remapping`). May be a size-0 `Tensor` if only row remapping 94 The remapping tensors can be generated using the GenerateVocabRemapping op.
|
| /external/deqp-deps/glslang/ |
| D | README-spirv-remap.txt | 10 load/store optimization. It transforms SPIR-V to SPIR-V, remapping IDs. The 16 Remapping is accomplished via canonicalization. Thus, modules can be 26 remapping defects, it has only been exercised on one real world game shader 46 1. Basic ID remapping 48 Perform ID remapping on all shaders in "*.spv", writing new files with 95 The "opts" parameter to remap() accepts a bit mask of desired remapping 96 options. See REMAPPING AND OPTIMIZATION OPTIONS. 119 REMAPPING AND OPTIMIZATION OPTIONS
|
| /external/angle/third_party/glslang/src/ |
| D | README-spirv-remap.txt | 10 load/store optimization. It transforms SPIR-V to SPIR-V, remapping IDs. The 16 Remapping is accomplished via canonicalization. Thus, modules can be 26 remapping defects, it has only been exercised on one real world game shader 45 1. Basic ID remapping 47 Perform ID remapping on all shaders in "*.spv", writing new files with 94 The "opts" parameter to remap() accepts a bit mask of desired remapping 95 options. See REMAPPING AND OPTIMIZATION OPTIONS. 118 REMAPPING AND OPTIMIZATION OPTIONS
|
| /external/tensorflow/tensorflow/python/kernel_tests/io_ops/ |
| D | checkpoint_ops_test.py | 15 """Functional tests for the ops to generate and execute vocab remapping.""" 52 remapping, num_present = gen_checkpoint_ops.generate_vocab_remapping( 60 self.assertAllEqual(expected_remapping, self.evaluate(remapping)) 65 remapping, num_present = gen_checkpoint_ops.generate_vocab_remapping( 73 self.assertAllEqual(expected_remapping, self.evaluate(remapping)) 78 remapping, num_present = gen_checkpoint_ops.generate_vocab_remapping( 86 self.assertAllEqual(expected_remapping, self.evaluate(remapping)) 91 remapping, num_present = gen_checkpoint_ops.generate_vocab_remapping( 101 self.assertAllEqual(expected_remapping, self.evaluate(remapping)) 132 # No column remapping, new weight matrix has second row, then first row. [all …]
|
| /external/tensorflow/tensorflow/core/kernels/ |
| D | generate_vocab_remapping_op.cc | 35 // This Op generates a vocab remapping Tensor from an old and new vocabulary 140 Tensor* remapping; in Compute() local 143 "remapping", TensorShape({num_new_vocab_}), &remapping)); in Compute() 149 OP_REQUIRES_OK(context, old_vocab_table->Find(context, tokens, remapping, in Compute() 152 // Iterate through remapping to calculate num_present. in Compute() 153 const auto remapping_vec = remapping->vec<int64_t>(); in Compute()
|
| D | load_and_remap_matrix_op.cc | 38 const TTypes<const int64_t>::Vec& remapping, std::vector<bool>* id_present, in RemapVectorToMap() argument 41 id_present->resize(remapping.size(), false); in RemapVectorToMap() 42 for (int i = 0; i < remapping.size(); ++i) { in RemapVectorToMap() 43 const int64_t old_id = remapping(i); in RemapVectorToMap() 71 // Checks what we're remapping and inverts the relevant remapping Tensors to in Compute() 105 // Processes the remapping for columns. in Compute() 165 // loading (even when no column remapping is specified) if there turns out in Compute() 241 // Copies over the row element-by-element, in case remapping is needed in Compute() 251 // Column remapping is specified, but this column is not found in in Compute()
|
| /external/webp/src/utils/ |
| D | palette.c | 301 uint8_t remapping[MAX_PALETTE_SIZE]; in PaletteSortModifiedZeng() local 320 CoOccurrenceFindMax(cooccurrence, num_colors, &remapping[0], &remapping[1]); in PaletteSortModifiedZeng() 322 // We need to append and prepend to the list of remapping. To this end, we in PaletteSortModifiedZeng() 334 if (i == remapping[0] || i == remapping[1]) continue; in PaletteSortModifiedZeng() 336 sums[j].sum = cooccurrence[i * num_colors + remapping[0]] + in PaletteSortModifiedZeng() 337 cooccurrence[i * num_colors + remapping[1]]; in PaletteSortModifiedZeng() 348 const uint16_t l_j = remapping[(ind + j) % num_colors]; in PaletteSortModifiedZeng() 354 remapping[first] = best_index; in PaletteSortModifiedZeng() 357 remapping[last] = best_index; in PaletteSortModifiedZeng() 375 palette[i] = palette_in[remapping[(first + i) % num_colors]]; in PaletteSortModifiedZeng()
|
| /external/python/apitools/apitools/base/py/ |
| D | encoding_helper.py | 632 """Return the appropriate remapping for the given enum, or None.""" 639 """Return the appropriate remapping for the given field, or None.""" 647 """Common code for fetching a key or value from a remapping dict.""" 651 'for %s remapping' % mapping_type) 654 'Must specify either python_name or json_name for %s remapping' % ( 674 remapping = getter(message_type, python_name=python_name) 675 if remapping is not None and remapping != json_name: 678 mapping_type, python_name, remapping)) 679 remapping = getter(message_type, json_name=json_name) 680 if remapping is not None and remapping != python_name: [all …]
|
| /external/clang/include/clang/Serialization/ |
| D | Module.h | 239 /// \brief Remapping table for source locations in this module. 257 /// \brief Remapping table for identifier IDs in this module. 293 /// \brief Remapping table for macro IDs in this module. 312 /// \brief Remapping table for preprocessed entity IDs in this module. 341 /// \brief Remapping table for submodule IDs in this module. 358 /// \brief Remapping table for selector IDs in this module. 390 /// \brief Remapping table for declaration IDs in this module. 430 /// \brief Remapping table for type IDs in this module.
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| D | SymbolRemappingReader.cpp | 1 //===- SymbolRemappingReader.cpp - Read symbol remapping file -------------===// 10 // remapping files. 67 "remapping earlier in the file."); in read()
|
| /external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/ |
| D | GenerateVocabRemapping.pbtxt | 12 name: "remapping" 41 name: "remapping"
|
| /external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/ |
| D | GenerateVocabRemapping.pbtxt | 12 name: "remapping" 41 name: "remapping"
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
| D | SymbolRemappingReader.cpp | 1 //===- SymbolRemappingReader.cpp - Read symbol remapping file -------------===// 10 // remapping files. 68 "remapping earlier in the file."); in read()
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ |
| D | SymbolRemappingReader.h | 1 //===- SymbolRemappingReader.h - Read symbol remapping file -----*- C++ -*-===// 10 // remapping files. 94 /// Reader for symbol remapping files.
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| D | SymbolRemappingReader.h | 1 //===- SymbolRemappingReader.h - Read symbol remapping file -----*- C++ -*-===// 10 // remapping files. 93 /// Reader for symbol remapping files.
|
| /external/cronet/net/first_party_sets/ |
| D | first_party_set_entry_override.h | 23 // global First-Party Sets list. A modifications may be a deletion, remapping, 29 // Creates a new modification representing a remapping/additional mapping.
|
| /external/mesa3d/src/amd/vpelib/src/core/ |
| D | geometric_scaling.c | 31 * 1. gamma remapping, the input tf will be used for output tf. 32 * 2. gamut remapping, the input primiaries/range will be used for output.
|
| /external/tensorflow/tensorflow/core/util/ |
| D | strided_slice_op.h | 94 // - allows for remapping dimensions, required in order to associate the input 106 // This is to support remapping slice -> processing dimensions. To relate 126 // Returns false if the remapping fails.
|
| /external/llvm/docs/ |
| D | MCJITDesignAndImplementation.rst | 124 Address Remapping 140 When the client is finished remapping section addresses, it will call 141 MCJIT::finalizeObject to complete the remapping process.
|
| /external/mesa3d/docs/drivers/ |
| D | asahi.rst | 28 traveling from a vertex shader to remapping hardware to coefficient register 104 Remapping section in Hardware varyings 108 The output of remapping consists of the following items: the *W* fragment 110 output order. *Z* may be omitted, but *W* may not be. This remapping is
|
| /external/guava/guava/src/com/google/common/collect/ |
| D | RangeMap.java | 119 * Merges a value into a part of the map by applying a remapping function. 122 * values by applying the remapping function. The remapping function accepts the map's existing
|
| /external/mesa3d/src/gallium/drivers/r300/compiler/ |
| D | radeon_remove_constants.c | 99 /* Pass 3: Make the remapping table and remap constants. in rc_remove_unused_constants() 135 * Count even though the remapping function is identity. In that case, in rc_remove_unused_constants()
|