Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 381 for computations (0.26 sec)

  1. tensorflow/compiler/jit/device_compilation_profiler_test.cc

      // we've already reached the maximum number of ongoing compilations allowed.
      profiler->RegisterExecution(function);
      EXPECT_FALSE(
          profiler->ShouldCompileCluster(function, DeviceCompileMode::kAsync, 0));
    
      profiler->DecrementOngoingAsyncCompilations();
      // Should allow compilation since we've decremented the number of ongoing
      // compilations.
      EXPECT_TRUE(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 22 21:06:33 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

    import org.gradle.operations.execution.FilePropertyVisitor;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Map;
    
    /**
     * Represents the computation of capturing the before execution state and resolving the caching state for transforms.
     * <p>
     * Must occur as a child of {@link org.gradle.operations.execution.ExecuteWorkBuildOperationType}.
     *
     * @since 8.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Quantiles.java

    public final class Quantiles {
    
      /** Specifies the computation of a median (i.e. the 1st 2-quantile). */
      public static ScaleAndIndex median() {
        return scale(2).index(1);
      }
    
      /** Specifies the computation of quartiles (i.e. 4-quantiles). */
      public static Scale quartiles() {
        return scale(4);
      }
    
      /** Specifies the computation of percentiles (i.e. 100-quantiles). */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        // TODO(ycao): Support tensorlist-type output.
        out_desc.is_tensor_list = false;
      }
    
      // XLA computation always uses Tuple shape.
      *xla_output_shape = xla::ShapeUtil::MakeTupleShape(shapes);
      return absl::OkStatus();
    }
    
    // Creates a vector that maps from the parameters of the XLA computation to
    // their original argument positions.
    // MLIR-based TF-Compiler bridge doesn't have constant analysis yet, thus no
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/cache.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/internal/obj"
    	"sort"
    )
    
    // A Cache holds reusable compiler state.
    // It is intended to be re-used for multiple Func compilations.
    type Cache struct {
    	// Storage for low-numbered values and blocks.
    	values [2000]Value
    	blocks [200]Block
    	locs   [2000]Location
    
    	// Reusable stackAllocState.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

        const XlaCompiler::CompilationResult& result) {
      VLOG(2) << "Compiling to xla::PjRtLoadedExecutable.";
    
      TF_ASSIGN_OR_RETURN(auto executable,
                          client_->Compile(*result.computation,
                                           GetPjRtCompileOptions(options, result)));
    
      VLOG(2) << "Compiled PJRT executable " << executable->name()
              << " num_replicas " << executable->num_replicas()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/crypto/sha256/sha256block.go

    func blockGeneric(dig *digest, p []byte) {
    	var w [64]uint32
    	h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
    	for len(p) >= chunk {
    		// Can interlace the computation of w with the
    		// rounds below if needed for speed.
    		for i := 0; i < 16; i++ {
    			j := i * 4
    			w[i] = uint32(p[j])<<24 | uint32(p[j+1])<<16 | uint32(p[j+2])<<8 | uint32(p[j+3])
    		}
    		for i := 16; i < 64; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/get_compiler_ir.cc

          TF_ASSIGN_OR_RETURN(xla::ProgramShape program_shape,
                              result.computation->GetProgramShape());
          xla::HloModuleConfig config(program_shape);
          TF_ASSIGN_OR_RETURN(
              std::unique_ptr<xla::HloModule> new_module,
              xla::HloModule::CreateFromProto(result.computation->proto(), config));
    
          xla::HloPrintOptions opts;
          if (stage == IrExportStage::HLO_NO_METADATA) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/configgen.go

    type ConfigGenerator interface {
    	// BuildListeners returns the list of inbound/outbound listeners for the given proxy. This is the LDS output
    	// Internally, the computation will be optimized to ensure that listeners are computed only
    	// once and shared across multiple invocations of this function.
    	BuildListeners(node *model.Proxy, push *model.PushContext) []*listener.Listener
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

        FunctionDef *xla_fdef = fdl.add_function();
        TF_CHECK_OK(GraphToFunctionDef(*g, "f3", xla_fdef));
      }
      FunctionLibraryDefinition fld(OpRegistry::Global(), fdl);
    
      // Build the XLA computation graph.
      // "arg0" (T=DT_RESOURCE), "arg1" (T=DT_INT32)
      // "arg0", "arg1" -> "if" (If) -> "ret0", "ret1"
      // "arg0", "arg1" -> "while" (While) -> "ret2", "ret3"
      tensorflow::Scope s = tensorflow::Scope::NewRootScope();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top