Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 456 for utiliza (0.12 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/ir/tfrt_fallback_util_test.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_util.h"
    
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.h"
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/package-info.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    /**
     * Utility methods and classes for I/O; for example input streams, output streams, readers, writers,
     * and files.
     *
     * <p>At the core of this package are the Source/Sink types: {@link ByteSource ByteSource}, {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 23 19:57:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/jwt/server.go

    func NewOrFail(t framework.TestContext, ns namespace.Instance) Server {
    	t.Helper()
    	s, err := New(t, ns)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return s
    }
    
    // Setup is a utility function for configuring a jwt Server.
    func Setup(server *Server, ns namespace.Getter) resource.SetupFn {
    	if ns == nil {
    		ns = namespace.NilGetter
    	}
    
    	return func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainRepositoryHandler.java

     * ordered collection of <code>JavaToolchainRepository</code> implementations.
     *
     * @since 7.6
     */
    @Incubating
    public interface JavaToolchainRepositoryHandler {
    
        /**
         * Utility method for creating a named {@link JavaToolchainRepository} based on
         * a configuration block.
         */
        void repository(String name, Action<? super JavaToolchainRepository> configureAction);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. tests/integration/pilot/README.md

    1. Ensure the code works on a range of supported OS types and versions.
    
    **Note: We currently use mock/simulated VMs for testing purposes. In the future, the testing might switch
    to utilize actual compute instances from different providers.**
    
    ## Overview
    
    Scenarios in which one might want to add a VM test in this doc:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

    constexpr char kLstmCellSimple[] = "LSTMCellSimple";
    constexpr char kLayerNormalizedLstmCellSimple[] =
        "LayerNormalizedLstmCellSimple";
    constexpr char kCoupleInputForgetGates[] = "CoupleInputForgetGates";
    
    // A utility class that enables the conversion of the LSTMCellSimple composite
    // op into a fused TFL LSTM op. The fused op is contained within a FuncOp
    // that also contains other supporting ops needed to construct the operands for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/diagnostics/DaemonLogFileUtils.java

    import java.io.File;
    import java.io.IOException;
    import java.nio.charset.StandardCharsets;
    import java.nio.file.Files;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    /**
     * Extracted utility methods to parse daemon logs.
     */
    final class DaemonLogFileUtils {
        private DaemonLogFileUtils() {}
    
        /**
         * Reads the last {@code tailSize} lines of the daemon log file and returns them as a single string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/pjrt_tensor_buffer.h

    ==============================================================================*/
    
    #ifndef TENSORFLOW_COMPILER_JIT_PJRT_TENSOR_BUFFER_H_
    #define TENSORFLOW_COMPILER_JIT_PJRT_TENSOR_BUFFER_H_
    
    #include <memory>
    #include <utility>
    
    #include "xla/pjrt/pjrt_client.h"
    #include "tensorflow/core/framework/allocation_description.pb.h"
    #include "tensorflow/core/framework/tensor.h"
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/manipulate_model_attr.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/manipulate_model_attr.h"
    
    #include <string>
    #include <utility>
    
    #include "llvm/ADT/StringExtras.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    
    namespace mlir {
    namespace quant {
    
    constexpr StringRef kTfEntryFunctionAttr = "tf.entry_function";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:13:26 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test_helper.h

    #ifndef TENSORFLOW_COMPILER_JIT_MARK_FOR_COMPILATION_PASS_TEST_HELPER_H_
    #define TENSORFLOW_COMPILER_JIT_MARK_FOR_COMPILATION_PASS_TEST_HELPER_H_
    
    #include <memory>
    #include <string>
    #include <utility>
    
    #include "tensorflow/compiler/jit/mark_for_compilation_pass.h"
    
    namespace tensorflow {
    class MarkForCompilationPassTestHelper {
     public:
      struct Options {
        bool enable_global_jit;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 19:51:48 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top