Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for runInit (0.11 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:Support",
        ],
    )
    
    exports_files([
        "run_lit.sh",
    ])
    
    py_strict_library(
        name = "tac",
        srcs = [
            "tac.py",
        ],
        srcs_version = "PY3",
        visibility = ["//visibility:public"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/edit.go

    )
    
    type flagFunc func(string)
    
    func (f flagFunc) String() string     { return "" }
    func (f flagFunc) Set(s string) error { f(s); return nil }
    
    func init() {
    	cmdEdit.Run = runEdit // break init cycle
    
    	cmdEdit.Flag.Var(flagFunc(flagGodebug), "godebug", "")
    	cmdEdit.Flag.Var(flagFunc(flagDropGodebug), "dropgodebug", "")
    	cmdEdit.Flag.Var(flagFunc(flagRequire), "require", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/operand.go

    	var kind BasicKind
    	switch k {
    	case syntax.IntLit:
    		kind = UntypedInt
    	case syntax.FloatLit:
    		kind = UntypedFloat
    	case syntax.ImagLit:
    		kind = UntypedComplex
    	case syntax.RuneLit:
    		kind = UntypedRune
    	case syntax.StringLit:
    		kind = UntypedString
    	default:
    		panic("unreachable")
    	}
    
    	val := makeFromLiteral(lit, k)
    	if val.Kind() == constant.Unknown {
    		x.mode = invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/BUILD

            "//tensorflow_serving/servables/tensorflow/...",
            "//tensorflow_serving/servables/tensorflow/google/...",
            "//third_party/tf_runtime_google/...",
        ]),
    )
    
    exports_files(["run_lit.sh"])
    
    td_library(
        name = "runtime_fallback_ops_td_files",
        srcs = [
            "runtime_fallback/runtime_fallback_ops.td",
        ],
        deps = [
            "@llvm-project//mlir:OpBaseTdFiles",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

    #     api_version = 2,
    #     visibility = [
    #         ":internal_visibility_allowlist_package",
    #     ],
    #     deps = [":quantization_config_proto"],
    # )
    # copybara:uncomment_end
    
    exports_files([
        "run_lit.sh",
    ])
    
    tf_cc_binary(
        name = "stablehlo-quant-opt",
        srcs = ["tools/stablehlo_quant_opt.cc"],
        visibility = [":internal_visibility_allowlist_package"],
        deps = [
            ":bridge_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/BUILD

            ":uniform_quantized_stablehlo_to_tfl_pass",
            "//tensorflow/compiler/mlir:passes",
            "//tensorflow/compiler/mlir:tf_mlir_opt_main",
        ],
    )
    
    exports_files([
        "run_lit.sh",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. src/go/types/generate_test.go

    		renameSelectorExprs(f,
    			"syntax.Pos->token.Pos", "syntax.LitKind->token.Token",
    			"syntax.IntLit->token.INT", "syntax.FloatLit->token.FLOAT",
    			"syntax.ImagLit->token.IMAG", "syntax.RuneLit->token.CHAR",
    			"syntax.StringLit->token.STRING") // must happen before renaming identifiers
    		renameIdents(f, "syntax->ast")
    	},
    	"package.go":       nil,
    	"pointer.go":       nil,
    	"predicates.go":    nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner.go

    				ok = false
    			}
    			break
    		}
    		if s.ch < 0 {
    			if ok {
    				s.errorAtf(0, "rune literal not terminated")
    				ok = false
    			}
    			break
    		}
    		s.nextch()
    	}
    
    	s.setLit(RuneLit, ok)
    }
    
    func (s *scanner) stdString() {
    	ok := true
    	s.nextch()
    
    	for {
    		if s.ch == '"' {
    			s.nextch()
    			break
    		}
    		if s.ch == '\\' {
    			s.nextch()
    			if !s.escape('"') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
Back to top