Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for assignOp (0.26 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      FunctionDef compilable = FunctionDefHelper::Define(
          "FnWithResourceOp", {"var:resource", "val:float"}, {"retval:float"}, {},
          {{{"assign_op"},
            "AssignVariableOp",
            {"var", "val"},
            {{"dtype", DT_FLOAT}}},
           {{"retval"}, "Identity", {"val"}, {{"T", DT_FLOAT}}, {"assign_op"}}});
    
      FunctionDefLibrary flib;
      *flib.add_function() = compilable;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	deferReturnTramp map[Sym]bool // whether the symbol is a trampoline of a deferreturn call
    
    	objByPkg map[string]uint32 // map package path to the index of its Go object reader
    
    	anonVersion int // most recently assigned ext static sym pseudo-version
    
    	// Bitmaps and other side structures used to store data used to store
    	// symbol flags/attributes; these are to be accessed via the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    but the results of comparisons or non-constant shifts of untyped constants
    may also be untyped, but not constant.
    
    Untyped expressions may eventually become fully typed (i.e., not untyped),
    typically when the value is assigned to a variable, or is used otherwise.
    The updateExprType method is used to record this final type and update
    the recorded types: the type-checked expression tree is again traversed down,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    		}
    		if n == 1 {
    			p.print(blank)
    		} else {
    			p.print(vtab)
    		}
    		if s.Assign.IsValid() {
    			p.print(token.ASSIGN, blank)
    		}
    		p.expr(s.Type)
    		p.setComment(s.Comment)
    
    	default:
    		panic("unreachable")
    	}
    }
    
    func (p *printer) genDecl(d *ast.GenDecl) {
    	p.setComment(d.Doc)
    	p.setPos(d.Pos())
    	p.print(d.Tok, blank)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    		name = fmt.Sprintf(".pkg.%s.%d", name, len(d.linkctxt.compUnits))
    		st = sym.SDWARFCUINFO
    	case dwarf.DW_ABRV_VARIABLE:
    		st = sym.SDWARFVAR
    	default:
    		// Everything else is assigned a type of SDWARFTYPE. that
    		// this also includes loose ends such as STRUCT_FIELD.
    		st = sym.SDWARFTYPE
    	}
    	ds := d.ldr.LookupOrCreateSym(dwarf.InfoPrefix+name, 0)
    	dsu := d.ldr.MakeSymbolUpdater(ds)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. kotlin-js-store/yarn.lock

      integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
    
    object-assign@^4:
      version "4.1.1"
      resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
      integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    but the results of comparisons or non-constant shifts of untyped constants
    may also be untyped, but not constant.
    
    Untyped expressions may eventually become fully typed (i.e., not untyped),
    typically when the value is assigned to a variable, or is used otherwise.
    The updateExprType method is used to record this final type and update
    the recorded types: the type-checked expression tree is again traversed down,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    Status Encapsulator::Subgraph::AddFunctionCallNode(
        const absl::flat_hash_map<const Node*, Node*>& node_images,
        Graph* graph_out) {
      TF_ASSIGN_OR_RETURN(call_node_, graph_out->AddNode(call_node_def_));
    
      // Copy the assigned device and the key_annotation over.
      call_node_->set_assigned_device_name(device_);
    
      return absl::OkStatus();
    }
    
    Status Encapsulator::GetFunctionNameAttr(Node const* node, string* attr) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        jit::DeviceInfoCache* device_info_cache, const Node& n, bool* ignore) {
      // If a resource operation is assigned to XLA_CPU or XLA_GPU explicitly then
      // ignore it during resource operation safety analysis.  We need this hack
      // because of two reasons:
      //
      //  1. Operations assigned to XLA_CPU and XLA_GPU have to always be compiled.
      //  2. We don't support live-out values of type DT_RESOURCE and live-in values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    		nodesNeedingDaemonPods = append(nodesNeedingDaemonPods, nodesNeedingDaemonPodsOnNode...)
    		podsToDelete = append(podsToDelete, podsToDeleteOnNode...)
    	}
    
    	// Remove unscheduled pods assigned to not existing nodes when daemonset pods are scheduled by scheduler.
    	// If node doesn't exist then pods are never scheduled and can't be deleted by PodGCController.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top