Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,196 for assignOp (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/hoist_replicate_invariant_resource_writes.cc

          new_replicate_op->getResults().take_front(old_num_results));
    
      // Move assign ops after replicate and use the output of first replica.
      for (auto indexed_assign : llvm::enumerate(tail_assign_variable_ops)) {
        auto assign_op = indexed_assign.value();
        auto index = indexed_assign.index();
        assign_op->moveAfter(new_replicate_op);
        assign_op->setOperand(
            1, new_replicate_op->getResult(old_num_results + num_replicas * index));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

            value: "\n\003a:0\022\010a/Assign\032\010a/read:0"
            value: "\n\003b:0\022\010b/Assign\032\010b/read:0"
            value: "\n\003c:0\022\010c/Assign\032\010c/read:0"
          }
        }
      }
      collection_def {
        key: "variables"
        value {
          bytes_list {
            value: "\n\003a:0\022\010a/Assign\032\010a/read:0"
            value: "\n\003b:0\022\010b/Assign\032\010b/read:0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/PortAllocator.groovy

    interface PortAllocator {
        public static final int MIN_PRIVATE_PORT = 49152
        public static final int MAX_PRIVATE_PORT = 65535
    
        /**
         * Assign and reserve a port
         * @return the port assigned
         */
        int assignPort()
    
        /**
         * Release a previously assigned port
         * @param port
         */
        void releasePort(int port)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 10 12:13:40 UTC 2015
    - 996 bytes
    - Viewed (0)
  4. tensorflow/cc/tools/freeze_saved_model_test.cc

        } else {
          read_var = ops::Variable(scope.WithOpName("var"), {}, DataType::DT_FLOAT);
          Output assign = ops::Assign(scope.WithOpName("assign"), read_var, a);
          Output var_1 =
              ops::Variable(scope.WithOpName("var_1"), {}, DataType::DT_FLOAT);
          Output assign_1 = ops::Assign(scope.WithOpName("assign_1"), var_1, a);
        }
    
        Output c = ops::Mul(scope.WithOpName("c"), a, read_var);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/synth.go

    package report
    
    import (
    	"github.com/google/pprof/profile"
    )
    
    // synthCode assigns addresses to locations without an address.
    type synthCode struct {
    	next uint64
    	addr map[*profile.Location]uint64 // Synthesized address assigned to a location
    }
    
    func newSynthCode(mappings []*profile.Mapping) *synthCode {
    	// Find a larger address than any mapping.
    	s := &synthCode{next: 1}
    	for _, m := range mappings {
    		if s.next < m.Limit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 08 14:59:49 UTC 2021
    - 883 bytes
    - Viewed (0)
  6. tests/upsert_test.go

    		t.Errorf("user should be found and updated with assigned attrs")
    	}
    
    	DB.Where(&User{Name: "find or create"}).Find(&user7)
    	if user7.Name != "find or create" || user7.ID == 0 || user7.Age != 44 {
    		t.Errorf("user should be found and updated with assigned attrs")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  7. finisher_api.go

    		}
    
    		// initialize with attrs, conds
    		if len(db.Statement.assigns) > 0 {
    			result.assignInterfacesToValue(db.Statement.assigns...)
    		}
    
    		return tx.Create(dest)
    	} else if len(db.Statement.assigns) > 0 {
    		exprs := tx.Statement.BuildCondition(db.Statement.assigns[0], db.Statement.assigns[1:]...)
    		assigns := map[string]interface{}{}
    		for i := 0; i < len(exprs); i++ {
    			expr := exprs[i]
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

        if (!result.hasOneUse()) continue;
    
        TF::AssignVariableOp assign_op = FindAssignVariableOp(result);
        if (!assign_op) continue;
    
        AliasInfo& alias_info = resource_alias_info_map[assign_op.getResource()];
        // TODO(b/184420848): We may not need to skip aliasing for entire function
        // in case of multiple assigns.
        if (alias_info.output_index != kUnassigned) {
          LLVM_DEBUG(llvm::dbgs()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/test_resource_alias_analysis.cc

          }
        };
    
        // Assign a unique ID to each value seen in this function.
        func.walk([&](Operation* op) {
          // For all attached regions, assign ID to the region arguments.
          for (Region& region : op->getRegions()) {
            for (auto region_arg : TF::filter_resources(region.getArguments()))
              assign_id(region_arg);
          }
    
          // Assign ID for all results.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 4
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top