Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,548 for _initialized (0.34 sec)

  1. tensorflow/compiler/mlir/op_or_arg_name_mapper.h

    };
    
    // OpOrArgNameMapper that returns, for operations or values not initialized
    // to a specific name, a name based on the location of the operation or
    // value.
    class OpOrArgLocNameMapper : public OpOrArgNameMapper {
     protected:
      std::string GetName(OpOrVal op_or_val) override;
    };
    
    // OpOrArgNameMapper that returns, for operations or values not initialized
    // to a specific name, a short name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  This function sets appropriate callback functions, initializes the 
     *  test output files, and calls the appropriate functions to list the 
     *  tests and run them.  If an output file name root has not been 
     *  specified using CU_set_output_filename(), a generic root will be 
     *  applied.  It is an error to call this function before the CUnit
     *  test registry has been initialized (check by assertion).
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/container/list/list.go

    	len  int     // current list length excluding (this) sentinel element
    }
    
    // Init initializes or clears list l.
    func (l *List) Init() *List {
    	l.root.next = &l.root
    	l.root.prev = &l.root
    	l.len = 0
    	return l
    }
    
    // New returns an initialized list.
    func New() *List { return new(List).Init() }
    
    // Len returns the number of elements of list l.
    // The complexity is O(1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.cc

      // Only the "tf.AssignVariableOp" patterns inside this initializer function
      // will be searched.
      FuncOp session_init_func_type_restore_op = GetInitializerFunction(
          module_op, /*initializer_type=*/kTfSavedModelInitializerRestoreType);
      if (!session_init_func_type_restore_op) {
        LOG(INFO) << "No session initializer function with type 'restore_op'. No "
                     "variables are saved to checkpoint.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:36:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  @see CU_get_registry
     *  @see CU_set_registry
     */
    
    CU_EXPORT CU_BOOL CU_registry_initialized(void);
    /**<
     *  Checks whether the test registry has been initialized.
     *
     *  @return  CU_TRUE if the registry has been initialized,
     *           CU_FALSE otherwise.
     *  @see CU_initialize_registry
     *  @see CU_cleanup_registry
     */
    
    CU_EXPORT 
    CU_pSuite CU_add_suite(const char *strName, 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

                new SimpleModelRuleDescriptor("initialize binary " + binaryPath),
                new BiAction<MutableModelNode, NativeBinarySpec>() {
                    @Override
                    public void execute(MutableModelNode mutableModelNode, NativeBinarySpec nativeBinarySpec) {
                        initialize(nativeBinarySpec, namingScheme, resolver, fileCollectionFactory, platform, buildType, flavor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util.cc

          arg.definition_stack_trace = variable.definition_stack_trace();
          if (variable.var() && variable.var()->is_initialized) {
            const Tensor* value = variable.var()->tensor();
            arg.type = value->dtype();
            arg.shape = value->shape();
            arg.initialized = true;
          } else {
            // The values of uninitialized variables are not passed as inputs, since
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/init.go

    package modcmd
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/modload"
    	"context"
    )
    
    var cmdInit = &base.Command{
    	UsageLine: "go mod init [module-path]",
    	Short:     "initialize new module in current directory",
    	Long: `
    Init initializes and writes a new go.mod file in the current directory, in
    effect creating a new module rooted at the current directory. The go.mod file
    must not already exist.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 15:51:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/README.md

    *   Call `tensorflow::port::InitMain` and parse any flags
    *   Initialize config objects (e.g. `PathConfig`, `LangConfig` from flags)
    *   Initialize a new `LangGenerator` from these config objects
    *   Call this generator to create/write `SourceCode` to a file
    
    In class `LangGenerator` in *lang_generator.cc*:
    
    *   Initialize a new `Controller` from the config objects
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

      if (!op->hasAttrOfType<StringAttr>(kSharedNameAttr)) return "";
      return op->getAttrOfType<StringAttr>(kSharedNameAttr).getValue();
    }
    
    // Checks if the HashTable is initialized. This function assumes that the
    // HashTable is initialized if it appears in the initializer since it can't
    // check the actual value.
    bool IsResourceInitialized(ModuleOp module_op, Operation* hash_table) {
      StringRef shared_name = GetSharedName(hash_table);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top