Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for deim (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

          merge_fusion_with_dequantize: bool,
      ):
        lhs_dim_size, rhs_dim_size = dim_sizes
        input_shape = (*lhs_dim_size,)
        filter_shape = (*rhs_dim_size,)
        static_input_shape = [dim if dim is not None else 2 for dim in input_shape]
        model = self._create_matmul_model(
            input_shape,
            filter_shape,
            self._input_saved_model_path,
            bias_fn,
            activation_fn,
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. 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>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    foreach actFnPair = [[TFL_ReluOp, TFL_AF_Relu],
                         [TFL_Relu6Op, TFL_AF_Relu6],
                         [TFL_Relu1Op, TFL_AF_Relu1]] in {
      defm : FuseActFnIntoConvOpPat<!cast<Op>(actFnPair[0]), !cast<ConstantStrAttr>(actFnPair[1])>;
      defm : FuseActFnIntoPoolOpPat<!cast<Op>(actFnPair[0]), !cast<ConstantStrAttr>(actFnPair[1])>;
    }
    
    class CanFuseConvOrDepthwiseConv<string is_depthwise> : Constraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      %0 = "tf.Squeeze"(%arg0) {T = f32, _output_shapes = ["tfshape$dim { size: 4 } dim { size: 64 } dim { size: 64 }"], device = "", squeeze_dims = []} : (tensor<4x64x64x1xf32>) -> tensor<4x64x64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	if len(st.str) == 0 {
    		st.fail("missing array dimension")
    	}
    
    	var dim AST
    	if st.str[0] == '_' {
    		dim = &Name{Name: ""}
    	} else if isDigit(st.str[0]) {
    		i := 1
    		for len(st.str) > i && isDigit(st.str[i]) {
    			i++
    		}
    		dim = &Name{Name: st.str[:i]}
    		st.advance(i)
    	} else {
    		dim = st.expression()
    	}
    
    	if len(st.str) == 0 || st.str[0] != '_' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/text/template/exec_test.go

    		tmpl, err := New("delims").Delims(left, right).Parse(text)
    		if err != nil {
    			t.Fatalf("delim %q text %q parse err %s", left, text, err)
    		}
    		var b = new(strings.Builder)
    		err = tmpl.Execute(b, value)
    		if err != nil {
    			t.Fatalf("delim %q exec err %s", left, err)
    		}
    		if b.String() != hello+trueLeft {
    			t.Errorf("expected %q got %q", hello+trueLeft, b.String())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    		tmpl, err := New("delims").Delims(left, right).Parse(text)
    		if err != nil {
    			t.Fatalf("delim %q text %q parse err %s", left, text, err)
    		}
    		var b = new(strings.Builder)
    		err = tmpl.Execute(b, value)
    		if err != nil {
    			t.Fatalf("delim %q exec err %s", left, err)
    		}
    		if b.String() != hello+trueLeft {
    			t.Errorf("expected %q got %q", hello+trueLeft, b.String())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        if (!out_size_ty.hasRank() || out_size_ty.getRank() != 1 ||
            out_size_ty.getShape()[0] != 2) {
          return failure();
        }
    
        // Extract the output width / height dim size.
        int out_height_constant = -1;
        int out_width_constant = -1;
        DenseIntElementsAttr out_size_cst;
        if (matchPattern(out_size, m_Constant(&out_size_cst))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	customStorageLock sync.Mutex
    	// customStorage contains a crdStorageMap
    	// atomic.Value has a very good read performance compared to sync.RWMutex
    	// see https://gist.github.com/dim/152e6bf80e1384ea72e17ac717a5000a
    	// which is suited for most read and rarely write cases
    	customStorage atomic.Value
    
    	crdLister listers.CustomResourceDefinitionLister
    
    	delegate          http.Handler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    ark,?le?o&nas?tsylaib??rob&el?lam??s&als?jazel?nadg,puls?rowezrp???l&colw?e&r?vart??i&am?m???m&o&c?dar?n?tyb??s&g?iruot??t!a???n&a&gaz?nzop,?i&bul?cezczs?lbul,molow?nok?zd&eb?obeiws???u&leiw?rot,?y&tzslo?z&rtek?seic????o&c,fni?k&celo?zdolk??lkan?n&leim?pek?t&uk?yzczs??z&copo?eing?rowaj???rga?tua?w&ejarg?ogarm???p&e&eb,lks!emoh,??klwwortso?ohs!-ecremmoce,daerpsym,??romophcaz?sos?t&aiwop?en?opos,ra,sezc??ude?v&irp?og!.&a&io?p?s!w???bni&p?w??ci?dtiw?e&ko?ss&p?w???fiw?g&imu?u??hiiw?m&igu?rio?u!o???n...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top