Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 286 for spcs (0.21 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

    tf_cc_binary(
        name = "tfl_quantizer",
        srcs = [
            "tfl_quantizer.cc",
        ],
        deps = [
            ":quantize_model",
            "//tensorflow/compiler/mlir/lite/schema:schema_fbs",
            "//tensorflow/lite:framework",
            "//tensorflow/lite/c:c_api_types",
            "@llvm-project//llvm:Support",
        ],
    )
    
    tf_cc_test(
        name = "quantize_model_test",
        srcs = ["quantize_model_test.cc"],
        args = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/BUILD

        default_visibility = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "save_report",
        srcs = ["save_report.cc"],
        hdrs = ["save_report.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:report",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf_test.go

    		return max(st1, st2) < min(en1, en2)
    	}
    
    	// Sort by address
    	sort.SliceStable(secs, func(i, j int) bool {
    		return secs[i].Addr < secs[j].Addr
    	})
    
    	// Check to make sure we don't have any overlaps.
    	foundOverlap := false
    	for i := 0; i < len(secs)-1; i++ {
    		for j := i + 1; j < len(secs); j++ {
    			s := secs[i]
    			sn := secs[j]
    			if secOverlaps(s, sn) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/BUILD

            "//tensorflow/compiler/mlir/tf2xla/api:__subpackages__",
            "//tensorflow/compiler/mlir/tf2xla/internal:__subpackages__",
        ],
    )
    
    cc_library(
        name = "compile_mlir_util_no_tf_dialect_passes",
        srcs = ["compile_mlir_util.cc"],
        hdrs = ["compile_mlir_util.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:bridge_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/controller.go

    		c.openAPIV3Service.DeleteGroupVersion(groupVersionToOpenAPIV3Path(gv))
    		return nil
    	}
    
    	var specs []*spec3.OpenAPI
    	for _, spec := range c.specsByGVandName[gv] {
    		specs = append(specs, spec)
    	}
    
    	mergedSpec, err := builder.MergeSpecsV3(specs...)
    	if err != nil {
    		return fmt.Errorf("failed to merge specs: %v", err)
    	}
    
    	c.openAPIV3Service.UpdateGroupVersion(groupVersionToOpenAPIV3Path(gv), mergedSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    func testFiles(t *testing.T, filenames []string, srcs [][]byte, colDelta uint, manual bool, opts ...func(*Config)) {
    	enableAlias := true
    	opts = append(opts, func(conf *Config) { conf.EnableAlias = enableAlias })
    	testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	if !manual {
    		enableAlias = false
    		testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/internal/trace/internal/testgen/go122/trace.go

    	names           map[string]event.Type
    	specs           []event.Spec
    	events          []raw.Event
    	gens            []*Generation
    	validTimestamps bool
    
    	// Expectation state.
    	bad      bool
    	badMatch *regexp.Regexp
    }
    
    // NewTrace creates a new trace.
    func NewTrace() *Trace {
    	ver := version.Go122
    	return &Trace{
    		names:           event.Names(ver.Specs()),
    		specs:           ver.Specs(),
    		validTimestamps: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

    filegroup(
        name = "extra_files",
        srcs = glob(
            [
                "**/importer_test_min_max.cc.mlir",
                "**/reshape.mlir",
            ],
        ),
    )
    
    # A binary to inject min/max to a tflite model.
    # A file check command is used to verify the imported result from this
    # binary format.
    tf_native_cc_binary(
        name = "importer_test_min_max",
        srcs = [
            "importer_test_min_max.cc",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

        srcs = [tfcompile_graph, config]
        debug_info_flags = []
        if debug_info:
            srcs.append(debug_info)
            debug_info_flags = ["--debug_info=$(location " + debug_info + ")"]
    
        tfcompile_gen = "gen_" + name
        _tfcompile_model_library(
            name = tfcompile_gen,
            model_name = name,
            srcs = srcs,
            gen_compiler_log = gen_compiler_log,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/trace/pprof.go

    		return rec
    	}
    	// Slow path: the stack may still be in the map.
    
    	// Grab the stack's PCs as the source-of-truth.
    	var pcs [pprofMaxStack]uint64
    	pcsForStack(stack, &pcs)
    
    	// Check the source-of-truth.
    	var rec *traceviewer.ProfileRecord
    	if existing, ok := m.pcs[pcs]; ok {
    		// In the map.
    		rec = m.stacks[existing]
    		delete(m.stacks, existing)
    	} else {
    		// Not in the map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top