Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for entry_point (0.47 sec)

  1. tensorflow/compiler/aot/compile.cc

                               aot_or.status().message());
      }
      compile_result->aot =
          xla::unique_ptr_down_cast<xla::cpu::CpuAotCompilationResult>(
              std::move(aot_or.value().back()));
      compile_result->entry_point = aot_opts.entry_point_name();
      compile_result->pointer_size =
          xla::CompileOnlyClient::PointerSizeForTriple(aot_opts.triple());
      return absl::OkStatus();
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tfcompile.bzl

        flags = [
            "--graph=" + ctx.file.tfcompile_graph.path,
            "--config=" + ctx.file.tfcompile_config.path,
            "--entry_point=" + ctx.attr.entry_point,
            "--cpp_class=" + ctx.attr.cpp_class,
            "--target_triple=" + ctx.attr.target_triple,
        ] + cpu_flags + output_flags + ctx.attr.extra_flags + dfsan_flags
    
        post_command = ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

        def "also filters stack traces of causes"() {
            testLogging.getShowCauses() >> true
            testLogging.getShowStackTraces() >> true
            testLogging.getStackTraceFilters() >> EnumSet.of(TestStackTraceFilter.ENTRY_POINT)
    
            def cause = new RuntimeException("oops")
            cause.stackTrace = createGroovyTrace()
    
            def exception = new Exception("ouch", cause)
            exception.stackTrace = createGroovyTrace()[1..-1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen_test_h.golden

    #include "tensorflow/core/platform/types.h"
    
    namespace Eigen { struct ThreadPoolDevice; }
    namespace xla { class ExecutableRunOptions; }
    
    // (Implementation detail) Entry point to the function in the object file.
    extern "C" void entry_point(
        void* result, const ::xla::ExecutableRunOptions* run_options,
        const void** args, void** temps, XlaCustomCallStatus* status,
        int64_t* profile_counters);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/codegen.cc

          {"{{CLASS}}", opts.class_name},
          {"{{DECLS_FROM_OBJ_FILE}}",
           absl::StrJoin(metadata_result.header_variable_decls, "\n")},
          {"{{ENTRY}}", compile_result.entry_point},
          {"{{HLO_PROFILE_PRINTER_DATA_SHIM_EXPRESSION}}",
           metadata_result.hlo_profile_printer_data_access_shim},
          {"{{INCLUDE_XLA_DATA_PROTO}}", include_xla_data_proto},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

     * by subclasses as they define our entry point behaviour, but they are protected to enable
     * testing as it's difficult to test something that will call System.exit().
     */
    public abstract class EntryPoint {
        private final PrintStream originalStdErr = System.err;
    
        /**
         * Unless the createCompleter() method is overridden, the JVM will exit before returning from this method.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/rename_entrypoint_to_main.cc

            if (!sym_attr) break;
            entrypoints.erase(sym_attr.getValue());
          }
        }
    
        if (entrypoints.empty()) {
          return fail(module, "No entrypoints found");
        }
        if (entrypoints.size() == 1) {
          auto entrypoint = entrypoints.begin()->second;
          Builder builder(entrypoint);
          entrypoint.setName(builder.getStringAttr("main"));
          return;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
            2.times {
                fails 'entryPoint', '-PentryPoint.broken', '--continue'
                result.assertTasksExecutedInOrder ':entryPoint', ':finalizerDepDep', ':finalizerDep'
            }
            2.times {
                fails 'entryPoint', '-PfinalizerDepDep.broken'
                result.assertTasksExecutedInOrder ':entryPoint', ':finalizerDepDep'
            }
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultDynamicCallProblemReportingTest.kt

        @Test
        fun `tracks unreported problems in nested dynamic calls`() {
            val reporting = DefaultDynamicCallProblemReporting()
            val entryPoint1 = Any()
            val entryPoint2 = Any()
            val key1 = Any()
            val key2 = Any()
    
            reporting.enterDynamicCall(entryPoint1)
            assertTrue(reporting.unreportedProblemInCurrentCall(key1))
            assertFalse(reporting.unreportedProblemInCurrentCall(key1))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

         * The [entryPoint] is stored and checked in [leaveDynamicCall] later.
         */
        fun enterDynamicCall(entryPoint: Any)
    
        /**
         * End tracking a dynamic call.
         * The [entryPoint] should match the one passed to [enterDynamicCall].
         */
        fun leaveDynamicCall(entryPoint: Any)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top