Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for os_ (0.02 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

      }
    }
    
    void PrintOpStatsPass::PrintSummary() {
      *os_ << "Summary on the non-converted ops:\n";
      *os_ << "---------------------------------\n";
      SmallVector<StringRef, 64> sorted_op(op_with_dialect_count_.keys());
      SmallVector<StringRef, 64> sorted_dialect(dialect_count_.keys());
      llvm::sort(sorted_op);
      llvm::sort(sorted_dialect);
    
      *os_ << " * Accepted dialects: ";
      int num_dialect = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/print.cc

      void runOnOperation() override;
    
     private:
      llvm::sys::SmartMutex<true> mutex_;
      raw_ostream* os_;
    };
    
    PrintPass::PrintPass(raw_ostream* os) {
      if (os) {
        os_ = os;
      } else {
        os_ = &llvm::errs();
      }
    }
    
    PrintPass::PrintPass(const PrintPass& other) : PrintPass(other.os_) {}
    
    void PrintPass::runOnOperation() {
      llvm::sys::SmartScopedLock<true> instrumentationLock(mutex_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 23:15:17 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/debug/debug.cc

     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_;
    };
    
    // Returns a function that builds a reproducer stream, or nullptr if the MLIR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.10.md

    external process, we can now use the kubernetes Secrets capability to inject the OS_* variables. This way we can specify the cloud configuration as a configmap, and specify secrets for the userid/password information. The configmap is mounted as a file, and the secrets are made available as environment variables. The external controller itself runs as a pod/daemonset. For backward compatibility, we preload all the OS_* variables, and if anything is in the config file, then that overrides the environment...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top