Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 145 for dumpgs (0.26 sec)

  1. src/go/types/builtins.go

    		// result is constant - no need to record signature
    
    	case _Trace:
    		// trace(x, y, z, ...) dumps the positions, expressions, and
    		// values of its arguments. The result of trace is the value
    		// of the first argument.
    		// Note: trace is only available in self-test mode.
    		// (no argument evaluated yet)
    		if nargs == 0 {
    			check.dump("%v: trace() without arguments", call.Pos())
    			x.mode = novalue
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                                     absl::string_view error_message,
                                     toco::GraphVizDumpOptions* dump_options) {
      // Make sure the graphviz file will be dumped under the same folder.
      dump_options->dump_graphviz = toco_flags->conversion_summary_dir();
      // Here we construct the `toco::Model` class based on the input graph def,
      // it will then be used to populate the conversion log.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. tools/build-base-images.sh

    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -ex
    
    toJson () {
            python3 -c '
    import sys, yaml, json
    yml = list(y for y in yaml.safe_load_all(sys.stdin) if y)
    if len(yml) == 1: yml = yml[0]
    json.dump(yml, sys.stdout, indent=4)
    '
    }
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    buildx-create
    
    HUBS="${HUBS:?specify a space separated list of hubs}"
    TAG="${TAG:?specify a tag}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/settings.go

    	EchoImage string
    
    	// CustomGRPCEchoImage if specified will run an extra container in the echo Pods responsible for gRPC ports
    	CustomGRPCEchoImage string
    
    	// MaxDumps is the maximum number of full test dumps that are allowed to occur within a test suite.
    	MaxDumps uint64
    
    	// EnableDualStack indicates the test should have dual stack enabled or not.
    	EnableDualStack bool
    
    	// Helm repo to be used for tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

          CompileMlirModule(
              kMlirModuleStr,
              ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_UNSPECIFIED));
    
      // Due to the shared test of this infrastructure, we just need to make sure
      // that the dumped file size is greater than what was originally inside
      // the test directory.
      TF_ASSERT_OK(env->GetChildren(test_dir, &files));
      EXPECT_THAT(files.size(), ::testing::Gt(original_files_size));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. src/internal/coverage/cformat/format.go

    // importpath, source file, and line number before emitting (this sorting
    // is not explicitly mandated by the format, but seems like a good idea
    // for repeatable/deterministic dumps).
    func (fm *Formatter) EmitTextual(w io.Writer) error {
    	if fm.cm == coverage.CtrModeInvalid {
    		panic("internal error, counter mode unset")
    	}
    	if _, err := fmt.Fprintf(w, "mode: %s\n", fm.cm.String()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. src/time/genzabbrs.go

    	}
    
    	var sd SupplementalData
    	err = xml.Unmarshal(data, &sd)
    	if err != nil {
    		return nil, err
    	}
    	zs := make([]*zone, 0)
    	for _, z := range sd.Zones {
    		if z.Territory != "001" {
    			// to avoid dups. I don't know why.
    			continue
    		}
    		l, err := time.LoadLocation(z.Type)
    		if err != nil {
    			return nil, err
    		}
    		st, dt := getAbbrs(l)
    		zs = append(zs, &zone{
    			WinName:  z.Other,
    			UnixName: z.Type,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(func.func(tf-tensor-device-copy),tfrt-lower-tf-savedmodel{hoist-invariant-ops=true},tf-to-tfrt{tfrt-cost-threshold=1024 tfrt-merge-inter-dependent-streams=true})' %s | FileCheck %s --dump-input-filter=all
    
    // CHECK-NOT: tf_saved_model.semantics
    // CHECK: tfrt.cost_threshold = 1024
    // CHECK-SAME: tfrt.merge_inter_dependent_streams = true
    module attributes {tf_saved_model.semantics} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/func.go

    	laidout     bool  // Blocks are ordered
    	NoSplit     bool  // true if function is marked as nosplit.  Used by schedule check pass.
    	dumpFileSeq uint8 // the sequence numbers of dump file. (%s_%02d__%s.dump", funcname, dumpFileSeq, phaseName)
    	IsPgoHot    bool
    
    	// when register allocation is done, maps value ids to locations
    	RegAlloc []Location
    
    	// temporary registers allocated to rare instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/flags.cc

                "multiple cpu devices."),
           Flag("tf_dump_graphs_in_tfg", &use_tfg_graph_dumper,
                "When tf_dump_graphs_in_tfg is true, graphs after transformations "
                "are dumped in MLIR TFG dialect and not in GraphDef"),
           Flag("tf_mlir_enable_tpu_variable_runtime_reformatting_pass",
                &enable_tpu_variable_runtime_reformatting_pass,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top