Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 238 for movbe (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

          result.replaceAllUsesWith(transposed_res);
          transposed_res.setOperand(0, result);
        }
      });
    }
    
    // Move Transpose operations that permute `op` results before the `op`.
    void MoveTransposeBefore(Operation* op, SmallVector<Operation*, 8>* work_list) {
      // TODO(ezhulenev): Move transpose across layout sensitive operations.
      if (!op->hasTrait<OpTrait::TF::LayoutAgnostic>()) return;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/value.h

        CAPSULE = 10,
      };
      TaggedValue() : type_(NONE), data_() {}
    
      /// Move assignment operator.
      TaggedValue& operator=(TaggedValue&& v) {
        destroy();
        MoveIntoUnion(std::move(v));
        return *this;
      }
      /// Move constructor.
      TaggedValue(TaggedValue&& v) : type_(NONE) { MoveIntoUnion(std::move(v)); }
      /// Copy constructor.
      TaggedValue(const TaggedValue& v) : type_(NONE) { CopyIntoUnion(v); }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. test/typeparam/list2.go

    	l2.Remove(e2)
    	checkListPointers(l2, []*(_Element[int]){e1, e3, e4})
    
    	l2.MoveToFront(e3) // move from middle
    	checkListPointers(l2, []*(_Element[int]){e3, e1, e4})
    
    	l2.MoveToFront(e1)
    	l2.MoveToBack(e3) // move from middle
    	checkListPointers(l2, []*(_Element[int]){e1, e4, e3})
    
    	l2.MoveToFront(e3) // move from back
    	checkListPointers(l2, []*(_Element[int]){e3, e1, e4})
    	l2.MoveToFront(e3) // should be no-op
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_launch_util.cc

                std::make_unique<xla::PjRtStreamExecutorBuffer>(
                    device_shape, std::move(device_buffer), pjrt_client,
                    pjrt_device,
                    pjrt_device->default_memory_space().value_or(nullptr));
            owned_args->push_back(std::move(pjrt_buffer));
            args->push_back(owned_args->back().get());
          }
        } else {
          if (av_tensor->GetBuffer() == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/kernels/xla_ops.cc

        DCHECK(insert_successful);
        (void)insert_successful;
        return key;
      }
    
      ExecutableClosure<ExecutableType, ClientType> Consume(const KeyT& key) {
        mutex_lock l(mutex_);
        auto it = closures_.find(key);
        DCHECK(it != closures_.end());
        ExecutableClosure<ExecutableType, ClientType> value = std::move(it->second);
        closures_.erase(it);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

         *
         * @param x the index (1-based) of the column to move to
         * @return this Ansi instance
         */
        public Ansi cursorToColumn(final int x) {
            return appendEscapeSequence('G', Math.max(1, x));
        }
    
        /**
         * Moves the cursor up. If the parameter y is negative it moves the cursor down.
         *
         * @param y the number of lines to move up
         * @return this Ansi instance
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // Small moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
    (Move [2] {t} dst src mem) && t.Alignment()%2 == 0 =>
    	(MOVHstore dst (MOVHload src mem) mem)
    (Move [2] dst src mem) =>
    	(MOVBstore [1] dst (MOVBload [1] src mem)
    		(MOVBstore dst (MOVBload src mem) mem))
    (Move [4] {t} dst src mem) && t.Alignment()%4 == 0 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/compile.cc

        arg_layout_ptrs[i] = &arg_layouts[i];
      }
      xla::CompileOnlyClient::AotXlaComputationInstance instance;
      instance.computation = &computation;
      instance.argument_layouts = std::move(arg_layout_ptrs);
      xla::Shape result_shape(pshape->result());
      instance.result_layout = &result_shape;
      absl::StatusOr<std::vector<std::unique_ptr<xla::AotCompilationResult>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compiler.h

            persistor,
        std::unique_ptr<DeviceCompilerClient<ExecutableType, ClientType>>
            compiler_client)
        : persistor_(std::move(persistor)),
          compiler_client_(std::move(compiler_client)) {
      cache_ = std::make_unique<DeviceCompilationCache<ExecutableType>>();
      async_compiler_threads_ = std::make_unique<tensorflow::thread::ThreadPool>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

      if (FindCompilePredecessor(func_op, preprocess_op)) return success();
    
      // Find the TPUCompile successor we want to move upwards. We're moving the
      // compile, not the preprocess_op, since it's easier to move (because it
      // doesn't typically have any dependencies)
      Operation* tpu_compile_successor =
          FindCompileSuccessor(func_op, preprocess_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top