Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 330 for computations (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeIdeaModelBuilder.java

                    .setTargetBytecodeVersion(targetBytecodeVersion)
                    .setJdk(DefaultInstalledJdk.current()));
        }
    
        // Simulates computation of the IdeaProject language level property in the IdeaPlugin
        private static IdeaLanguageLevel resolveRootLanguageLevel(IdeaProjectInternal ideaProjectExt, List<IsolatedIdeaModuleInternal> isolatedModules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/SupportedOptionsCollectingProcessor.java

    import java.util.Set;
    
    /**
     * Collects all registered processors' supported options.
     *
     * <p>This is a workaround for https://bugs.openjdk.java.net/browse/JDK-8162455, which
     * will be triggered a lot more during incremental compilations, and can fail builds
     * when combined with {@code -Werror}.
     *
     * <p>This processor needs to be added last to make sure that all other processors
     * have been {@linkplain Processor#init(ProcessingEnvironment) initialized} when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/riscv64.s

    // license that can be found in the LICENSE file.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    start:
    	// Unprivileged ISA
    
    	// 2.4: Integer Computational Instructions
    
    	ADDI	$2047, X5				// 9382f27f
    	ADDI	$-2048, X5				// 93820280
    	ADDI	$2048, X5				// 9382024093820240
    	ADDI	$-2049, X5				// 938202c09382f2bf
    	ADDI	$4094, X5				// 9382f27f9382f27f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compilation_profiler.cc

      }
    }
    
    // The number of times a lazy compilation must be requested for a specific
    // signature before  we attempt to compile it.
    constexpr int64_t kDefaultCompilationThreshold = 2;
    
    // Maximum number of ongoing compilations.
    constexpr int64_t kMaxNumOngoingCompilations = kNumAsyncDeviceCompilerThreads;
    
    }  // namespace
    
    DeviceCompilationProfiler::~DeviceCompilationProfiler() {
      mutex_lock lock(mu_);
      cluster_compile_stats_.clear();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Deferrable.java

                public T completeAndGet() {
                    return successfulResult;
                }
            };
        }
    
        /**
         * An invocation with no pre-computed result, requiring to do the expensive computation on {@link #completeAndGet()}.
         */
        static <T> Deferrable<T> deferred(Supplier<T> result) {
            return new Deferrable<T>() {
                private volatile T value;
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

    // TFL op interface for sparse operands.
    
    def TFL_SparseOp : OpInterface<"SparseOpInterface"> {
      let description = [{
        Interface for ops that support sparse computation.
      }];
    
      let methods = [
        InterfaceMethod<
          [{Returns the indices of sparse operands.}],
          "std::vector<int>", "GetSparseOperands", (ins)
        >,
        InterfaceMethod<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/test_matchers_test.cc

    }
    
    tensorflow::XlaCompilationResult CreateXlaComputationResult(
        const char* hlo_name) {
      auto result = tensorflow::XlaCompilationResult();
      xla::HloModuleProto hlo;
      hlo.set_name(hlo_name);
      result.computation = std::make_shared<xla::XlaComputation>(hlo);
      return result;
    }
    
    TEST(TestUtil, ComputationContainsOk) {
      constexpr char arbitrary_hlo[] = "arbitrary_hlo";
      auto result = CreateXlaComputationResult(arbitrary_hlo);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top