Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 728 for DOT (0.02 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // DISABLE-ALL-DOT-GENERAL-SAME: _entry_function = @composite_dot_general_fn_1
    // DISABLE-ALL-DOT-GENERAL-SAME: _original_entry_function
    // DISABLE-ALL-DOT-GENERAL-SAME: _quantization_method = "no_quantization { }"
    // DISABLE-ALL-DOT-GENERAL-SAME: _tfl_quant_trait = "fully_quantizable"
    
    // DISABLE-ALL-DOT-GENERAL: return %[[XLA_CALL_MODULE:.+]] : tensor<1x1x64xf32>
    // DISABLE-ALL-DOT-GENERAL: }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_invalid_path_dotname.txt

    # Test that an import path containing an element with a leading dot
    # in another module is valid.
    
    # 'go get' works with no version query.
    cp go.mod.empty go.mod
    go get example.com/dotname/.dot
    go list -m example.com/dotname
    stdout '^example.com/dotname v1.0.0$'
    
    # 'go get' works with a version query.
    cp go.mod.empty go.mod
    go get example.com/dotname/.dot@latest
    go list -m example.com/dotname
    stdout '^example.com/dotname v1.0.0$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name_test.go

    			Prefix:      false,
    			ExpectedMsg: "",
    		},
    
    		"dot": {
    			Name:        ".",
    			Prefix:      false,
    			ExpectedMsg: ".",
    		},
    		"dot leading": {
    			Name:        ".test",
    			Prefix:      false,
    			ExpectedMsg: "",
    		},
    		"dot,prefix": {
    			Name:        ".",
    			Prefix:      true,
    			ExpectedMsg: "",
    		},
    
    		"dot dot": {
    			Name:        "..",
    			Prefix:      false,
    			ExpectedMsg: "..",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 13:49:29 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/mod/example.com_dotname_v1.0.0.txt

    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/dotname
    
    go 1.16
    -- go.mod --
    module example.com/dotname
    
    go 1.16
    -- .dot/dot.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 20:52:20 UTC 2021
    - 159 bytes
    - Viewed (0)
  7. src/os/getwd.go

    		return syscall.Getwd()
    	}
    
    	// Clumsy but widespread kludge:
    	// if $PWD is set and matches ".", use it.
    	dot, err := statNolog(".")
    	if err != nil {
    		return "", err
    	}
    	dir = Getenv("PWD")
    	if len(dir) > 0 && dir[0] == '/' {
    		d, err := statNolog(dir)
    		if err == nil && SameFile(dot, d) {
    			return dir, nil
    		}
    	}
    
    	// If the operating system provides a Getwd call, use it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 28 06:28:02 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_goroot_errors.txt

    ! go build -mod=readonly nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    ! go build nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize_int4.mlir

      // CHECK: %[[dot:.*]] = stablehlo.dot %[[dq2]], %[[dq1]]
      %1 = stablehlo.dot %0, %cst : (tensor<?x3xf32>, tensor<3x2xf32>) -> tensor<?x2xf32>
      // CHECK: %[[q3:.*]] = "quantfork.qcast"(%[[dot]])
      // CHECK-SAME: quant.uniform<i4:f32, 0.61633392969767253:-2>>
      // CHECK: %[[dq3:.*]] = "quantfork.dcast"(%[[q3]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

        <developer>
          <id>sanders</id>
          <name>Scott Sanders</name>
          <email>sanders at apache dot org</email>
          <organization>Apache Software Foundation</organization>
        </developer>
        <developer>
          <id>rdonkin</id>
          <name>Robert Burrell Donkin</name>
          <email>rdonkin at apache dot org</email>
          <organization>Apache Software Foundation</organization>
        </developer>
        <developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top