Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for newop (0.09 sec)

  1. pkg/controller/job/indexed_job_utils.go

    		}
    	}
    	for i < len(oi) && j < len(newOi) {
    		if oi[i].First < newOi[j].First {
    			appendOrMergeWithLastInterval(oi[i])
    			i++
    		} else {
    			appendOrMergeWithLastInterval(newOi[j])
    			j++
    		}
    	}
    	for i < len(oi) {
    		appendOrMergeWithLastInterval(oi[i])
    		i++
    	}
    	for j < len(newOi) {
    		appendOrMergeWithLastInterval(newOi[j])
    		j++
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/replicate_tensor_list_init_ops_pass.cc

      for (auto& use : tensor_list.getUses()) {
        uses.emplace_back(&use);
      }
      OpBuilder builder(tensor_list_op.getOperation());
      for (OpOperand* operand : uses) {
        auto new_op = builder.clone(*tensor_list_op.getOperation());
        operand->set(new_op->getResult(0));
      }
    }
    
    // This transformation pass replicates TensorList initialization ops.
    class ReplicateTensorListInitOps
        : public impl::ReplicateTensorListInitOpsPassBase<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 22 17:28:34 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

      Operation* new_op = rewriter.create(new_state);
      if (materialize_derived_attrs_) {
        for (const auto& attr : derived_attrs) {
          // Add or update the derived attribute with the value. Skip the fixed
          // element type attributes, in case they are present in the NodeDef.
          if (!fixed_elt_type_attrs_.contains(attr.first())) {
            new_op->setAttr(attr.first(), attr.second);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

                                            new_op->getResult(0), dump_attributes);
    
          if (debugger_type_ == DebuggerConfig::DEBUGGER_TYPE_FLOAT_PER_LAYER) {
            // Swap all uses between call_op and ref_call_op, except for the
            // particular use that owns DumpTensor.
            rewriter.replaceUsesWithIf(
                op.getResult(0), new_op->getResult(0), [](OpOperand &use) -> bool {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. test/fixedbugs/issue4326.dir/p2.go

    package p2
    
    import "./p1"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 07 14:59:19 UTC 2012
    - 59 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/passes/decompose.cc

                  op->getLoc(), cast<TypedAttr>(attribute));
            }
            new_operands.push_back(attr_cst);
          }
        }
    
        // Create the TFR call op
        auto new_op = builder.create<CallOp>(
            op->getLoc(), compose_func_type.getResults(),
            SymbolRefAttr::get(builder.getContext(), compose_func.getName()),
            new_operands);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/runtime/rt0_js_wasm.s

    	Call wasm_pc_f_loop(SB)
    
    	Return
    
    // wasm_export_getsp gets called from JavaScript to retrieve the SP.
    TEXT wasm_export_getsp(SB),NOSPLIT,$0
    	Get SP
    	Return
    
    TEXT runtime·pause(SB), NOSPLIT, $0-8
    	MOVD newsp+0(FP), SP
    	I32Const $1
    	Set PAUSE
    	RETUNWIND
    
    TEXT runtime·exit(SB), NOSPLIT, $0-4
    	I32Const $0
    	Call runtime·wasmExit(SB)
    	I32Const $1
    	Set PAUSE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:28:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    					crHash := strings.Join([]string{newIOP.Name, newIOP.Namespace, string(component), host}, "-")
    					cache.RemoveCache(crHash)
    				}
    			}
    
    			if oldIOP.GetDeletionTimestamp() != newIOP.GetDeletionTimestamp() {
    				metrics.IncrementReconcileRequest("update_deletion_timestamp")
    				return true
    			}
    
    			if oldIOP.GetGeneration() != newIOP.GetGeneration() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform.cc

        builder->setInsertionPoint(op);
        Operation* new_op = builder->create(state);
    
        // Insert quantize ops for every outputs and rewrite.
        for (int i = 0; i < op->getNumResults(); ++i) {
          auto result = op->getResult(i);
          auto result_type = result.getType();
    
          Value new_result = new_op->getResult(i);
          if (IsQI8Type(result_type) || IsQUI8Type(result_type)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

        if (!caller_func) return failure();
    
        builder.setInsertionPoint(call_op);
        for (auto [lifted_op, arg_idx] : lifted_op_and_arg_idx) {
          auto new_op = builder.clone(*lifted_op, mapping);
          call_op->insertOperands(arg_idx, new_op->getResult(0));
        }
    
        // Try to lift recursively until the main function.
        if (failed(LiftHashTableOpsToArguments(module_op, caller_func))) {
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top