Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for new_state (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

            var reportFile: File?
            modifyState {
                val (newState, outputFile) = commitReportTo(outputDirectory, buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
                reportFile = outputFile
                newState
            }
            return reportFile
        }
    
        private
        inline fun modifyState(f: State.() -> State) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	// other values as these are modified.
    	newState := baseState
    	if updating {
    		newState = blockLocs[b.ID].startState
    	}
    
    	for it := newState.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		thisSlot := d.(*liveSlot)
    		x := thisSlot.VarLoc
    		x0 := x // initial value in newState
    
    		// Intersect this slot with the slot in all the predecessors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          //   [H, W, ..., filter_in_depth, G, out_depth / G].
          auto new_shape = llvm::to_vector<6>(filter_shape);
          new_shape.back() = feature_group_count;
          new_shape.push_back(filter_shape.back() / feature_group_count);
          Type filter_element_ty = filter_ty.getElementType();
          auto ty =
              tensorflow::GetTypeFromTFTensorShape(new_shape, filter_element_ty);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          rewriter.replaceOp(op, {input});
          return success();
        }
    
        RankedTensorType shape_type =
            tensorflow::GetTypeFromTFTensorShape({-1}, rewriter.getIntegerType(32));
        auto new_shape = rewriter.create<TF::ShapeOp>(loc, shape_type, input);
        SmallVector<int64_t, 8> output_shape(/*Size=*/1, op.getNumElements());
        for (const auto &dim : dense_elem_attr.getValues<APInt>())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          SmallVector<int64_t> new_shape(shape.begin(), shape.end());
          // If dimension of the input type is dynamic. Update the
          // bounds of the dim with the new type if needed.
          for (int i = 0; i < input_ty.getShape().size(); i++) {
            if (hlo::isDynamicDimSize(input_ty.getShape()[i])) {
              new_bounds[i] = new_shape[i];
              new_shape[i] = ShapedType::kDynamic;
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    tensor.  The `input_indices` are recomputed based on the requested `new_shape`.
    
    If one component of `new_shape` is the special value -1, the size of that
    dimension is computed so that the total dense size remains constant.  At
    most one component of `new_shape` can be -1.  The number of dense elements
    implied by `new_shape` must be the same as the number of dense elements
    originally implied by `input_shape`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top