Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Concatenates (0.23 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    	})
    }
    
    const (
    	maxAuditAnnotations = 20
    	// use a 5kb limit the CEL expression, note that this is less than the length limit
    	// for the audit annotation value limit (10kb) since an expressions that concatenates
    	// strings will often produce a longer value than the expression
    	maxAuditAnnotationValueExpressionLength = 5 * 1024
    )
    
    // ValidateValidatingAdmissionPolicy validates a ValidatingAdmissionPolicy before creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // to produce the same result. It first slices the first `$index` rows. Then
      // expands the dimension of the `$item`, followed by another slice of the
      // remaining rows starting from `$index` + 1. Lastly it concatenates the
      // three parts together.
      // On a high level, it's doing something like:
      // def : Pat<(TF_TensorListSetItemOp $input, $index, $item),
      //      (Concat
      //        concat_dim = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

          %1 = stablehlo.get_dimension_size %0, dim = 0 : (tensor<?x3xf32>) -> tensor<i32>
          %2 = stablehlo.reshape %1 : (tensor<i32>) -> tensor<1xi32>
          %3 = stablehlo.concatenate %2, %cst_0, dim = 0 : (tensor<1xi32>, tensor<1xi32>) -> tensor<2xi32>
          %4 = stablehlo.dynamic_broadcast_in_dim %arg2, %3, dims = [1] : (tensor<3xf32>, tensor<2xi32>) -> tensor<?x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

          self.assertNotRegex(module_str, r'stablehlo.maximum.*\n.*return')
    
      @parameterized.parameters(
          testing.parameter_combinations([{
              'same_scale_op': (
                  'concatenate',
                  'gather',
                  'max_pool',
                  'pad',
                  'reshape',
                  'select',
                  'slice',
                  'transpose',
              ),
          }])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                          ArrayRef<int32_t> indices) {
      return llvm::any_of(
          indices, [&](int i) { return !subgraph.tensors.at(i)->name.empty(); });
    }
    
    // Given a list of tensor indices, returns a string of concatenated tensor names
    // wrapped in a NamedAttribute.
    mlir::NamedAttribute BuildTFEntryFunctionAttribute(
        const tflite::SubGraphT& subgraph, Builder* builder,
        const std::string& name, ArrayRef<int32_t> indices) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    			}
    		}
    		comment = ""
    	}
    
    	return ops
    }
    
    func (t test) asmCheck(outStr string, fn string, env buildEnv, fullops map[string][]wantedAsmOpcode) error {
    	// The assembly output contains the concatenated dump of multiple functions.
    	// the first line of each function begins at column 0, while the rest is
    	// indented by a tabulation. These data structures help us index the
    	// output by function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/net/dnsclient_unix_test.go

    	if err != nil {
    		t.Fatal("exchange failed:", err)
    	}
    }
    
    // Issue 27763: verify that two strings in one TXT record are concatenated.
    func TestTXTRecordTwoStrings(t *testing.T) {
    	fake := fakeDNSServer{
    		rh: func(n, _ string, q dnsmessage.Message, _ time.Time) (dnsmessage.Message, error) {
    			r := dnsmessage.Message{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	if other.isEmpty() {
    		return
    	}
    
    	// Reparent everything in other to list.
    	for s := other.first; s != nil; s = s.next {
    		s.list = list
    	}
    
    	// Concatenate the lists.
    	if list.isEmpty() {
    		*list = *other
    	} else {
    		// Neither list is empty. Put other before list.
    		other.last.next = list.first
    		list.first.prev = other.last
    		list.first = other.first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // for 's'. Carrier symbols are used in the linker to as a container
    // for a collection of sub-symbols where the content of the
    // sub-symbols is effectively concatenated to form the content of the
    // carrier. The carrier is given a name in the output symbol table
    // while the sub-symbol names are not. For example, the Go compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top