Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for SIMPLE (0.4 sec)

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

    // StableHLO Quantizer. These patterns should be legalized early directly
    // to fused tflite ops.
    // ============================================================================
    
    // Tests that a simple per-channel quantized `stablehlo.dot_general` is properly
    // lowered to fused `tfl.fully_connected`.
    // This case covers for the following quantization patterns because
    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. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    func (bt *BuiltinType) prec() precedence {
    	return precPrimary
    }
    
    // printBase is common print code for types that are printed with a
    // simple suffix.
    func printBase(ps *printState, qual, base AST) {
    	ps.inner = append(ps.inner, qual)
    	ps.print(base)
    	if len(ps.inner) > 0 {
    		qual.(innerPrinter).printInner(ps)
    		ps.inner = ps.inner[:len(ps.inner)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    // We need to balance between keeping enough running worker threads to utilize
    // available hardware parallelism and parking excessive running worker threads
    // to conserve CPU resources and power. This is not simple for two reasons:
    // (1) scheduler state is intentionally distributed (in particular, per-P work
    // queues), so it is not possible to compute global predicates on fast paths;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=root",
    			},
    		},
    		{
    			// Build a simple two node graph, where the leaf is directly issued from
    			// the root and both certificates have matching subject and public key, but
    			// the leaf has SANs.
    			name: "leaf with same subject, key, as parent but with SAN",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	// but when running "go test std" it is nice to see each test
    	// results as soon as possible. The priorities assigned
    	// ensure that, all else being equal, the execution prefers
    	// to do what it would have done first in a simple depth-first
    	// dependency order traversal.
    	all := actionList(root)
    	for i, a := range all {
    		a.priority = i
    	}
    
    	// Write action graph, without timing information, in case we fail and exit early.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    			prenormalizedDesiredReplicas: 5,
    			expectedStabilizedReplicas:   5,
    			expectedRecommendations: []timestampedRecommendation{
    				{5, now},
    			},
    		},
    		{
    			name: "simple scale down stabilization",
    			key:  "",
    			recommendations: []timestampedRecommendation{
    				{4, now.Add(-2 * time.Minute)},
    				{5, now.Add(-1 * time.Minute)}},
    			currentReplicas:              100,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

              imagePullSecrets:
                {{- range .Values.global.imagePullSecrets }}
                - name: {{ . }}
                {{- end }}
              {{- end }}
          grpc-simple: |
            metadata:
              annotations:
                sidecar.istio.io/rewriteAppHTTPProbers: "false"
            spec:
              initContainers:
                - name: grpc-bootstrap-init
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "jsonPath": {
                "default": "",
                "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.",
                "type": "string"
              },
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                       &is_guaranteed_constant)
               .ok()) {
        return false;
      }
      return is_guaranteed_constant;
    }
    
    TEST(EncapsulateSubgraphsWithGuaranteeConstOpTest, Simple) {
      Scope root = Scope::NewRootScope().ExitOnError().WithDevice(
          "/job:localhost/replica:0/task:0/cpu:0");
      auto x1 = ops::Placeholder(root.WithOpName("x1"), DT_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        const auto& element_type = node.attrs().Find("dtype")->type();
        return ConvertToMlirTensorType(output_shape, element_type, &builder);
      }
    
      // Returns a simple, more conservative unranked tensor type.
      auto default_type = [&]() -> absl::StatusOr<mlir::Type> {
        mlir::Type element_type;
        TF_RETURN_IF_ERROR(ConvertDataType(dtype, builder, &element_type));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top