Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for dotV (0.07 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. 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)
  4. 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)
  5. 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)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    			ClientConfig: validClientConfig,
    			SideEffects:  &noSideEffect,
    		},
    		}, true),
    		expectedError: `webhooks[1].name: Invalid value: "k8s.io": should be a domain with at least three segments separated by dots, webhooks[2].name: Required value`,
    	}, {
    		name: "Webhooks must have unique names when created",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. 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 (0)
  8. 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)
  9. pkg/apis/apps/validation/validation_test.go

    		name: "zero-length name",
    		set:  mkStatefulSet(&validPodTemplate, tweakName("")),
    		errs: field.ErrorList{
    			field.Required(field.NewPath("metadata", "name"), ""),
    		},
    	}, {
    		name: "name-with-dots",
    		set:  mkStatefulSet(&validPodTemplate, tweakName("abc.123")),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("metadata", "name"), "abc.123", ""),
    		},
    	}, {
    		name: "long name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

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