Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,122 for OPT (0.59 sec)

  1. src/cmd/compile/internal/ssa/opt.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    // machine-independent optimization.
    func opt(f *Func) {
    	applyRewrite(f, rewriteBlockgeneric, rewriteValuegeneric, removeDeadValues)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 309 bytes
    - Viewed (0)
  2. src/internal/testenv/opt.go

    Cuong Manh Le <******@****.***> 1660650717 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 04:02:17 UTC 2022
    - 303 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/testdata/scopes.gdb-opt.nexts

    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 0
    y = 0
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 1
    y = 0
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 4
    y = 1
    26:		for i := x; i < 3; i++ {
    31:		fmt.Println(x, y)
    30:		y = x + y //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 0
    y = 5
    31:		fmt.Println(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 22:18:10 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/testdata/scopes.dlv-opt.nexts

    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    31:		fmt.Println(x, y)
    30:		y = x + y //gdb-dbg=(x,y)//gdb-opt=(x,y)
    31:		fmt.Println(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 22:18:10 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/testdata/infloop.dlv-opt.nexts

    David Chase <******@****.***> 1579280635 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 17 23:14:48 UTC 2020
    - 179 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/testdata/hist.dlv-opt.nexts

    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    75:			s := scanner.Text()
    76:			i, err := strconv.ParseInt(s, 10, 64)
    77:			if err != nil { //gdb-dbg=(i) //gdb-opt=(err,hist,i)
    81:			hist = ensure(int(i), hist)
    82:			hist[int(i)]++
    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/testdata/hist.gdb-opt.nexts

    l = {begin = {x = 1, y = 2}, end = {x = 3, y = 4}}
    dx = <Optimized out, as expected>
    dy = <Optimized out, as expected>
    60:		dy := l.end.y - l.begin.y //gdb-opt=(dx,dy/O)
    dx = 2
    dy = <Optimized out, as expected>
    61:		sink = dx + dy            //gdb-opt=(dx,dy)
    dx = 2
    dy = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/testdata/infloop.gdb-opt.nexts

    David Chase <******@****.***> 1553106568 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:04:34 UTC 2019
    - 98 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.h

    // Import options.
    extern llvm::cl::opt<std::string> input_arrays;
    extern llvm::cl::opt<std::string> input_dtypes;
    extern llvm::cl::opt<std::string> input_shapes;
    extern llvm::cl::opt<std::string> output_arrays;
    extern llvm::cl::opt<std::string> control_output_arrays;
    extern llvm::cl::opt<std::string> inference_type;
    extern llvm::cl::opt<std::string> min_values;
    extern llvm::cl::opt<std::string> max_values;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

    // which expects command-line options of such style.
    
    using llvm::cl::opt;
    
    // Import options.
    // NOLINTNEXTLINE
    opt<std::string> input_arrays(
        "tf-input-arrays", llvm::cl::desc("Input tensor names, separated by ','"),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> input_dtypes(
        "tf-input-data-types",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top