Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 240 for dot$ (0.04 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

              dot, "dot_general ops have different dimension numbers");
        if (dot.getPrecisionConfig() != first_dot.getPrecisionConfig())
          return rewriter.notifyMatchFailure(
              dot, "dot_general ops have different precision configs");
        if (!dot.getLhs().getType().hasStaticShape())
          return rewriter.notifyMatchFailure(
              dot, "all dot_general LHS must be statically shaped");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize.mlir

    func.func @testDotToDotGeneralVectorVector(%arg0: tensor<3072xf32>, %arg1: tensor<3072xf32>) -> tensor<f32> {
      %0 = "mhlo.dot"(%arg0, %arg1) : (tensor<3072xf32>, tensor<3072xf32>) -> tensor<f32>
      func.return %0 : tensor<f32>
    
    // CHECK:      %[[RES:.*]] = "mhlo.dot_general"(%arg0, %arg1) <{
    // CHECK-SAME:   dot_dimension_numbers = #mhlo.dot<
    // CHECK-SAME:     lhs_contracting_dimensions = [0],
    // CHECK-SAME:     rhs_contracting_dimensions = [0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/text/template/exec.go

    	case *parse.ContinueNode:
    		panic(walkContinue)
    	case *parse.IfNode:
    		s.walkIfOrWith(parse.NodeIf, dot, node.Pipe, node.List, node.ElseList)
    	case *parse.ListNode:
    		for _, node := range node.Nodes {
    			s.walk(dot, node)
    		}
    	case *parse.RangeNode:
    		s.walkRange(dot, node)
    	case *parse.TemplateNode:
    		s.walkTemplate(dot, node)
    	case *parse.TextNode:
    		if _, err := s.wr.Write(node.Text); err != nil {
    			s.writeError(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. src/net/textproto/reader.go

    		err = io.EOF
    	}
    	if err != nil && d.r.dot == d {
    		d.r.dot = nil
    	}
    	return
    }
    
    // closeDot drains the current DotReader if any,
    // making sure that it reads until the ending dot line.
    func (r *Reader) closeDot() {
    	if r.dot == nil {
    		return
    	}
    	buf := make([]byte, 128)
    	for r.dot != nil {
    		// When Read reaches EOF or an error,
    		// it will set r.dot == nil.
    		r.dot.Read(buf)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse_test.go

    )
    
    type parseTest struct {
    	Regexp string
    	Dump   string
    }
    
    var parseTests = []parseTest{
    	// Base cases
    	{`a`, `lit{a}`},
    	{`a.`, `cat{lit{a}dot{}}`},
    	{`a.b`, `cat{lit{a}dot{}lit{b}}`},
    	{`ab`, `str{ab}`},
    	{`a.b.c`, `cat{lit{a}dot{}lit{b}dot{}lit{c}}`},
    	{`abc`, `str{abc}`},
    	{`a|^`, `alt{lit{a}bol{}}`},
    	{`a|b`, `cc{0x61-0x62}`},
    	{`(a)`, `cap{lit{a}}`},
    	{`(a)|b`, `alt{cap{lit{a}}lit{b}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

            )
        }
    
        @Test
        fun `syntax error - dot after dot`() {
            assertDynamicInterpretationOf(
                """id("plugin-id-1"). .version("1.0")""",
                "Expecting token of type RBRACE, but got DOT instead"
            )
        }
    
        @Test
        fun `syntax error - dot after dot on next line`() {
            assertDynamicInterpretationOf(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. src/net/mail/message.go

    	return string(qsb), nil
    }
    
    // consumeAtom parses an RFC 5322 atom at the start of p.
    // If dot is true, consumeAtom parses an RFC 5322 dot-atom instead.
    // If permissive is true, consumeAtom will not fail on:
    // - leading/trailing/double dots in the atom (see golang.org/issue/4938)
    func (p *addrParser) consumeAtom(dot bool, permissive bool) (atom string, err error) {
    	i := 0
    
    Loop:
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	// Generate report in DOT format and postprocess with dot
    	"gif": {report.Dot, invokeDot("gif"), awayFromTTY("gif"), false, "Outputs a graph image in GIF format", reportHelp("gif", false, true)},
    	"pdf": {report.Dot, invokeDot("pdf"), awayFromTTY("pdf"), false, "Outputs a graph in PDF format", reportHelp("pdf", false, true)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	dot := &bytes.Buffer{}
    	graph.ComposeDot(dot, g, &graph.DotAttributes{}, config)
    
    	// Convert to svg.
    	svg, err := dotToSvg(dot.Bytes())
    	if err != nil {
    		http.Error(w, "Could not execute dot; may need to install graphviz.",
    			http.StatusNotImplemented)
    		ui.options.UI.PrintErr("Failed to execute dot. Is Graphviz installed?\n", err)
    		return
    	}
    
    	// Get all node names into an array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    }
    
    const maxNodelets = 4 // Number of nodelets for labels (both numeric and non)
    
    // ComposeDot creates and writes a in the DOT format to the writer, using
    // the configurations given.
    func ComposeDot(w io.Writer, g *Graph, a *DotAttributes, c *DotConfig) {
    	builder := &builder{w, a, c}
    
    	// Begin constructing DOT by adding a title and legend.
    	builder.start()
    	defer builder.finish()
    	builder.addLegend()
    
    	if len(g.Nodes) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
Back to top