Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 229 for entry_point (0.18 sec)

  1. tensorflow/compiler/mlir/lite/transforms/trim_functions_tf.cc

          // always a main. This is strictly not required for TFlite. We need to
          // remove that restriction once we have support to attribute the main
          // tensorflow function in MLIR TF import using an entry_point attr.
          if (!llvm::is_contained(trim_funcs_allowlist_, "main") &&
              func.getName() == trim_funcs_allowlist_[0]) {
            func.setName(StringAttr::get(func.getContext(), "main"));
          }
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultDynamicCallContextTrackerTest.groovy

            when:
            def entryPoint1 = new Object()
            def entryPoint2 = new Object()
            tracker.enterDynamicCall(entryPoint1)
            tracker.enterDynamicCall(entryPoint2)
            tracker.leaveDynamicCall(entryPoint2)
            tracker.leaveDynamicCall(entryPoint1)
    
            then:
            log == ["enter", entryPoint1, "enter", entryPoint2, "leave", entryPoint2, "leave", entryPoint1]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 11:11:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. dockerscripts/docker-entrypoint.sh

    Harshavardhana <******@****.***> 1699046298 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 675 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