Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 500 for defs (0.03 sec)

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

    	// entry-1, entry, entry+1, exit-1, and exit, exit+1.
    	// entry and exit are conceptually the top of the block (phi functions)
    	// entry+1 and exit-1 are conceptually the bottom of the block (ordinary defs)
    	// entry-1 and exit+1 are conceptually "just before" the block (conditions flowing in)
    	//
    	// This simplifies life if we wish to query information about x
    	// when x is both an input to and output of a block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    // TODO(adonovan): make this a library function or method of Info.
    func imported(info *types.Info, spec *ast.ImportSpec) *types.Package {
    	obj, ok := info.Implicits[spec]
    	if !ok {
    		obj = info.Defs[spec.Name] // renaming import
    	}
    	return obj.(*types.PkgName).Imported()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.h

    #define TENSORFLOW_COMPILER_JIT_COMPILABILITY_CHECK_UTIL_H_
    
    #include <string>
    
    #include "absl/algorithm/container.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/resource_operation_safety_analysis.h"
    #include "tensorflow/compiler/tf2xla/const_analysis.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/BUILD

            (
                ["-gen-op-decls"],
                "runtime_fallback_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "runtime_fallback_ops.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "runtime_fallback/runtime_fallback_ops.td",
        deps = [":runtime_fallback_ops_td_files"],
    )
    
    cc_library(
        name = "runtime_fallback_opdefs",
        srcs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    			return false
    		}
    		if n.End() > pos {
    			return n.Pos() <= pos
    		}
    		ident, ok := n.(*ast.Ident)
    		if !ok || ident.Name == "_" {
    			return true
    		}
    		obj := info.Defs[ident]
    		if obj == nil || obj.Type() == nil {
    			return true
    		}
    		if _, ok := obj.(*types.TypeName); ok {
    			return true
    		}
    		// Prevent duplicates in matches' values.
    		if _, ok = seen[obj]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      for (auto& n : nodes) {
        if (n.attr.empty()) {
          n.attr = {{"T", DT_FLOAT}};
        }
      }
      *g = FunctionDefHelper::Define(
          // Arg defs
          {"x: float", "dy: float"},
          // Ret val defs
          {"dx: float"},
          // Attr defs
          {},
          // Nodes
          nodes);
      return absl::OkStatus();
    }
    
    // A gradient containing only supported operators
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top