Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Abseil (0.13 sec)

  1. tensorflow/cc/experimental/base/public/runtime_builder.h

      if (!status->ok()) {
        return nullptr;
      }
      // We can't use std::make_unique here because of its interaction with a
      // private constructor: https://abseil.io/tips/134
      return std::unique_ptr<Runtime>(new Runtime(result));
    }
    
    }  // namespace cc
    }  // namespace experimental
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    arguments with types `tensor<?x?xi32>, tensor<?x?xi32>, tensor<?x?xi32>`.
    
    ```bash
    tf-to-stablehlo-translate <saved-model-path> --input-arg-shapes=1,12:1,12:1,12
    ```
    
    ### Dependencies
    
    * TensorFlow
    * MLIR
    * Abseil (absl)
    
    ## Python APIs
    
    
    ### `savedmodel_to_stablehlo`
    
    Converts a TensorFlow SavedModel into StableHLO bytecode.
    
    ```Python
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/experimental/public/saved_model_api.h

      }
    
      if (!status->ok()) {
        return nullptr;
      }
    
      // We can't use std::make_unique here because of its interaction with a
      // private constructor: https://abseil.io/tips/134
      return std::unique_ptr<SavedModelAPI>(new SavedModelAPI(saved_model));
    }
    
    inline ConcreteFunction* SavedModelAPI::GetConcreteFunction(
        const std::string& function_path, Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  4. RELEASE.md

        *   Added a 'experimental_payloads' field to tf.errors.OpError and its
            subclasses to support more detailed error reporting. This is inspired
            from Abseil Status payloads:
            https://github.com/abseil/abseil-cpp/blob/master/absl/status/status.h
    
    *   `tf.summary`:
    
        *   New `tf.summary.graph` allows manual write of TensorFlow graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top