Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 615 for outp (0.04 sec)

  1. tensorflow/compiler/mlir/tfr/build_defs.bzl

            srcs_version = "PY3",
            python_version = "PY3",
            deps = py_deps,
        )
    
        registered_op = "registered_" + name
        native.genrule(
            name = registered_op,
            srcs = [],
            outs = [name + ".inc.cc"],
            cmd = "$(location %s) --output=$@ --gen_register_op=true" % gen_op_lib_exec,
            tools = [":" + gen_op_lib_exec],
            tags = tags,
        )
    
        native.cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcs/vcs.go

    			}
    		}
    	}
    
    	outb, err = vcsBzr.runOutputVerboseOnly(rootDir, "status")
    	if err != nil {
    		return Status{}, err
    	}
    
    	// Skip warning when working directory is set to an older revision.
    	if bytes.HasPrefix(outb, []byte("working tree is out of date")) {
    		i := bytes.IndexByte(outb, '\n')
    		if i < 0 {
    			i = len(outb)
    		}
    		outb = outb[:i]
    	}
    	uncommitted := len(outb) > 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/stackcheck_test.go

    	stanza := regexp.MustCompile(`^(.*): nosplit stack over \d+ byte limit\n(.*\n(?: .*\n)*)`)
    	// Strip comments from cmd/go
    	out = regexp.MustCompile(`(?m)^#.*\n`).ReplaceAllString(out, "")
    	for len(out) > 0 {
    		m := stanza.FindStringSubmatch(out)
    		if m == nil {
    			t.Fatalf("unexpected output:\n%s", out)
    		}
    		out = out[len(m[0]):]
    		fn := m[1]
    		got := m[2]
    
    		want, ok := wantMap[fn]
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_tpu_ops.td

    }
    
    def GetTpuHostDeviceOp : TensorflowMlrtTpu_Op<"get_tpu_host_device", [Pure]> {
      let summary = "get the tpu host allocator that implements tensorflow::Device";
    
      let results = (outs
        TFDeviceType:$device
      );
    
      let assemblyFormat = "attr-dict";
    }
    
    def CompileAndExecuteOp : TensorflowMlrtTpu_Op<"compile_and_execute"> {
      let summary = "tpu compile and execute operation";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

        DefaultValuedOptionalAttr<I64Attr, "-128">:$output_quantization_min_val,
        DefaultValuedOptionalAttr<I64Attr, "127">:$output_quantization_max_val
      );
    
      let results = (outs
        TensorOf<[TF_Qint32]>:$output
      );
    
      TF_DerivedOperandTypeAttr LhsT = TF_DerivedOperandTypeAttr<0>;
      TF_DerivedOperandTypeAttr RhsT = TF_DerivedOperandTypeAttr<1>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyClassPathNotationConverterTest.groovy

            when:
            def out = parse(GRADLE_API)
    
            then:
            out instanceof DefaultFileCollectionDependency
            out.files as List == [shadedApiJar] + localGroovyFiles + installationBeaconFiles
        }
    
        def "reuses dependency instances"() {
            when:
            def out = parse(GRADLE_API)
    
            then:
            out instanceof DefaultFileCollectionDependency
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. docs/distributed/decom-encrypted-kes.sh

    out=$(diff -qpruN expanded_ns.txt decommissioned_ns.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no missing entries after decommission: $out"
    	exit 1
    fi
    
    out=$(diff -qpruN expanded_ns_versions.txt decommissioned_ns_versions.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no missing entries after decommission: $out"
    	exit 1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/cover.go

    	return werr
    }
    
    // WriteCoverageProfile writes out a coverage profile fragment for the
    // package whose test-run action is 'runAct'; content is written to
    // the file 'outf' based on the coverage meta-data info found in
    // 'mf'. This helper is used in cases where a user runs "go test
    // -cover" on a package that has functions but no tests.
    func WriteCoverageProfile(b *Builder, runAct *Action, mf, outf string, w io.Writer) error {
    	dir := filepath.Dir(mf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/readwriter.go

    			r.bufStart += n
    			if r.lastBoundary-r.bufStart > 0 {
    				return n, nil
    			}
    			return n, r.err
    		}
    		if r.err != nil {
    			return 0, r.err
    		}
    		outn := copy(r.outbuf, r.outbuf[r.lastBoundary:])
    		r.outbuf = r.outbuf[0:outn]
    		r.bufStart = 0
    
    		n, err := r.r.Read(r.inbuf)
    		r.rb.src = inputBytes(r.inbuf[0:n])
    		r.rb.nsrc, r.err = n, err
    		if n > 0 {
    			r.outbuf = doAppend(&r.rb, r.outbuf, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/compress/zlib/writer_test.go

    		return
    	}
    	out := buf.String()
    
    	// Reset and compress again.
    	buf2 := new(bytes.Buffer)
    	zlibw.Reset(buf2)
    	_, err = zlibw.Write(b0)
    	if err == nil {
    		err = zlibw.Close()
    	}
    	if err != nil {
    		t.Errorf("%s (level=%d): %v", fn, level, err)
    		return
    	}
    	out2 := buf2.String()
    
    	if out2 != out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 5.7K bytes
    - Viewed (0)
Back to top