Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 140 for defs (0.05 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.cc

    #include "tensorflow/cc/ops/const_op.h"
    #include "tensorflow/cc/ops/control_flow_ops.h"
    #include "tensorflow/cc/ops/functional_ops.h"
    #include "tensorflow/cc/ops/logging_ops.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/encapsulate_subgraphs_pass.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/xla_cluster_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.cc

               /*include_compilation_only_kernels=*/false)) {
        KernelDef* def = new KernelDef(*jit_def);
        const std::unordered_set<std::string>* constant_inputs =
            XlaOpRegistry::CompileTimeConstantInputArgNames(def->op());
    
        for (const std::string& arg_name : *constant_inputs) {
          def->add_host_memory_arg(arg_name);
        }
    
        def->set_device_type(device);
        registrations->op_kernel_registrars.emplace_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.cc

    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.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/jit/xla_activity.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/emit.go

    // captureOsArgs converts os.Args() into the format we use to store
    // this info in the counter data file (counter data file "args"
    // section is a generic key-value collection). See the 'args' section
    // in internal/coverage/defs.go for more info. The args map
    // is also used to capture GOOS + GOARCH values as well.
    func captureOsArgs() map[string]string {
    	m := make(map[string]string)
    	m["argc"] = strconv.Itoa(len(os.Args))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_experimental_test.cc

      server_def_0.mutable_default_session_config()->set_isolate_session_state(
          false);
      tensorflow::ServerDef server_def_1 =
          ReplaceTaskInServerDef(server_def_0, /*task_index=*/0);
    
      // These server defs have task index set to 0.
      string serialized_server_def_0 = server_def_0.SerializeAsString();
      string serialized_server_def_1 = server_def_1.SerializeAsString();
    
      // Create two worker tasks.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 03:14:26 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  6. build/common.sh

      LOCAL_OUTPUT_BUILD_CONTEXT="${LOCAL_OUTPUT_IMAGE_STAGING}/${KUBE_BUILD_IMAGE}"
    
      kube::version::get_version_vars
      kube::version::save_version_vars "${KUBE_ROOT}/.dockerized-kube-version-defs"
    
      # Without this, the user's umask can leak through.
      umask 0022
    }
    
    # ---------------------------------------------------------------------------
    # Utility functions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/go/types/check.go

    	ast.Fprint(&buf, token.NewFileSet(), expr, ast.NotNilFilter)
    	panic(buf.String())
    }
    
    func (check *Checker) recordDef(id *ast.Ident, obj Object) {
    	assert(id != nil)
    	if m := check.Defs; m != nil {
    		m[id] = obj
    	}
    }
    
    func (check *Checker) recordUse(id *ast.Ident, obj Object) {
    	assert(id != nil)
    	assert(obj != nil)
    	if m := check.Uses; m != nil {
    		m[id] = obj
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check.go

    		return x
    	case *syntax.SelectorExpr:
    		return x.Sel
    	}
    	panic("instantiated ident not found")
    }
    
    func (check *Checker) recordDef(id *syntax.Name, obj Object) {
    	assert(id != nil)
    	if m := check.Defs; m != nil {
    		m[id] = obj
    	}
    }
    
    func (check *Checker) recordUse(id *syntax.Name, obj Object) {
    	assert(id != nil)
    	assert(obj != nil)
    	if m := check.Uses; m != nil {
    		m[id] = obj
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	// Look for functions with final argument type ...interface{}.
    	fdecl, ok := decl.(*ast.FuncDecl)
    	if !ok || fdecl.Body == nil {
    		return nil
    	}
    	fn, ok := info.Defs[fdecl.Name].(*types.Func)
    	// Type information may be incomplete.
    	if !ok {
    		return nil
    	}
    
    	sig := fn.Type().(*types.Signature)
    	if !sig.Variadic() {
    		return nil // not variadic
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    	// concurrently.
    	SEHSyms []*LSym
    
    	// pkgIdx maps package path to index. The index is used for
    	// symbol reference in the object file.
    	pkgIdx map[string]int32
    
    	defs         []*LSym // list of defined symbols in the current package
    	hashed64defs []*LSym // list of defined short (64-bit or less) hashed (content-addressable) symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top