Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for entry_point (0.48 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestStackTraceFilter.java

    package org.gradle.api.tasks.testing.logging;
    
    /**
     * Stack trace filters for test logging. Multiple filters can be combined.
     */
    public enum TestStackTraceFilter {
        // ordered by how much they filter
        ENTRY_POINT, TRUNCATE, GROOVY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 857 bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/flags.cc

           "http://clang.llvm.org/docs/CrossCompilation.html#cpu-fpu-abi"},
          {"target_features", &flags->target_features,
           "Target features, e.g. +avx2, +neon, etc."},
          {"entry_point", &flags->entry_point,
           "Name of the generated function.  If multiple generated object files "
           "will be linked into the same binary, each will need a unique entry "
           "point."},
          {"cpp_class", &flags->cpp_class,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/flags.h

      string graph;
      string debug_info;
      string debug_info_path_begin_marker;
      string config;
      bool dump_fetch_nodes = false;
      string target_triple;
      string target_cpu;
      string target_features;
      string entry_point;
      string cpp_class;
      string out_function_object;
      string out_metadata_object;
      string out_header;
      string out_session_module;
      string mlir_components;
      bool experimental_quantize = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/compile.h

    struct CompileResult {
      // Contains object file and meta-info.
      std::unique_ptr<xla::cpu::CpuAotCompilationResult> aot;
      xla::ProgramShapeProto program_shape;  // Static shape of args and results.
      string entry_point;                    // Name of generated function.
      int pointer_size = 0;                  // Size of a pointer in bytes.
    };
    
    // CompileGraph compiles the graph_def into an object file containing a function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tfcompile_main.cc

    #ifndef __s390x__
      flags.target_triple = "x86_64-pc-linux";
    #endif
      flags.out_function_object = "out_model.o";
      flags.out_metadata_object = "out_helper.o";
      flags.out_header = "out.h";
      flags.entry_point = "entry";
      flags.debug_info_path_begin_marker = "";
    
      // Note that tfcompile.bzl's tf_library macro sets fast math flags as that is
      // generally the preferred case.
      std::vector<tensorflow::Flag> flag_list;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatter.java

            return new AndSpec<StackTraceElement>(filters);
        }
    
        private Spec<StackTraceElement> createFilter(TestDescriptor descriptor, TestStackTraceFilter filterType) {
            switch (filterType) {
                case ENTRY_POINT:
                    return new ClassMethodNameStackTraceSpec(descriptor.getClassName(), descriptor.getName());
                case TRUNCATE:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top