Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LogSoftmax (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: return %[[RESULT]]
      %0 = "tf.LogSoftmax"(%arg0) : (tensor<2x3xf32>) -> tensor<2x3xf32>
      func.return %0: tensor<2x3xf32>
    }
    
    // CHECK-LABEL: func @unranked_logsoftmax
    func.func @unranked_logsoftmax(%arg0: tensor<*xf32>) -> tensor<*xf32> {
      // CHECK-NOT: "tf.LogSoftmax"
      %0 = "tf.LogSoftmax"(%arg0) : (tensor<*xf32>) -> tensor<*xf32>
      func.return %0: tensor<*xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

              concat_dim);
          result = concat_op.getResult();
        }
    
        rewriter.replaceOp(op, result);
        return success();
      }
    };
    
    // Decomposes Softmax and LogSoftmax to primitive TF ops, using the following
    // formulas:
    //
    //     softmax = div(exp(logits), sum(exp(logits)))
    //     log_softmax = sub(logits, log(sum(exp(logits))))
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top