Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 115 of 115 for td_library (0.19 sec)

  1. tensorflow/c/c_api.cc

      }
      TF_Run_Helper(s->session, handle, nullptr, input_pairs, output_names,
                    c_outputs, target_oper_names, nullptr, status);
    }
    
    TF_Library* TF_LoadLibrary(const char* library_filename, TF_Status* status) {
      TF_Library* lib_handle = new TF_Library;
      status->status = tensorflow::LoadDynamicLibrary(
          library_filename, &lib_handle->lib_handle, &lib_handle->op_list.data,
          &lib_handle->op_list.length);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/security.go

    	"-x",
    }
    
    var invalidLinkerFlags = []*lazyregexp.Regexp{
    	// On macOS this means the linker loads and executes the next argument.
    	// Have to exclude separately because -lfoo is allowed in general.
    	re(`-lto_library`),
    }
    
    var validLinkerFlags = []*lazyregexp.Regexp{
    	re(`-F([^@\-].*)`),
    	re(`-l([^@\-].*)`),
    	re(`-L([^@\-].*)`),
    	re(`-O`),
    	re(`-O([^@\-].*)`),
    	re(`-f(no-)?(pic|PIC|pie|PIE)`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/tfcompile_test.cc

    #include "xla/test.h"
    #include "tensorflow/core/platform/regexp.h"
    #include "tensorflow/core/platform/test.h"
    
    // The header files for the tests using mlir_bridge have the _mlir_bridge suffix
    // inherited from the tf_library target names.
    #if defined(ENABLE_MLIR_BRIDGE_TEST)
    #include "tensorflow/compiler/aot/tests/test_graph_tfadd_mlir_bridge.h"
    #include "tensorflow/compiler/aot/tests/test_graph_tfadd_with_ckpt_mlir_bridge.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_test.cc

      {
        // Load the library.
        TF_Status* status = TF_NewStatus();
        string lib_path = tensorflow::GetDataDependencyFilepath(
            tensorflow::io::JoinPath("tensorflow", "c", "test_op1.so"));
        TF_Library* lib = TF_LoadLibrary(lib_path.c_str(), status);
        TF_Code code = TF_GetCode(status);
        string status_msg(TF_Message(status));
        TF_DeleteStatus(status);
        ASSERT_EQ(TF_OK, code) << status_msg;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    .remove(from);this.deleteAllCoveredNodes_(this.dynamics_,to,to+removedNode.value.size);this.dynamics_.insert(to,removedNode.value);};CodeMap.prototype.deleteCode=function(start){const removedNode=this.dynamics_.remove(start);};CodeMap.prototype.addLibrary=function(start,codeEntry){this.markPages_(start,start+codeEntry.size);this.libraries_.insert(start,codeEntry);};CodeMap.prototype.addStaticCode=function(start,codeEntry){this.statics_.insert(start,codeEntry);};CodeMap.prototype.markPages_=funct...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top