Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for cde (0.06 sec)

  1. src/path/filepath/path_test.go

    	root, path, want string
    }
    
    var reltests = []RelTests{
    	{"a/b", "a/b", "."},
    	{"a/b/.", "a/b", "."},
    	{"a/b", "a/b/.", "."},
    	{"./a/b", "a/b", "."},
    	{"a/b", "./a/b", "."},
    	{"ab/cd", "ab/cde", "../cde"},
    	{"ab/cd", "ab/c", "../c"},
    	{"a/b", "a/b/c/d", "c/d"},
    	{"a/b", "a/b/../c", "../c"},
    	{"a/b/../c", "a/b", "../b"},
    	{"a/b/c", "a/c/d", "../../c/d"},
    	{"a/b", "c/d", "../../c/d"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions.mlir

    }
    
    
    // -----
    
    module {
      func.func @float_einsum(%arg0: tensor<?x64x32xf32>, %arg1: tensor<32x2x16xf32>) -> (tensor<?x64x2x16xf32>) {
        %0 = "tf.Einsum"(%arg0, %arg1) {equation = "abc,cde->abde"} : (tensor<?x64x32xf32>, tensor<32x2x16xf32>) -> tensor<?x64x2x16xf32>
        func.return %0 : tensor<?x64x2x16xf32>
      }
    
    // CHECK-LABEL: func @float_einsum
    // CHECK: -------- Quantization Summary --------
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            }
    
            ['archive/folder/file', 'root/archives/file', 'root/folder/abc',
             'collections/folder/file', 'root/collections/file', 'archives/collections/file',
             'root/folder/cde'].each {
                assertMatches matcher.negate(), it
            }
        }
    
        private static void assertMatches(PatternMatcher matcher, String path) {
            def file = relativeFile(path)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. src/regexp/testdata/basic.dat

    E	a*			aaa		(0,3)
    E	(a*)*			-		(0,0)(0,0)
    E	(a*)+			-		(0,0)(0,0)
    E	(a*|b)*			-		(0,0)(0,0)
    E	(a+|b)*			ab		(0,2)(1,2)
    E	(a+|b)+			ab		(0,2)(1,2)
    E	(a+|b)?			ab		(0,1)(0,1)
    BE	[^ab]*			cde		(0,3)
    E	(^)*			-		(0,0)(0,0)
    BE	a*			NULL		(0,0)
    E	([abc])*d		abbbcd		(0,6)(4,5)
    E	([abc])*bcd		abcd		(0,4)(0,1)
    E	a|b|c|d|e		e		(0,1)
    E	(a|b|c|d|e)f		ef		(0,2)(0,1)
    E	((a*|b))*		-		(0,0)(0,0)(0,0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  5. src/strings/replace_test.go

    	{NewReplacer("12", "123"), "*strings.singleStringReplacer"},
    	{NewReplacer("1", "12"), "*strings.byteStringReplacer"},
    	{NewReplacer("", "X"), "*strings.genericReplacer"},
    	{NewReplacer("a", "1", "b", "12", "cde", "123"), "*strings.genericReplacer"},
    }
    
    // TestPickAlgorithm tests that NewReplacer picks the correct algorithm.
    func TestPickAlgorithm(t *testing.T) {
    	for i, tc := range algorithmTestCases {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      # Currently, only some specific forms of equantions are supported for
      # batchmatmul conversion.
      @parameterized.parameters(
          testing.parameter_combinations([{
              'equation': ('abc,cd->abd', 'abcd,cde->abe'),
              'shape_unknown': (True, False),
              'activation_fn': (None, nn_ops.relu, nn_ops.relu6),
              'has_bias': (True, False),
              'use_kernel': (True, False),
          }])
      )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. src/archive/tar/reader_test.go

    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{"abcde", 5}, sparseDatas{{0, 2}, {5, 3}}, 8},
    		tests: []testFnc{
    			testRemaining{8, 5},
    			testWriteTo{fileOps{"ab", int64(3), "cde"}, 8, nil},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{"abcde", 5}, sparseDatas{{0, 2}, {5, 3}}, 10},
    		tests: []testFnc{
    			testRemaining{10, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
Back to top