Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 241 for set_type (0.41 sec)

  1. tensorflow/compiler/jit/xla_cluster_util.cc

        }
        return frame_id;
      };
    
      for (Edge const* edge : graph->edges()) {
        if (edge->dst()->IsEnter() || edge->src()->IsExit()) {
          const char* src_type = "pre-enter";
          const char* dst_type = "post-exit";
          int src = edge->src()->id();
          int dst = edge->dst()->id();
    
          if (edge->dst()->IsEnter()) {
            // Lift edges to an "Enter" node to the corresponding frame node.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/JvmTestSuitePlugin.java

            });
    
            variant.getOutgoing().artifact(
                target.getTestTask().flatMap(AbstractTestTask::getBinaryResultsDirectory),
                artifact -> artifact.setType(ArtifactTypeDefinition.DIRECTORY_TYPE)
            );
        }
    
        private TestSuiteType createNamedTestTypeAndVerifyUniqueness(Project project, TestSuite suite, String tt) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 21:08:13 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

      if (llvm::ArrayRef(return_types) == func_type.getResults()) return;
    
      auto updated_type =
          FunctionType::get(func.getContext(), func_type.getInputs(), return_types);
      func.setType(updated_type);
    }
    
    // TODO(jpienaar): Remove when recursive side-effect modeling is added.
    bool IsSideEffectFree(func::FuncOp func) {
      return !func.getBody()
                  .walk([&](Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/switch.go

    		s.done.Append(ir.NewBranchStmt(s.pos, ir.OGOTO, outerLabel))
    
    		var outer exprSwitch
    		outer.exprname = ir.NewUnaryExpr(s.pos, ir.OLEN, s.exprname)
    		outer.exprname.SetType(types.Types[types.TINT])
    
    		for _, run := range runs {
    			// Target label to jump to when we match this length.
    			label := typecheck.AutoLabel(".s")
    
    			// Search within this run of same-length strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/object.go

    	// 0 for all other objects (including objects in file scopes).
    	order() uint32
    
    	// color returns the object's color.
    	color() color
    
    	// setType sets the type of the object.
    	setType(Type)
    
    	// setOrder sets the order number of the object. It must be > 0.
    	setOrder(uint32)
    
    	// setColor sets the object's color. It must not be white.
    	setColor(color color)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier_test.go

    						IP:       "100.101.102.103",
    						Port:     3001,
    						Protocol: strings.ToLower(string(v1.ProtocolSCTP)),
    						SetType:  utilipset.HashIPPort,
    					},
    					{
    						IP:       "100.101.102.104",
    						Port:     3001,
    						Protocol: strings.ToLower(string(v1.ProtocolSCTP)),
    						SetType:  utilipset.HashIPPort,
    					},
    					{
    						IP:       "100.101.102.105",
    						Port:     3001,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

              block.getArgument(it.first->getValue()));
          op.erase();
        }
      }
      if (lifted_op_and_arg_idx.empty()) return success();
    
      // Update the function signature as well as its uses.
      target_func.setType(FunctionType::get(target_func.getContext(),
                                            block.getArgumentTypes(),
                                            func_type.getResults()));
    
      IRMapping mapping;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. src/go/types/object.go

    	// 0 for all other objects (including objects in file scopes).
    	order() uint32
    
    	// color returns the object's color.
    	color() color
    
    	// setType sets the type of the object.
    	setType(Type)
    
    	// setOrder sets the order number of the object. It must be > 0.
    	setOrder(uint32)
    
    	// setColor sets the object's color. It must not be white.
    	setColor(color color)
    
    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/mlir/lite/transforms/modify_io_nodes.cc

          auto current_type = quant::QuantizedType::getQuantizedElementType(
                                  quantize_output.getType())
                                  .getStorageType();
          if (current_type == input_type) {  // int8 == int8
            arg_type = quantize_output.getType();
            new_arg = block.addArgument(arg_type, loc);
            quantize_output.replaceAllUsesWith(new_arg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/assign.go

    			base.FatalfAt(l.Pos(), "assigning %v to %+v", r.Type, l)
    		}
    
    		res := ir.NewResultExpr(base.Pos, nil, types.BADWIDTH)
    		res.Index = int64(i)
    		res.SetType(r.Type)
    		res.SetTypecheck(1)
    
    		nn.Append(ir.NewAssignStmt(base.Pos, l, res))
    	}
    	return nn
    }
    
    // check assign expression list to
    // an expression list. called in
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top