Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 140 for defs (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

            (
                ["-gen-op-decls"],
                "passes/tf_quant_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "passes/tf_quant_ops.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "passes/tf_quant_ops.td",
        deps = [
            ":quant_td_files",
        ],
    )
    
    gentbl_cc_library(
        name = "optimize_inc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/go/doc/comment/parse.go

    	// Is this a block of known links? Handle.
    	var defs []*LinkDef
    	for _, line := range lines {
    		def, ok := parseLink(line)
    		if !ok {
    			goto NoDefs
    		}
    		defs = append(defs, def)
    	}
    	for _, def := range defs {
    		d.Links = append(d.Links, def)
    		if d.links[def.Text] == nil {
    			d.links[def.Text] = def
    		}
    	}
    	return nil
    NoDefs:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/ops/array_ops.h"
    #include "tensorflow/cc/ops/resource_variable_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/encapsulate_subgraphs_pass.h"
    #include "tensorflow/compiler/jit/node_matchers.h"
    #include "tensorflow/compiler/jit/test_util.h"
    #include "tensorflow/core/common_runtime/device_factory.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

            }
          }
        }
    
        NodeDef def;
        def.set_name(launch->name());
        MergeDebugInfo(NodeDebugInfo(launch->def()), &def);
    
        // Target the XLA CPU/GPU backends.
        VLOG(2) << "Replacing with XlaLaunch";
        VLOG(2) << "Device is " << launch->requested_device();
        def.set_op("XlaLaunch");
        def.set_device(launch->requested_device());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      //  in TensorFlow op def but it could have an empty value to represent missing
      //  functions. This value can't be represented using MLIR SymbolRefAttr and
      //  instead uses optional symbol ref attribute.
      //
      // TODO(b/182315488): Remove custom handling by finding a better
      // representation in MLIR for empty function names. One option could be to use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    		return
    	}
    	id, isId := e.(*ast.Ident)
    	if isId && id.Name == "_" {
    		return
    	}
    
    	var typ types.Type
    	if rtok == token.DEFINE {
    		if !isId {
    			return
    		}
    		obj := pass.TypesInfo.Defs[id]
    		if obj == nil {
    			return
    		}
    		typ = obj.Type()
    	} else {
    		typ = pass.TypesInfo.Types[e].Type
    	}
    
    	if typ == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/object.go

    // IsField reports whether the variable is a struct field.
    func (obj *Var) IsField() bool { return obj.isField }
    
    // Origin returns the canonical Var for its receiver, i.e. the Var object
    // recorded in Info.Defs.
    //
    // For synthetic Vars created during instantiation (such as struct fields or
    // function parameters that depend on type arguments), this will be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/go/types/object.go

    // IsField reports whether the variable is a struct field.
    func (obj *Var) IsField() bool { return obj.isField }
    
    // Origin returns the canonical Var for its receiver, i.e. the Var object
    // recorded in Info.Defs.
    //
    // For synthetic Vars created during instantiation (such as struct fields or
    // function parameters that depend on type arguments), this will be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

                      .Device("/gpu:0")
                      .Attr(kXlaClusterIdAttr, "launch0")
                      .Attr("_variable_start_index", 4)
                      .Finalize(&def));
    
      Status status;
      Node* launch = scope.graph()->AddNode(def, &status);
      TF_CHECK_OK(status);
      TF_CHECK_OK(scope.DoShapeInference(launch));
      scope.graph()->AddEdge(a.node(), 0, launch, 0);
      scope.graph()->AddEdge(b.node(), 0, launch, 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    	if lit == nil {
    		return nil
    	}
    
    	// Capture the *testing.T object for the first argument to the function
    	// literal.
    	if len(lit.Type.Params.List[0].Names) == 0 {
    		return nil
    	}
    
    	tObj := info.Defs[lit.Type.Params.List[0].Names[0]]
    	if tObj == nil {
    		return nil
    	}
    
    	// Match statements that occur after a call to t.Parallel following the final
    	// labeled statement in the function body.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top