Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for dot$ (0.05 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: %[[DOT:.+]] = stablehlo.dot_general %[[ARG0]], %[[DQ]], batching_dims = [0, 1] x [0, 1], contracting_dims = [3] x [2], precision = [DEFAULT, DEFAULT] : (tensor<1x2x3x4xf32>, tensor<1x2x4x5xf32>) -> tensor<1x2x3x5xf32>
    // CHECK: return %[[DOT]]
    
    // -----
    
    // Tests that a hybrid per-channel quantized convolution for tfl.conv_2d is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // doctor : 2016-06-02 Binky Moon, LLC
    doctor
    
    // dog : 2014-12-04 Binky Moon, LLC
    dog
    
    // domains : 2013-10-17 Binky Moon, LLC
    domains
    
    // dot : 2015-05-21 Dish DBS Corporation
    dot
    
    // download : 2014-11-20 dot Support Limited
    download
    
    // drive : 2015-03-05 Charleston Road Registry Inc.
    drive
    
    // dtv : 2015-06-04 Dish DBS Corporation
    dtv
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&DiacriticalTilde;":                "\u02dc",
    	"&Diamond;":                         "\u22c4",
    	"&DifferentialD;":                   "\u2146",
    	"&Dopf;":                            "\U0001d53b",
    	"&Dot;":                             "\u00a8",
    	"&DotDot;":                          "\u20dc",
    	"&DotEqual;":                        "\u2250",
    	"&DoubleContourIntegral;":           "\u222f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/html/entity.go

    		"DiacriticalTilde;":                '\U000002DC',
    		"Diamond;":                         '\U000022C4',
    		"DifferentialD;":                   '\U00002146',
    		"Dopf;":                            '\U0001D53B',
    		"Dot;":                             '\U000000A8',
    		"DotDot;":                          '\U000020DC',
    		"DotEqual;":                        '\U00002250',
    		"DoubleContourIntegral;":           '\U0000222F',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"getDate": 202,
    				"all":     203,
    				"size":    "204",
    				// identifiers that have _s
    				"_true": 301,
    				// identifiers that have the characters we escape
    				"dot.dot":                            401,
    				"dash-dash":                          402,
    				"slash/slash":                        403,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	strnames []string
    )
    
    func addstrdata1(ctxt *Link, arg string) {
    	eq := strings.Index(arg, "=")
    	dot := strings.LastIndex(arg[:eq+1], ".")
    	if eq < 0 || dot < 0 {
    		Exitf("-X flag requires argument of the form importpath.name=value")
    	}
    	pkg := arg[:dot]
    	if ctxt.BuildMode == BuildModePlugin && pkg == "main" {
    		pkg = *flagPluginPath
    	}
    	pkg = objabi.PathToPrefix(pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      auto reshaped = rewriter.create<mhlo::DynamicReshapeOp>(
          loc, result_type, matmul.getResult(), result_shape);
      return reshaped.getResult();
    }
    
    // Converts mhlo.dot to tf.MatMul. Reshape ops will be inserted when
    // necessary.
    Value ConvertDotOp(PatternRewriter& rewriter, Operation* old_op) {
      auto dot_op = cast<mhlo::DotOp>(old_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/popper.min.js.map

    modifiers\n    : modifiers.slice(0, findIndex(modifiers, 'name', ends));\n\n  modifiersToRun.forEach(modifier => {\n    if (modifier['function']) { // eslint-disable-line dot-notation\n      console.warn('`modifier.function` is deprecated, use `modifier.fn`!');\n    }\n    const fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation\n    if (modifier.enabled && isFunction(fn)) {\n      // Add properties to offsets to make them a complete clientRect object\n      // we do this before...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

            p1 = path1.lastIndexOf('/');
            p2 = path2.lastIndexOf('/');
            l1 = path1.length() - p1;
            l2 = path2.length() - p2;
    
            // anything with dots voids comparison
            if (l1 > 1 && path1.charAt(p1 + 1) == '.')
                return true;
            if (l2 > 1 && path2.charAt(p2 + 1) == '.')
                return true;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
Back to top