Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 164 for name_$ (2.5 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.h

     private:
      FlatTensorFunction(const std::string& name,
                         std::vector<ImmediateTensorHandlePtr> captures,
                         ImmediateExecutionContext* ctx);
    
      FlatTensorFunction(const FlatTensorFunction&) = delete;
      FlatTensorFunction& operator=(const FlatTensorFunction&) = delete;
    
      // Name of the FunctionDef corresponding to this TFConcreteFunction
      std::string name_;
      std::vector<ImmediateTensorHandlePtr> captures_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 21:03:41 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/debug/debug.cc

    class ReproducerStream : public mlir::ReproducerStream {
     public:
      ReproducerStream(std::string name, std::unique_ptr<llvm::raw_ostream> os)
          : name_(std::move(name)), os_(std::move(os)) {}
    
      llvm::StringRef description() override { return name_; }
    
      llvm::raw_ostream& os() override { return *os_; }
    
     private:
      std::string name_;
      std::unique_ptr<llvm::raw_ostream> os_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/variable_info.cc

    #include "tensorflow/core/lib/core/refcount.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    
    VariableInfo::VariableInfo(
        int index, absl::string_view name, Var* var,
        const std::optional<ManagedStackTrace>& definition_stack_trace)
        : index_(index),
          name_(name),
          var_(var),
          definition_stack_trace_(definition_stack_trace) {}
    
    VariableInfo::VariableInfo(VariableInfo&& other)
        : index_(other.index_),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/variable.h

     private:
      Variable(ImmediateExecutionContext* ctx, DataType dtype, TensorShape shape,
               absl::optional<std::string> name, ImmediateTensorHandlePtr handle);
      Variable(const Variable& variable) = delete;
      Variable& operator=(const Variable&) = delete;
    
      std::string name_;
      DataType dtype_;
      TensorShape shape_;
    
      // ctx_ must outlive Variable.
      ImmediateExecutionContext* ctx_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/build.go

    	}
    
    	return false
    }
    
    // goodOSArchFile returns false if the name contains a $GOOS or $GOARCH
    // suffix which does not match the current system.
    // The recognized name formats are:
    //
    //	name_$(GOOS).*
    //	name_$(GOARCH).*
    //	name_$(GOOS)_$(GOARCH).*
    //	name_$(GOOS)_test.*
    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor.cc

          destroy_platform_fns_(destroy_platform_fns),
          device_fns_(std::move(device_fns)),
          stream_executor_(std::move(stream_executor)),
          timer_fns_(std::move(timer_fns)),
          name_(platform.name) {}
    
    CPlatform::~CPlatform() {
      executor_cache_.DestroyAllExecutors();
      platform_fns_.destroy_device_fns(&platform_, &device_fns_);
      platform_fns_.destroy_stream_executor(&platform_, &stream_executor_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/object.h

    // pointer.
    template <class Fn, typename TReturn, typename... TFuncArgs>
    class CallableWrapper {
     private:
      Fn functor_;
      const char* name_;
    
     public:
      explicit CallableWrapper(Fn fn, const char* name)
          : functor_(fn), name_(name) {}
    
      // Entry point of the Adaptor functor. Note args, and kwargs are attempted
      // to be moved.
      tensorflow::StatusOr<TaggedValue> operator()(TaggedValue args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api.cc

     public:
      CustomDeviceAPI(TFE_Context* context, TFE_CustomDevice device, void* info,
                      string name)
          : context_(context), device_(device), info_(info), name_(name) {}
    
      ~CustomDeviceAPI() override { device_.delete_device(info_); }
    
      const string& name() override { return name_; }
    
      tensorflow::Status CopyTensorToDevice(
          ImmediateExecutionTensorHandle* handle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  9. src/go/build/build.go

    //	name_$(GOOS)_test.*
    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    // if GOOS=android, then files with GOOS=linux are also matched.
    // if GOOS=illumos, then files with GOOS=solaris are also matched.
    // if GOOS=ios, then files with GOOS=darwin are also matched.
    func (ctxt *Context) goodOSArchFile(name string, allTags map[string]bool) bool {
    	name, _, _ = strings.Cut(name, ".")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    For example, `com.google.code.gson:gson:2.8.9` that has the module name `com.google.gson`.
    
    Others, like `org.apache.commons:commons-lang3:3.10`, may not offer a full module descriptor but will at least contain an `Automatic-Module-Name` entry in their manifest file to define the module's name (`org.apache.commons.lang3` in the example).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top