Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for content_es (0.09 sec)

  1. tensorflow/compiler/aot/embedded_protocol_buffers.h

        // `expression`.  It must be visible wherever `expression` is emitted.
        string variable_decl;
      };
    
      // Each cpp_shim corresponds to one embedded protocol buffer.
      std::vector<CPPShim> cpp_shims;
    
      // The contents of the object (".o") file the protocol buffers are embbed in.
      // This needs to be linked in to any program that wants to execute any of the
      // expressions in `cpp_shims`.
      string object_file_data;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. ci/official/envs/macos_x86_cross_compile

    TFCI_MACOS_CROSS_COMPILE_ENABLE=1
    TFCI_MACOS_CROSS_COMPILE_SDK_DEST="tensorflow/tools/toolchains/cross_compile/cc/MacOSX.sdk"
    TFCI_MACOS_CROSS_COMPILE_SDK_SOURCE="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 23:38:12 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/parallel_execute_util.h

    // can be used to canonicalize IR, so there is always one `ParallelExecute`.
    tf_device::ParallelExecuteOp BuildParallelExecuteOp(
        tf_device::ClusterFuncOp cluster_func, OpBuilder* builder);
    
    // Unwrap `parallel_execute`'s contents if it only has one child.
    LogicalResult RemoveSingletonParallelExecuteOp(
        tf_device::ParallelExecuteOp parallel_execute, OpBuilder* builder);
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 13 03:57:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. .github/workflows/arm-ci.yml

    # limitations under the License.
    # ==============================================================================
    
    name: ARM CI
    
    on:
      push:
        branches:
          - master
          - r2.**
    permissions:
      contents: read
    
    jobs:
      build:
        # Don't do this in forks, and if labeled, only for 'kokoro:force-run'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compilation_cache.h

    std::optional<typename DeviceCompilationCache<ExecutableType>::Value>
    DeviceCompilationCache<ExecutableType>::Lookup(const Key& key) const {
      // The outer lock protects the existence of the cache entry. It does not
      // protect the contents of the cache entry.
      Entry* entry;
      {
        mutex_lock lock(compile_cache_mu_);
        // Find cache entry.
        auto it = cache_.find(key);
        if (it == cache_.cend()) {
          return std::nullopt;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/include_variables_in_init_v1.py

    import tensorflow.compat.v1 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    
    # Verify that the tf.versions attribute exists. It is difficult to enforce
    # contents, since the version numbers change over time. The conversion logic
    # itself is verified in the common graphdef converter, so here just assert
    # it is being invoked.
    # CHECK: module
    # CHECK-SAME: tf.versions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_policy.h

      // errors, the fallback path should be used whenever possible.
      kEnabledAfterGraphAnalysis,
    };
    
    // Analyzes the user requested policy as well as the contents of the graph and
    // returns true when the MLIR Bridge should be run.
    //
    // If the user explicitly requests the bridge be enabled or disabled, this
    // function will respect the request. If the user does not explicitly request
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          describes model parameters. `flags_proto` describes conversion
          parameters (see relevant .protos for more information). Returns a string
          representing the contents of the converted model. When extended_return
          flag is set to true returns a dictionary that contains string representation
          of the converted model and some statistics like arithmetic ops count.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

      const std::string src_file_path =
          absl::StrCat(testing::TempDir(), "/tmp_file");
    
      {
        std::ofstream ofs(src_file_path);
        ofs << "test_string";
      }
    
      // Test that the contents match.
      const absl::StatusOr<std::string> read_status =
          ReadFileToString(src_file_path);
      ASSERT_THAT(read_status, IsOk());
      EXPECT_THAT(*read_status, Eq("test_string"));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      tensorflow::tstring* output_value =
          static_cast<tensorflow::tstring*>(TF_TensorData(result));
      std::string file_contents(*output_value);
      EXPECT_NE(file_contents.find("TEST ASSET FILE CONTENTS"), std::string::npos);
    
      TF_DeleteTensor(result);
      TFE_DeleteTensorHandle(read_file_fn_outputs[0]);
      TFE_DeleteOp(read_file_op);
      TF_DeleteSavedModel(saved_model);
      TF_DeleteStatus(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top